当前位置: 代码迷 >> Web Service >> webservice批改wsdl中的格式
  详细解决方案

webservice批改wsdl中的格式

热度:242   发布时间:2012-12-15 15:16:03.0
webservice修改wsdl中的格式
.....
<wsdl:message name="HelloWorldSoapIn">
  <wsdl:part name="temp" type="s:string" /> 
  </wsdl:message>
改成

<wsdl:message name="HelloWorld">
  <wsdl:part name="temp" type="s:string" /> 
  </wsdl:message>
就成。就是去掉 SOAPIn 谢谢
------解决方案--------------------
有谁知道了?急啊?
------解决方案--------------------
我记得wsdl不是自动生成的吗?
你应该把对应的HelloWorldSoapIn 改称HelloWorld吧?
------解决方案--------------------
在我的webservice中就是HelloWorld,而SoapIn是系统给自动加上去的
  相关解决方案