0

我对 WS02 ESB 相当陌生——我的公司在几个月前实施了它。

目前,我正在尝试在 WCF 服务的顶部放置一个 REST 层。我试图实现的用例是一个位置 api,其中移动应用程序(iphone、android)通过 RESTful xml 向 WCF 服务提供位置数据。

我当前的数据流结构类似于移动应用程序 -> REST API -> ESB 代理 -> WCF 服务。

在负载中提供给 REST 端点的 xml 是这样的:

<Location Partner='{API Parnert Name}' Code='{API Partner Code}' Password='{API Partner Password}' Generated='2013-04-16T16:30:15Z'>
  <Latitude>44.5881</Latitude>
  <Longitude>-89.581248</Longitude>
  <Accuracy>75.334</Accuracy>
  <MobileDeviceUID>A1000017B8B437</MobileDeviceUID>
</Location>

为了通过 WSO2 ESB 路由这个 xml,我创建了一个 API 和一个服务代理。(一切都在我的机器上本地运行)

API 配置如下:

<api xmlns="http://ws.apache.org/ns/synapse" name="API_LOC" context="/WS1/Location">
   <resource methods="POST">
      <inSequence>
         <log level="full" category="DEBUG"/>
         <send>
            <endpoint>
               <address uri="http://localhost:8280/services/WS1LocationProxy/AddLocation" format="soap11"/>
            </endpoint>
         </send>
      </inSequence>
      <outSequence>
         <send/>
         <log level="full"/>
      </outSequence>
   </resource>
</api>

我的代理配置如下:

<proxy xmlns="http://ws.apache.org/ns/synapse" name="WS1LocationProxy" transports="https,http" statistics="disable" trace="disable" startOnLoad="true">
   <target>
      <inSequence>
         <log level="full" category="TRACE"/>
         <property name="FORCE_HTTP_1.0" value="true" scope="axis2"/>
         <send>
            <endpoint>
               <address uri="http://localhost:54270/WS1LocationService.svc"/>
            </endpoint>
         </send>
      </inSequence>
      <outSequence>
         <send/>
      </outSequence>
   </target>
   <publishWSDL uri="http://localhost:54270/WS1LocationService.svc?wsdl"/>
   <parameter name="useOriginalwsdl">true</parameter>
   <parameter name="interface">WS1LocationService</parameter>
   <parameter name="serviceType">proxy</parameter>
   <description></description>
</proxy>

我的主要问题是:如何将传入 REST 请求的 POST 有效负载转换为代理中 WCF 服务所需的 SOAP 信封。我还没有找到这样一个过程的好例子。

4

1 回答 1

1

您不需要手动转换它..传入的 POST 请求将被转换为 SOAP 消息以便在 ESB 中处理..您可以使用代理中的日志中介进行检查..在顺序中..只需使用日志中介并查看输出..

<log level="full" >
   <property name ="incoming message" value="*****"/>
</log>
于 2013-04-17T16:05:49.723 回答