|
此文章由 忽然一周 原创或转贴,不代表本站立场和观点,版权归 oursteps.com.au 和作者 忽然一周 所有!转贴必须注明作者、出处和本声明,并保持内容完整
做好了一个webform的项目, 也部署到iis上了,后台主要是调用webservice来做一堆事情, 现在的问题是,我想要在页面上加一个输入框和按钮,用户在这里可以重新输入一个webservice的wsdl的网址url,点击按钮之后,希望可以使用更新的webservice。
现在的情况是,我的webservice属性已经是dynamic的了,webservice有一个代理类,我直接更改了service.url= strNewWSDL; 调试都过了,但是一到具体执行webservice动作的代码,就直接报错跳出,是否我还有什么步骤没有做呢?
报错信息如下:
System.Web.Services.Protocols.SoapException: Possible SOAP version mismatch: Envelope namespace http://schemas.xmlsoap.org/wsdl/ was unexpected. Expecting http://schemas.xmlsoap.org/soap/envelope/. at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) at WebApplication2.EL8SceenService.ScreenService.executeScreen(OperationContext context, String msoName) in D:\CSharp\WebApplication2TRY\WebApplication2\WebApplication2\Web References\EL8SceenService\Reference.cs:line |
|