我在我的 ESB 上设置了一个 API,它调用从数据库返回数据的数据服务,这是可行的,但我现在要做的是将该数据返回到客户端/Web 浏览器并将其显示在屏幕上。
我的 API 代码是:
<?xml version="1.0" encoding="UTF-8"?>
<api xmlns="http://ws.apache.org/ns/synapse" name="DatabaseTest" context="/dbtest">
<resource methods="GET">
<inSequence>
<callout serviceURL="http://10.248.40.85:9764/services/TestDSS/operation1">
<source type="envelope"/>
<target key="response"/>
</callout>
<log level="full">
<property name="output" expression="get-property('response')"/>
</log>
<header name="To" scope="default" action="remove"/>
<property name="RESPONSE" value="true" scope="default" type="STRING"/>
<send/>
</inSequence>
<outSequence/>
<faultSequence/>
</resource>
</api>