We have set our service behaviour to [ServiceBehavior(Namespace = "abc", InstanceContextMode = InstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Single, UseSynchronizationContext = false)]
as you can see we have set Concurrency Mode as Single but still we are able to see multiple ThreadID's in WCF Trace Log.
Need Help in making WCF calls Thread Safe so that each message is processed in sequenced.
Thanks, Srujal