Chris_web
Chris_web

Reputation: 761

Is there any limitations of WCF synchronous call to Tcp/ip

My WCF Service (concurrency-multiple) will receive a request and then contact another TCP/IP service synchronously to provide a response to client.

I have confused, is that ok to contact tcp/ip synchronously, I don't want block channel to serve only one request at a time. Am I correct in assuming that since service support multiple calls, synchronous call to tcp/ip doesn't affect. Please comment if any suggestions.

Upvotes: 0

Views: 78

Answers (1)

Kinexus
Kinexus

Reputation: 12904

Your WCF service will continue to accept requests and will create a thread for each request to external service.

Upvotes: 1

Related Questions