Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a piece of internal software that contains a database service which is used to provide access to a SQL Server database located locally on the same server that the database service is running on.

The database service is a WCF service written against .NET 4.0 with VS 2010 as a 32 bit application. As of right now the client and server are connected to each other right now over a cross-over cable.

There are two clients to the database service. One client attempts to store data at 4hz. The other client attempts to store data at 1hz. This normally works perfectly fine however every now and then the client that is attempting to store data at 1hz timesout. The database service is a singleton service with multiple concurrency mode. The 1hz and 4hz clients execute different methods and only share an nhibernate session factory.

To get a better idea of what was going on I added some basic profiling with the Stopwatch class to the call the 1hz client makes. I found that the data stores the required data in under 40ms. The 4hz client stores the required data in under 10ms. Both clients have a timeout of 5s (both ways).

One oddity is that only the 1hz client ever experiences a timeout issue. The 4hz client keeps on working. Another is that when I catch the timeout exception on the 1hz client and I check the log on the server for that same time I find that the server does execute and stores the data (in under 40ms, much faster than the 5s timeout). To further the issue it appears that for ~1 minute after this event occurs the 1hz client never attempts to store data (even though data is being generated). Also I never observe another timeout exception. Then the 1hz client resumes and starts storing data again as if nothing ever happened.

During this time the 4hz client keeps on going as if nothing is wrong. The 1hz client and 4hz client are hosted in the same application but execute on separate threads.

I have spent the past 3 days reading about potential causes for a WCF timeout and making sure to follow the advice I found. WCF client proxies are opened, acted on, and closed. SQL Server calls are taking much less time than the 5s timeout period.

If code is required I will edit the question with the code that is requested. I am at a loss as to how I should proceed now so your assistance is much appreciated.

Edit #1:

The client works like this. Open proxy. Execute Ping() (an empty method to make sure service is up). Execute actual work method. Close proxy. The stack trace indicates that ping works fine however when the client attempts to execute the work method things go poorly.

XXX.XXX.ServiceConnectionException: Failed to connect to service XXX.XXX.IDatabaseService. ---> System.TimeoutException: The request channel timed out attempting to send after 00:00:05. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout. ---> System.TimeoutException: The HTTP request to 'http://192.168.100.100/database' has exceeded the allotted timeout of 00:00:00. The time allotted to this operation may have been a portion of a longer timeout.
   at System.ServiceModel.Channels.HttpChannelUtilities.SetRequestTimeout(HttpWebRequest request, TimeSpan timeout)
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.SendRequest(Message message, TimeSpan timeout)
   at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
   --- End of inner exception stack trace ---

Server stack trace: 
   at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
   at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]: 
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   at XXX.XXX.IService.Ping()
   at XXX.XXX.Client`1.Open() in C:\XXX\XXX\XXX\XXX\Client.cs:line 76
   --- End of inner exception stack trace ---
   at XXX.XXX.Client`1.Open() in C:\XXX\XXX\XXX\XXX\Client.cs:line 81
   at XXX.XXX.Client`1.Execute(Action`1 execute) in C:\XXX\XXX\XXX\XXX\Client.cs:line 93
   at XXX.XXX.XXX.ProcessItems(List`1 items) in C:\XXX\XXX\XXX\XXX\InsertProcess.cs:line 57
share|improve this question
2  
Do you have the exact exception string? – Kamarey Nov 20 '12 at 14:25
1  
Have you enabled tracing on the clients and the service and used the Service Trace Viewer Tool (SvcTraceViewer.exe) to view all of the logs together? – Panos Rontogiannis Nov 20 '12 at 15:06
The above comments, plus this - do you get an exception in the WCF plumbing code trying to return the result? For instance, if there is a serialization error when the WS tries to serialize the return object(s) in order to send back to client, you will get a server side exception that will turn up only in the WCF log file which you can observe only in AppFabric or using the Service Trace Viewer Tool. Client side this will look like a WCF timeout. – Mahol25 Nov 20 '12 at 15:27
@Kamarey I have added the exception details. Panos & Mahol25 I will attempt to setup tracing and use it. I have never done it before and have no app.conf (I setup the services programmatically) so I don't know how well this may or may not work out. – CanisUrsa Nov 20 '12 at 15:42
I think that you can set the receiveTimeout on the binding to infinite. stackoverflow.com/questions/11946117/wcf-inactivity-timeout/… – Alexandru-Dan Maftei Nov 20 '12 at 15:58
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.