Girish Dubey 1 Posted May 29, 2017 Report Share Posted May 29, 2017 I am trying to consume service using proxy class. i am getting below exception. "The underlying connection was closed: An unexpected error occurred on a receive." ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; //proxy class initialization ISessionManager objISessionManager = new SessionManagerClient("https://abcxyz.com/sessionmanager.svc"); LogonRequest objLogonRequest = new LogonRequest(); objLogonRequest.logonRequestData = new LogonRequestData(); objLogonRequest.ContractVersion = APICredential.ContractVersion; objLogonRequest.logonRequestData.DomainCode = APICredential.AgentDomain; objLogonRequest.logonRequestData.AgentName = APICredential.AgentID; objLogonRequest.logonRequestData.Password = APICredential.Password; LogonResponse objLogonResponse = objISessionManager.Logon(objLogonRequest); can you suggest how we can fix it. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.