[com.sun.istack.SAXParseException2; 行号:1;列号:1;意外元素(uri:“ http://service.example.com/ ”,本地:“custDetails”)。预期的元素是 <{ http://schemas.xmlsoap.org/soap/envelope/ }Body>,<{}Customer>,<{ http://schemas.xmlsoap.org/soap/envelope/ }Envelope>,< { http://schemas.xmlsoap.org/soap/envelope/ }故障>,<{ http://schemas.xmlsoap.org/soap/envelope/ }Header>]
问题陈述:Camel 不希望收到 custDetails (webmethod) 和命名空间。
期望:使用 camel-soap 将有效负载解组为开箱即用的 soapJaxb。
使用 maven-jaxb2-plugin 为下面的 xsd 生成 JAXB 类。结果产生了三个带有注释的类——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>
使用 DataFormat 设置为 PAYLOAD 的 cxf 端点公开 webservice 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}") }
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>
当我尝试使用肥皂数据格式解组 PAYLOAD 时,骆驼抛出错误。这是命中命名空间错误。我不确定为什么没有生成 package-info 类。任何帮助是极大的赞赏。谢谢你。
更新,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>