This request operation sent to
net.tcp://XXX.XX.XX.XX:YY/Service did not receive a reply within
the configured timeout (00:00:10). The time allotted to this operation may have
been a portion of a longer timeout. This may be because the service is still
processing the operation or because the service was unable to send a reply
message. Please consider increasing the operation timeout (by casting the
channel/proxy to IContextChannel and setting the OperationTimeout property) and
ensure that the service is able to connect to the client....
There may be times when you might have received this kind of error in production environment. The reason as the problem states is some operation happening at the server side which is taking longer than expected. To solve this issue set the entries as follows (time set shall be in accordance with the specific requirement.)
closeTimeout="00:01:00"
openTimeout="00:10:00" receiveTimeout="00:10:00"
sendTimeout="00:10:00"
transactionFlow="false"
transferMode="Streamed"
transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard"
listenBacklog="10" maxBufferPoolSize="2147483647"
maxBufferSize="2147483647" maxConnections="10"
maxReceivedMessageSize="2147483647">
There may be times when you might have received this kind of error in production environment. The reason as the problem states is some operation happening at the server side which is taking longer than expected. To solve this issue set the entries as follows (time set shall be in accordance with the specific requirement.)
Happy Coding!!!