Reputation: 761
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
Reputation: 12904
Your WCF service will continue to accept requests and will create a thread for each request to external service.
Upvotes: 1