我在WSO2 ESB中编写代理服务,接受JSON有效负载并执行一些非常复杂的转换(因此我们正在自定义中介中编写转换逻辑。
如您所见,我的自定义中介类在消息上下文中设置了一个属性,代理流提取此属性并设置有效负载(使用我能找到的Javascript API)。
这导致我的SOAP消息被"双重包裹"在两个信封标签中,我需要使用带有XPath表达式的richver来删除外部信封/身体标签。
是否可以在自定义中介中设置XML有效内容,从而避免读取属性并在代理流中编写XML有效内容?
代理代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<proxy name="stackOverflowProxy" startOnLoad="true" trace="disable"
transports="jms" xmlns="http://ws.apache.org/ns/synapse">
<target>
<inSequence>
<!-- process incoming request in custom class. the payload is a JSON object -->
<class name="stackOverflow.CustomMediator"/>
<!-- set registration xml string as xml payload -->
<script language="js"><![CDATA[mc.setPayloadXML(new XML(mc.getProperty('mediatorPayload')));]]></script>
<enrich>
<source clone="true"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xpath="$body//soapenv:Envelope/soapenv:Body/*"/>
<target type="body"/>
</enrich>
</inSequence>
<outSequence/>
<faultSequence/>
</target>
</proxy>
这是Custom Mediator类:
package stackOverflow;
// imports ...
public class CustomMediator extends AbstractMediator {
public boolean mediate(MessageContext messageContext) {
//messageContext has a json object property
//message is processed and transformed to a SOAPEnvelope (namespaces omitted for simplicity)
//soapEnvelopeString = <Envelope><Body><tag>value</tag></Body></Envelope>
messageContext.setProperty("mediatorPayload", soapEnvelope.toString());
return true;
}
}
答案 0 :(得分:0)
在自定义介体中,您将整个soap消息设置为属性,并在脚本介体中将其设置为soap消息的有效内容。这就是为什么你会得到双重肥皂环境。
在类中介中仅将body有效负载设置为属性,然后使用脚本将该值作为有效负载插入到主流中将解决您的问题。
package stackOverflow;
// imports ...
public class CustomMediator extends AbstractMediator {
public boolean mediate(MessageContext messageContext) {
//messageContext has a json object property
//message is processed and transformed to a SOAPEnvelope (namespaces omitted for simplicity)
//**soapPayload = <tag>value</tag>**
messageContext.setProperty("mediatorPayload", soapPayload);
return true;
}
}