0

嗨,我正在探索wsdl-cxf以使用 Web 服务......我有以下 Mule 流程:-

<stdio:connector name="stdioConnector" promptMessage="Enter Value :" doc:name="STDIO"/>

<flow name="ServiceFlow" doc:name="ServiceFlow">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8082" path="mainData" doc:name="HTTP"/>
<cxf:jaxws-service  serviceClass="com.test.services.schema.maindata.v1.MainData"  doc:name="SOAP"/>
<component class="com.test.services.schema.maindata.v1.Impl.MainDataImpl" doc:name="JavaMain_ServiceImpl"/>
</flow>

<flow name="inputService" doc:name="inputService" >
<stdio:inbound-endpoint system="IN" doc:name="STDIO"/>
<logger message="Payyyload : #[message.payload]" level="INFO" doc:name="Logger"/>
<outbound-endpoint address="wsdl-cxf:http://localhost:8082/mainData?WSDL&amp;method=retrieveDataOperation" doc:name="Generic"/>
<stdio:outbound-endpoint system="OUT" doc:name="STDIO"/>
<mulexml:object-to-xml-transformer doc:name="Object to XML"/>
</flow> 

现在,第一个流程 ServiceFlow 是公开的 Web 服务,当从 SOAPUI 给出以下输入时,它可以正常工作:-

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://services.test.com/schema/MainData/V1">
   <soapenv:Header/>
   <soapenv:Body>
      <v1:retrieveDataRequest>
         <v1:Id>33</v1:Id>
      </v1:retrieveDataRequest>
   </soapenv:Body>
</soapenv:Envelope>

它从数据库中获取数据并显示结果...第二个流inputService尝试使用wsdl-cxf使用服务...这里我使用stdio:inbound获取输入..现在当我将 Data 33 作为输入传递.. 它无法从 DB 中获取值 ...现在我的 Web 服务实现类具有以下方法:-

public DataResponse retrieveDataOperation(
            RetrieveRequest retrieveDataRequest)
{
//All the Logic here 
}

其中 RetrieveRequest retrieveDataRequest 是作为输入的对象类型.. 那么我如何在这里使用wsdl-cxf传递值,这可能是一个字符串请求......我的意思是如何使用wsdl-cxf来使用 web 服务并传递一个以对象为参数的值...请帮助..

4

1 回答 1

0

文档中:

CXF WSDL 提供程序的一个限制是它不允许您使用非 Java 原语(不是 String、int、double 等的对象)。

您的 Web 服务接收一个retrieveDataRequest对象,而不是简单类型,因此不能在您的用例中使用提供程序。

于 2014-08-19T18:17:42.277 回答