Невозможно вызвать метод веб-службы - PullRequest
0 голосов
/ 03 января 2019

Я пытаюсь вызвать метод веб-службы, но он показывает ошибку «Невозможно подключиться к удаленному серверу». Когда я просматриваю службу, она работает нормально.Я проверил после установки прокси и выключения Firewall, но проблема остается той же.

       var ws = GetWebService();

        var token = HmacServices.GetExpiringHmac(string.Format("{0}_{1}_{2}", _userID, _channelID, securityGroup), DateTime.Now.AddMinutes(5));

       //error in this line
Guid reportingUserID = ws.SetupReportingUser(_userID, _channelID, securityGroup, token);


 //Proxy class web service method


[System.Web.Services.Protocols.SoapDocumentMethodAttribute
("xxxxx", RequestNamespace="xxxxx", ResponseNamespace="xxxxx", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
             public System.Guid SetupReportingUser(int userId, int channelId, string defaultSecurityGroupName, string token) {
        object[] results = this.Invoke("SetupReportingUser", new object[] {
                    userId,
                    channelId,
                    defaultSecurityGroupName,
                    token});
        return ((System.Guid)(results[0]));
    }
...