System.Net.WebException:

时间:2016-10-11 06:59:45

标签: c# web-services webservice-client

我为我的项目创建了一个Windows应用程序。我在我的Windows应用程序中使用外部WEB SERVICE。每当我单击button时,都会创建Web服务客户端,然后调用特定的webservice方法。

现在,我一直在调用Web服务的方法时遇到 Timeout Exception 。我已经联系了网络服务提供商,但他们说他们的工作正常。

wsdl文件也在所有浏览器中打开,但它没有通过WEB SERVICE CLIENT和我的Windows应用程序提供响应。

我尝试通过编写以下代码来增加超时。

// Creating the Client
 MoreMoneyBranchListService.Ws_Api_BranchesListSoapPortClient client = new MoreMoneyBranchListService.Ws_Api_BranchesListSoapPortClient();

// Increasing the time out
cl.InnerChannel.OperationTimeout = new TimeSpan(0, 10, 55);

增加超时后,现在我收到了通信异常。

请帮助!!

0 个答案:

没有答案