是否存在用于 REST-to-SOAP 或 SOAP-to-REST 中介的预定义中介?

问题描述 投票:0回答:1

我有一个要求,我将接收 SOAP 调用并需要将它们调解为 REST 调用,反之亦然,以使用 WSO2 Micro Integrator 4.2.0 调用某些服务。

您能否确认 WSO2 Micro Integrator 4.2.0 是否包含满足此要求的内置功能,或者我是否需要从头开始开发它?

对于此事的任何帮助,我们将不胜感激。

致以诚挚的问候。

java rest soap wso2-micro-integrator wso2-integration-studio
1个回答
0
投票

转换为 SOAP 消息

content-type 应设置为 text/xml 并且必须设置soapaction

<header name="SOAPAction" scope="transport" value="xxxx"/>
<property name="messageType" value="text/xml" scope="axis2" type="STRING"/>

要使肥皂休息,您可以使用

<property name="messageType" value="application/json" scope="axis2" type="STRING"/>
<property name="SOAPAction" scope="transport" action="remove"/>
© www.soinside.com 2019 - 2024. All rights reserved.