We have created a WCF service hosted in a windows service that handles Authentication requests.
The only behavior is :
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
selfHost.Description.Behaviors.Add(smb);
Our clients are able to authenticate succesfully 10 times then we get the error
The operation has timed out
When we increase the MaxConcurrentSessions = 50 then our clients can authenticate 50 times before we see the error. Clearly sessions are not being closed after the authentication call is made can anyone tell why this might be happening?