I have a web application making a synchronous call to a WCF web service using basicHttpBinding. Both are hosted on IIS on the same machine. I have WCF tracing/logging enabled on both the web application and the web service.
The web application log has an entry when it sends a message:
21:14:38.5469090 "Sent a message over a chael"
The web service log doesn't have its first entry until 14 seconds later:
21:14:52.7899829 "Construct ServiceHost ..."
The gap is even longer for the first service call after restarting the service.
What could be happening in between? Should something be logged during that time period? Do I need additional logging?
