嗨,我正在探索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&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 服务并传递一个以对象为参数的值...请帮助..