0

我的目标是我必须在代理服务中从客户端接收像 www.google.com 这样的 URL 并将响应发送回客户端。

我该如何解决这个问题。我在这里发送我的代理服务。

<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
      name="Geturl"
      transports="https http"
      startOnLoad="true"
      trace="enable"
      statistics="enable">
  <description/>
  <target>
     <inSequence onError="fault">
        <property name="RESPONSE" value="true" scope="default" type="STRING"/>
        <property name="REQUEST_HOST_HEADER" value="www.google.com" scope="axis2"/>
        <property name="querystrings"
                  expression="get-property('axis2', 'REST_URL_POSTFIX')"/>
        <property name="REST_URL_POSTFIX"
                  expression="get-property('REQUEST_HOST_HEADER')"
                  scope="axis2"
                  type="STRING"/>
        <property name="HTTP_METHOD" value="GET" scope="axis2" type="STRING"/>
        <header name="To"
                expression="get-property('www.google.com')"/>
<property name="message" value="Response message"/>
<property name="Sender Address" expression="get-property('www.google.com')"/>
        <log level="full"/>
        <log level="full">
           <property name="REQUEST_HOST_HEADER" value="www.wso2.org"/>
        </log>
        <send/>
     </inSequence>
     <outSequence onError="fault">
        <log level="full"/>
        <log level="full">
           <property name="REQUEST_HOST_HEADER" value="www.google.com"/>
        </log>
        <log level="full">
           <property name="success" value="success"/>
        </log>
        <send/>
     </outSequence>
  </target>
</proxy>

谢谢

4

1 回答 1

0

在代理服务的 outSequence 中,当您调用 时<send/>,响应将被发送回客户端。试用示例代理服务 [1],并使用 Try-It 或 SOAP UI 调用。您将看到响应传给客户端。

[1] http://docs.wso2.org/wiki/display/ESB460/Sample+150%3A+Introduction+to+Proxy+Services

于 2013-08-08T12:18:02.527 回答