Wjdavis5
Wjdavis5

Reputation: 4151

Troubleshooting WCF Client Latency

.NET 4.5.1

We have a web service that has a WCF client (generated from a WSDL). We see in our tracing that we enter a web service method call and then 2 min. later we exit that method.

That lead us to believe that the web service was causing issues. However we created a packet capture and found out that it was actually 2 minute after our request hit the wire.

Given that the generated WCF client is a black box of generated code. How could we go about identifying why this would be happening?

Upvotes: 1

Views: 63

Answers (1)

Kashif
Kashif

Reputation: 3034

Put debugger and debug your client and WCF service both.

Upvotes: 2

Related Questions