Up until now, when I add a service reference to my C# project I get nettcpbinding entries like the below with all the timeout parameters exposed from the service. From today I only get the name. Can anyone suggest what is going on. Only thing I have knowingly donw is applied latest MS fixes to my PC.
This happens with all services, custom and out of the box.
now
<binding name="QueryServiceEndpoint" closeTimeout="00:01:00" />
previously
<binding name="QueryServiceEndpoint" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
transactionFlow="false" transferMode="Streamed" transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard" listenBacklog="10"
maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
maxReceivedMessageSize="65536">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Transport">
<transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
<message clientCredentialType="Windows" />
</security>
</binding>