OK. , , ConcurrencyMode PerCall instancing, , , PerCall instancing ConcurrencyMode. -, - . .
, , InstanceContextMode.PerCall, . .
- 1 = >
MyAppWcfInst.DoSomething( "<customer id=A/>" ); - 2 = >
MyAppWcfInst.DoSomething( "<customer id=B/>" ); - 3 = >
MyAppWcfInst.DoSomething( "<customer id=B/>" );
WCF , . , , . , Customer .
Client1 Client2 , Customer, Client3 Client2, "- " CustomerB. , Customer. , Customer.DoSomething() .
class Customer
{
private object _sync = new object();
public string DoSomething( string xml )
{
lock (_sync)
{
}
}
}
WCF-. , .