1

我正在编写一个 wsdl 文件,当我测试它时,我得到了“SOAP-ERROR: Parsing WSDL: No address associated with”消息。我在端口标签中添加了地址:以下是代码:

<service name="MyWebService">
    <documentation>WSDL file for Web Service</documentation>
    <port name="GetNamePortType" binding="tns:GetNameBinding">
        <soap:address location="http://localhost:8080/site/ws/wsdl/"/>
    </port>
</service>

感谢您的任何意见

4

1 回答 1

1

你在后台使用什么语言?我上次使用 SOAP 是不久前的经典 asp :)。但是在那里我必须像这样指定目标文件:

  <service name='TQ' >
    <port name='TQSoapPort' binding='wsdlns:TQSoapBinding' >
      <soap:address location='http://vminformer/latest/_Service/_service.asp' />
    </port>
  </service>

不知道这是否对您有帮助,但如果没有更多信息,很难说出哪里出了问题。

于 2012-10-08T05:32:43.210 回答