I can't get rid of the timeout exception on my .NET app despite the fact that I've tried using :
newToken = OTServices.Instance._authClient.RefreshToken(ref otAuth);
RefreshToken() method and assigning the new token to the DocMan service and still get timeout error.
I tried also creating the token instead of refreshing it and still get timeout.
_token = authClient.AuthenticateUser(_userName, _password.ToString());
Is there anything that I forget?
I have to mention that I use the OTAuthenticaton instance instead of creating new one each time. Could it be it?