I have a Winforms application that provides a WCF service.
From IIS, I am trying to use a service. On two different computers, I'm trying to call test1.aspx , which in turn calls WCF inside a Winforms application.
test1.aspx => from computer 1 => First Call test1.aspx => from computer 2 => Second Call
I see that WCF is single-threaded, and before it starts processing CALL 2, it must finish processing CALL 1.
[ServiceBehavior(IncludeExceptionDetailInFaults = true, ConcurrencyMode=ConcurrencyMode.Multiple, InstanceContextMode=InstanceContextMode.PerSession)]
I have Windows Server 2008 R2 and IIS 7.5
Can anybody help me?
darez source share