WCF Callback Contract Fiddler Debugging

Posted by DavyMac23 on Stack Overflow See other posts from Stack Overflow or by DavyMac23
Published on 2010-04-30T15:27:20Z Indexed on 2010/04/30 15:27 UTC
Read the original article Hit count: 296

Filed under:
|
|
|
|

I'm trying to debug a WCF self-hosted service utilizing callbacks. Every 1/2 I make a callback to a SL3 app to display the latest changes (yes, there are tons of changes every 1/2 second). There are 3 services, one has new data every 1/2 second, one has new data every second, and another has new data every hour. I've set all of my timeouts, Send, Receive, Open and Close to 2 days 23 hours and 23 minutes, but I still get time out errors on the service side when I go to issue the callback.

I'm using Fiddler and I notice that my service that has new data every hour is still showing up every 10 seconds. Fiddlier shows a Body length of -1, then 10 seconds later it changes to 0 and the response is HTTP 200, but the overall elapsed time is 10 seconds. What's going on here?

© Stack Overflow or respective owner

Related posts about wcf

Related posts about callback