为什么WSO2 Send Mediator不等待响应?

时间:2014-01-09 18:42:17

标签: wso2 soa wso2esb

我有一个WSO2 ESB-4.6.0代理,它调用另一个调用web服务的代理。

Proxy1 --> Proxy2 --> Endpoint

如果我通过soapUI直接调用第二个代理,则会正确返回并打印响应,但如果我调用第一个代理,则返回空白体。

在ESB日志中,Proxy1的outSequence在Proxy2的outSequence之前打印。 看起来像Proxy1的inSequence中的Send mediator正在对Proxy2进行异步调用 我试图用Callout介体替换Send mediator,但结果是一样的。
关注this教程,但它也不起作用。

如何将Proxy2的响应转发给呼叫者?
请帮忙。它杀了我!

修改

问题解决了!我使用了错误的端口来为Callout mediator指定serviceURL参数。

修改

当前代理配置:

Proxy1(调用代理2 - ManageWorkforce):

<proxy xmlns="http://ws.apache.org/ns/synapse" name="GetAppointmentSchedulePortalReqCS" transports="http https" startOnLoad="true" trace="disable">
    <target>
        <inSequence>
            <xslt key="conf:ManageWorkforce/xslt/GetAppointmentSchedulePortalReqCS_Request.xsl"/>
            <header name="Action" value="getAppointment"/>
            <send>
                <endpoint>
                    <address uri="https://localhost:9443/services/ManageWorkforce"/>
                </endpoint>
            </send>
        </inSequence>
        <outSequence>
            <xslt key="conf:ManageWorkforce/xslt/GetAppointmentSchedulePortalReqCS_Response.xsl"/>
            <send/>
        </outSequence>
        <faultSequence/>
    </target>
    <publishWSDL key="conf:ManageWorkforce/GetAppointmentSchedulePortalReqCS.wsdl" />
</proxy>

代理2(调用Proxy3 -GetAppointmentPeopleProvCS):

<proxy xmlns="http://ws.apache.org/ns/synapse" name="ManageWorkforce" transports="https http" startOnLoad="true" trace="disable">
    <target>
        <inSequence>
            <switch source="get-property('Action')">
                <case regex="getAppointment">
                    <callout serviceURL="https://localhost:8243/services/GetAppointmentPeopleProvCS" action="getAppointment">
                        <source xmlns:s12="http://www.w3.org/2003/05/soap-envelope" xmlns:s11="http://schemas.xmlsoap.org/soap/envelope/" xpath="s11:Body/child::*[fn:position()=1] | s12:Body/child::*[fn:position()=1]"/>
                        <target xmlns:s12="http://www.w3.org/2003/05/soap-envelope" xmlns:s11="http://schemas.xmlsoap.org/soap/envelope/" xpath="s11:Body/child::*[fn:position()=1] | s12:Body/child::*[fn:position()=1]"/>
                    </callout>
                </case>
                <!-- another cases -->
                <default/>
            </switch>
            <property name="RESPONSE" value="true" scope="default" type="STRING"/>
            <header name="To" action="remove"/>
            <send/>
        </inSequence>
        <outSequence>
            <drop/>
        </outSequence>
        <faultSequence/>
    </target>
    <publishWSDL key="conf:ManageWorkforce/ManageWorkforce.wsdl"/>
    </publishWSDL>
</proxy>

代理3(调用服务-GetAppointment):

<proxy xmlns="http://ws.apache.org/ns/synapse" name="GetAppointmentPeopleProvCS" transports="http https" serviceGroup="" startOnLoad="true" trace="disable">
    <target>
        <endpoint key="GetAppointment"/>
        <inSequence>
            <xslt key="conf:ManageWorkforce/xslt/GetAppointmentPeopleProvCS_Request.xsl"/>
        </inSequence>
        <outSequence>
            <xslt key="conf:ManageWorkforce/xslt/GetAppointmentPeopleProvCS_Response.xsl"/>
            <send/>
        </outSequence>
        <faultSequence/>
    </target>
</proxy>

最终端点(服务):

<endpoint xmlns="http://ws.apache.org/ns/synapse" name="GetAppointment">
    <address uri="http://10.13.6.75:9764/services/GetAppointment" />
</endpoint>

2 个答案:

答案 0 :(得分:2)

有两个调解器可以调用Web服务。这些是Callout MediatorCall Mediator。 Callout介体执行阻塞调用,Call Mediator执行非阻塞调用。

因此,如果考虑性能,则应使用Call mediator。它可以在ESB 4.8.0中使用。

wiki文档中有两个samples

来自独山博客的Call Mediator还有另一个sample。这有更复杂的调解员,但你可以尝试。

这只是一个快速的答案。

我希望这会有所帮助。

谢谢!

答案 1 :(得分:1)

即使您使用send mediator,Proxy1也会等待Proxy2的响应。 在执行Proxy2的outSequence之前,不应该执行Proxy1的outSequence。

切换到Callout Mediator 是理想的解决方案。 我认为代理配置应该有问题。

如果您可以在此处发布代理配置,我们可能会帮您解决此问题。