2011-06-19 73 views
1

這是我的WSDL文件的一個片段;WSDL警告:有缺陷的soapbind:fault元素。那是什麼意思?

<wsdl:portType name="MtchWS">             
    <wsdl:operation name="inference"> 
     <wsdl:input message="tns:inferencerequest" name="inferencerequest"/> 
     <wsdl:output message="tns:inferenceresponse" name="inferenceresponse"/> 
     <wsdl:fault message="tns:errorresponse" name="errorresponse"/>    
    </wsdl:operation> 
</wsdl:portType> 

<wsdl:binding name="MtchWSBinding" type="tns:MtchWS">     
    <soap:binding style="document"             
     transport="http://schemas.xmlsoap.org/soap/http"/>       
    <wsdl:operation name="inference"> 
     <soap:operation soapAction="http://www.mywebsite.com/webservice"/>   
     <wsdl:input name="inferencerequest"> 
      <soap:body use="literal"/>            
     </wsdl:input> 
     <wsdl:output name="inferenceresponse"> 
      <soap:body use="literal"/> 
     </wsdl:output> 
     <wsdl:fault name="errorreponse"> 
      <!-- <soap:fault use="literal"/>--> 
     </wsdl:fault> 
    </wsdl:operation> 
</wsdl:binding> 

<wsdl:service name="MtchWSService"> 
    <wsdl:port binding="tns:MtchWSBinding" name="MtchWSPort">   
     <soap:address location="http://localhost:8080/mwp/mws"/>    
    </wsdl:port> 
</wsdl:service>  
在上面的行中的一個(所述一個包括 「WSDL:綁定名稱=」 MtchWSBinding」類型= 「TNS:MtchWS」)

我得到一個警告說;

WS-I:( BP2032)有缺陷的soapbind:fault元素:「name」屬性值與父元素wsdl:fault上的「name」屬性值不匹配

這是什麼意思,我該如何解決這個問題? web服務似乎工作正常,但我還有其他一些問題(與WSDL2ObjC),我認爲它是這個警告。

tnx

+1

要麼你離開的最重要的一塊(的所以soapbind:fault),或者你正在使用的網絡服務套件越野車。 – bmargulies

回答

2

ok我確定;

剛剛添加的

<wsdl:fault name="errorresponse"> 
      <soap:fault name="errorresponse" use="literal"/> 
     </wsdl:fault> 
相關問題