UnmarshalException:骆驼肥皂解组错误意外元素

时间:2018-08-15 03:23:38

标签: apache soap apache-camel spring-camel cxf-codegen-plugin

[com.sun.istack.SAXParseException2; lineNumber:1; columnNumber:1;意外元素(uri:“ http://service.example.com/”,本地:“ custDetails”)。期望的元素是<{{http://schemas.xmlsoap.org/soap/envelope/}正文>,<{}客户>,<{http://schemas.xmlsoap.org/soap/envelope/}信封>,<{http://schemas.xmlsoap.org/soap/envelope/}故障>,<{http://schemas.xmlsoap.org/soap/envelope/}标头>]

问题声明:骆驼不希望收到custDetails(网络方法)和名称空间。
期望:使用骆驼肥皂将有效载荷解组到soapJaxb中。

  1. 使用maven-jaxb2-plugin生成的JAXB类用于以下xsd。结果产生了带有注释的三个类-Customer.java,ObjectFactory,java和Order.java。

    <?xml version="1.0"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" 
           elementFormDefault="qualified" 
           attributeFormDefault="unqualified"
           >
    <xs:element name="Customer">
    <xs:complexType >
    <xs:sequence>
      <xs:element name="Id" type="xs:string"/>
      <xs:element name="Address" type="xs:string"/>
      <xs:element name="ListOfOrders" type="order" minOccurs="0" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:complexType name="order">
    <xs:sequence>
          <xs:element name="Id" type="xs:string"/>
          <xs:element name="ProductName" type="xs:string"/>
          <xs:element name="ListOfDevice" minOccurs="0" >
            <xs:complexType>
                <xs:sequence>
                    <xs:element name="DeviceName" type="xs:string"/>
                    <xs:element name="ManufactureDate" type="xs:date"/>
                </xs:sequence>
            </xs:complexType>
          </xs:element>
       </xs:sequence>
    </xs:complexType>
    </xs:schema>
    
  2. 使用cxf端点并将DataFormat设置为PAYLOAD,以如下方式公开Web服务custDetails(..)。 [已通过@Configuration更新]

        @Configuration
       public class WebServiceConfig {
         @Autowired 
        private Bus bus;
    
        @Bean 
        public CxfEndpoint getCustomerDetails() {
            CxfEndpoint cxfEndpoint = new CxfEndpoint();
            cxfEndpoint.setAddress("/customerProvide");
            cxfEndpoint.setServiceClass(CustomerSvc.class);
            cxfEndpoint.setBus(bus);
            cxfEndpoint.setDataFormat(DataFormat.PAYLOAD);return cxfEndpoint ;}
    
        @Webservice
        public interface CustomerSvc {
        @WebMethod
        Customer  custDetails ( @WebParam(name="Customer")Customer Customer ) ;}
    
        // Simple route in Route class.
        @Component
        public class CustomerRoute extends RouteBuilder {
          public void configure (){
        SoapJaxbDataFormat soapDF 
        = new SoapJaxbDataFormat("com.example.service", new TypeNameStrategy());
    
         from("cxf:bean:getCustomerDetails").unmarshal(soapDF)
        .log("receive : ${body}")
        }
    
  3. WSDL生成并导入到soapUI。样本SOAPUI请求测试如下。

    <soapenv:Envelope 
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:ser="http://service.example.com/">
    <soapenv:Header/>
    <soapenv:Body>
      <ser:custDetails>
         <ser:Customer>
            <Id>1-abc</Id>
            <Address>23 Sydney Oxley road</Address>
            <ListOfOrders>
               <Id>P1344</Id>
               <ProductName>DRAM</ProductName>
               <ListOfDevice>
                  <DeviceName>20nm</DeviceName>
                  <ManufactureDate>15-8-2017</ManufactureDate>
               </ListOfDevice>
            </ListOfOrders>
         </ser:Customer>
      </ser:custDetails>
     </soapenv:Body>
    </soapenv:Envelope>
    
  4. 当我尝试使用soap数据格式解组PAYLOAD时,骆驼抛出错误。这是命中命名空间错误。我不确定为什么不生成package-info类。任何帮助是极大的赞赏。谢谢。

  5. 更新,下面是wsdl。 <?xml version='1.0' encoding='UTF-8'?><wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://service.example.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="CustomerSvcService" targetNamespace="http://service.example.com/"> <wsdl:types> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://service.example.com/" attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://service.example.com/"> <xs:element name="Customer"> <xs:complexType> <xs:sequence> <xs:element name="Id" type="xs:string"/> <xs:element name="Address" type="xs:string"/> <xs:element minOccurs="0" name="ListOfOrders" type="tns:order"/> </xs:sequence> </xs:complexType> </xs:element> <xs:complexType name="order"> <xs:sequence> <xs:element name="Id" type="xs:string"/> <xs:element name="ProductName" type="xs:string"/> <xs:element minOccurs="0" name="ListOfDevice"> <xs:complexType> <xs:sequence> <xs:element name="DeviceName" type="xs:string"/> <xs:element name="ManufactureDate" type="xs:date"/> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> <xs:element name="custDetails" type="tns:custDetails"/> <xs:complexType name="custDetails"> <xs:sequence> <xs:element minOccurs="0" ref="tns:Customer"/> </xs:sequence> </xs:complexType> <xs:element name="custDetailsResponse" type="tns:custDetailsResponse"/> <xs:complexType name="custDetailsResponse"> <xs:sequence> <xs:element minOccurs="0" ref="tns:Customer"/> </xs:sequence> </xs:complexType> </xs:schema> </wsdl:types> <wsdl:message name="custDetails"> <wsdl:part element="tns:custDetails" name="parameters"> </wsdl:part> </wsdl:message> <wsdl:message name="custDetailsResponse"> <wsdl:part element="tns:custDetailsResponse" name="parameters"> </wsdl:part> </wsdl:message> <wsdl:portType name="CustomerSvc"> <wsdl:operation name="custDetails"> <wsdl:input message="tns:custDetails" name="custDetails"> </wsdl:input> <wsdl:output message="tns:custDetailsResponse" name="custDetailsResponse"> </wsdl:output> </wsdl:operation> </wsdl:portType> <wsdl:binding name="CustomerSvcServiceSoapBinding" type="tns:CustomerSvc"> <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name="custDetails"> <soap:operation soapAction="" style="document"/> <wsdl:input name="custDetails"> <soap:body use="literal"/> </wsdl:input> <wsdl:output name="custDetailsResponse"> <soap:body use="literal"/> </wsdl:output> </wsdl:operation> </wsdl:binding> <wsdl:service name="CustomerSvcService"> <wsdl:port binding="tns:CustomerSvcServiceSoapBinding" name="CustomerSvcPort"> <soap:address location="http://localhost:12000/services/customerProvide"/> </wsdl:port> </wsdl:service> </wsdl:definitions>

1 个答案:

答案 0 :(得分:0)

由于问题更新而进行编辑

您尝试根据在问题顶部发布的XML模式,用Jax-B解组请求有效负载。

但是在此架构中,元素custDetails不存在。它存在于WSDL的模式部分中,但不存在于模式中?!因此错误unexpected element

相关问题