1
如何通過使用CFX的mule流將參數傳遞到外部web服務?如何將參數傳遞給Mule的外部web服務
如何通過使用CFX的mule流將參數傳遞到外部web服務?如何將參數傳遞給Mule的外部web服務
非常感謝。有效。我把一個轉換器將我的參數轉換爲cxf:jaxws-client的Object []數組,如下所示。
<custom-transformer class="tranformers.ObjectArrayTransformer" doc:name="Java"/>
<http:outbound-endpoint exchange-pattern="request-response" address="http://localhost:8080/WebService/HelloWorldImpl" doc:name="HTTP">
<cxf:jaxws-client operation="getParamData" serviceClass="miniwebservice.HelloWorld" port="80" doc:name="SOAP"/>
</http:outbound-endpoint>