1

我有这个 WSO2 ESB 代理:

<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse" name="sid008" transports="http" startOnLoad="true" trace="disable">
    <target>
        <inSequence>

            <switch source="get-property('inquiryId')">
                        <log level="full"/>
                <case regex="">

                        <send/>

                </case>
                 <default>

                 </default>
             </switch>

        </inSequence>

        <outSequence>                      
<....some processing..>
            <send/>

        </outSequence>
    </target>
    <publishWSDL key="CommonService.wsdl">
        <resource location="request.xsd" key="request.xsd"/>
        <resource location="response.xsd" key="response.xsd"/>
        <resource location="SMEV.xsd" key="SMEV.xsd"/>
        <resource location="statusAndError.xsd" key="statusAndError.xsd"/>
    </publishWSDL>
</proxy>

outSequence在默认情况下,此代理在没有发送调解器的情况下不会运行。不发送调解员怎么办

4

2 回答 2

2

试试这个配置:

<default>
    <... some processing ...>
    <header action="remove" name="To"/>
    <property action="set" name="RESPONSE" scope="default" type="STRING" value="true"/>
    <send/>
</default>

使用此配置,您将直接从 inSequence 部分向客户端发送响应(您不会进入 outSequence)。

于 2012-06-12T13:17:03.463 回答
1

In和Out序列背后的理性是:

In seq :当消息从客户端到达代理服务时,它总是按顺序发送。

Out Seq:当代理服务从 ESB 向后端服务发送消息时,响应将始终到达 Out seq(除非使用接收 seq 指定序列。)

希望这可以帮助。

于 2012-06-10T16:28:30.467 回答