WSO2 ESB API不发送http请求

时间:2014-05-15 15:12:36

标签: http get request wso2 esb

我正在尝试在wso2esb 4.8.1上创建一个能够使用HTTP GET和POST的API。收到POST请求时,必须将请求分派给两个端点。这很好,我没有在下面的例子中添加这个。

但HTTP GET请求应该以简单的方式处理,这不起作用。根本没有转发请求,我只在ESB日志中看到超时消息。

我已经使用了wirehark来查看我是否在线路上看到了传出请求,但事实并非如此。

对我来说,HTTP GET看起来很简单,没什么特别的,但它不会被ESB发送出去。非常感谢帮助!

我在下面添加了我的API说明:

<api xmlns="http://ws.apache.org/ns/synapse" name="myapp" context="/myapp/myservice">
  <resource methods="GET">
    <inSequence>
      <log>
        <property name="Message Flow" value="MyApp MyService API - IN"></property>
        <property name="HTTP_METHOD IS###########" expression="$axis2:HTTP_METHOD"></property>
      </log>
      <property name="DISABLE_CHUNKING" value="true" scope="axis2" type="STRING"></property>
      <property name="ContentType" value="application/json" scope="axis2" type="STRING"></property>
      <property name="HTTP_METHOD" value="GET" scope="axis2"></property>
      <property name="NO_ENTITY_BODY" scope="axis2" action="remove"></property>
      <send>
         <endpoint>
           <address uri="http://myserver.com/myapp/myservice/myaction"></address>
         </endpoint>
      </send>
  </inSequence>
  <outSequence>
     <property name="messageType" value="application/json" scope="axis2"></property>
     <property name="ContentType" value="application/json" scope="axis2"></property>
     <send></send>
  </outSequence>
  <faultSequence>
     <log level="full">
        <property name="MESSAGE" value="Executing default sequence"></property>
        <property name="ERROR_CODE" expression="get-property('ERROR_CODE')"></property>
        <property name="ERROR_MESSAGE" expression="get-property('ERROR_MESSAGE')"></property>
     </log>
     <drop></drop>
    </faultSequence>
  </resource>
</api>

0 个答案:

没有答案