当前位置: 代码迷 >> XML/SOAP >> CXF+Spring发布的WEBSERVICE,发布的WSDL文件中没有<wsdl:message 标签,该如何处理
  详细解决方案

CXF+Spring发布的WEBSERVICE,发布的WSDL文件中没有<wsdl:message 标签,该如何处理

热度:980   发布时间:2012-03-12 12:45:33.0
CXF+Spring发布的WEBSERVICE,发布的WSDL文件中没有<wsdl:message 标签
发布的WSDL文件中没有<wsdl:message 标签,这是怎么回事,高手指点指点
 <?xml version="1.0" encoding="UTF-8" ?> 
- <wsdl:definitions name="CustomerBOImplService" targetNamespace="http://boImpl.service.sykj.com/" xmlns:ns1="http://bo.service.sykj.com/" xmlns:ns2="http://cxf.apache.org/bindings/xformat" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://boImpl.service.sykj.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <wsdl:import location="http://192.168.1.4:8080/SaleManager/web/customerBOWS?wsdl=CustomerBO.wsdl" namespace="http://bo.service.sykj.com/" /> 
- <wsdl:binding name="CustomerBOImplServiceSoapBinding" type="ns1:CustomerBO">
  <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /> 
- <wsdl:operation name="updateCustomer">
  <soap:operation soapAction="" style="document" /> 
- <wsdl:input name="updateCustomer">
  <soap:body use="literal" /> 
  </wsdl:input>
- <wsdl:output name="updateCustomerResponse">
  <soap:body use="literal" /> 
  </wsdl:output>
  </wsdl:operation>
- <wsdl:operation name="getPage_S_O_P_P_CLS">
  <soap:operation soapAction="" style="document" /> 
- <wsdl:input name="getPage_S_O_P_P_CLS">
  <soap:body use="literal" /> 
  </wsdl:input>
- <wsdl:output name="getPage_S_O_P_P_CLSResponse">
  <soap:body use="literal" /> 
  </wsdl:output>
  </wsdl:operation>
- <wsdl:operation name="findCustomerByName">
  <soap:operation soapAction="" style="document" /> 
- <wsdl:input name="findCustomerByName">
  <soap:body use="literal" /> 
  </wsdl:input>
- <wsdl:output name="findCustomerByNameResponse">
  <soap:body use="literal" /> 
  </wsdl:output>
  </wsdl:operation>
- <wsdl:operation name="getPage_C_P">
  <soap:operation soapAction="" style="document" /> 
- <wsdl:input name="getPage_C_P">
  <soap:body use="literal" /> 
  </wsdl:input>
- <wsdl:output name="getPage_C_PResponse">
  <soap:body use="literal" /> 
  </wsdl:output>
  </wsdl:operation>
- <wsdl:operation name="addCustomer">
  <soap:operation soapAction="" style="document" /> 
- <wsdl:input name="addCustomer">
  <soap:body use="literal" /> 
  </wsdl:input>
- <wsdl:output name="addCustomerResponse">
  <soap:body use="literal" /> 
  </wsdl:output>
  </wsdl:operation>
- <wsdl:operation name="findAll">
  <soap:operation soapAction="" style="document" /> 
- <wsdl:input name="findAll">
  <soap:body use="literal" /> 
  </wsdl:input>
- <wsdl:output name="findAllResponse">
  <soap:body use="literal" /> 
  </wsdl:output>
  相关解决方案