2

我们有一个代理服务,它使用 jms 传输来接收消息。收到的消息需要使用 http POST 发送到后端 REST 服务。以下是对消息进行的

  1. xslt 转换以提取特定字段
  2. 将消息类型设置为 application/json
  3. 发送到端点

REST 服务端点需要使用作为来自 jms 的输入消息的一部分的值之一动态附加路径参数。网址看起来像 http://<server-ip>/service/<client>. 这里“客户端”的值作为消息的一部分出现。

我们如何使用 wso2 esb 动态添加路径参数?

4

2 回答 2

2

I think links [1] & [2] will help you to set jms with WSO2 proxy... To dynamically add path param to the url use the link [3], it is for XML configuration file. similar to this you can assign the part of the message to a property add append that to the url...

[1] http://docs.wso2.org/wiki/display/ESB460/Publish-Subscribe+%28Pub-Sub%29+with+JMS

[2] http://wso2.org/library/articles/2011/11/wso2-esb-example-two-wayrequestresponse-semantic-jms

[3] How to dynamically route message in WSO2 ESB based on XML configuration file

Thanks,

Mohan

于 2013-04-29T09:26:00.093 回答
2

我相信你正在寻找的是REST_URL_POSTFIX财产。如果设置此属性,则该值将附加到其余端点 url。

在axis2的范围内可以定义如下。

<property name="REST_URL_POSTFIX"
          expression="//client"
          scope="axis2"
          type="STRING"/>

可以在本指南中找到一个关于此的示例,将 REST 与代理服务一起使用

编辑:以下是使用简单代理和使用 curl 的 POST 请求的示例。根据评论提供。在这里,我在 WSO2 应用程序服务器中调用 jaxrs_basic 休息服务。

curl -H "Content-Type: application/xml" -H "Accept: application/json" -d "<Customer><name>KasunG</name></Customer>" http://localhost:8281/services/new1/

.

curl -H "Content-Type: application/json" -H "Accept: application/json" -d "{ 'Customer' : { 'name' : 'KasunG' } }  " http://localhost:8281/services/new1/

.

<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
       name="new1"
       transports="https http"
       startOnLoad="true"
       trace="disable">
   <description/>
   <target>
      <inSequence>
         <property name="REST_URL_POSTFIX"
                   value="customers"
                   scope="axis2"
                   type="STRING"/>
         <property name="ContentType" value="text/xml" scope="axis2" type="STRING"/>
         <switch source="$axis2:HTTP_METHOD">
            <case regex="GET">
               <property name="HTTP_METHOD" value="GET" scope="axis2" type="STRING"/>
            </case>
            <case regex="POST">
               <property name="messageType" value="application/json" scope="axis2"/>
               <property name="ContentType"
                         value="application/JSON"
                         scope="axis2"
                         type="STRING"/>
               <property name="HTTP_METHOD" value="POST" scope="axis2" type="STRING"/>
            </case>
            <default/>
         </switch>
         <send>
            <endpoint>
               <address uri="http://localhost:8888/jaxrs_basic/services/customers/customerservice"
                        format="rest"/>
            </endpoint>
         </send>
      </inSequence>
      <outSequence>
         <property name="messageType" value="application/json" scope="axis2"/>
         <send/>
      </outSequence>
   </target>
</proxy>
于 2013-04-29T11:46:00.167 回答