Apache Synapse/WSO2 API No response
问题 I want to send a query to the database and return the result to the client using WSO2 rest api. Here is the synapse config: <api xmlns="http://ws.apache.org/ns/synapse" name="RestDBLookup" context="/dblookup"> <resource methods="POST GET" uri-template="/channel/{name}" protocol="http"> <inSequence> <dblookup> <connection> <pool> <password>pass</password> <driver>oracle.jdbc.driver.OracleDriver</driver> <url>jdbc:oracle:thin:@localhost:1521:ORCL</url> <user>user</user> </pool> </connection>