我的要求是将JSON请求转换为XML格式。 我得到了在下面的URL中将JSON转换为XML的代码。 https://isurugunawardana.com/2015/05/19/json-support-for-wso2-esb-class-mediator/
但我需要知道如何从WSO2 EI中的代理服务调用它。 我试过创建一个调用类中介的代理服务。 “
<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
name="TestClassMedProxy"
startOnLoad="true"
statistics="disable"
trace="disable"
transports="http,https">
<target>
<inSequence>
<log level="custom">
<property name="BEGIN" value="Begin Sequence"/>
</log>
<class name="org.anthem.caremore.JSONtoXML">
<property name="inputPath" value="5"/>
</class>
</inSequence>
<outSequence>
<send/>
</outSequence>
</target>
<description/>
</proxy>
`