WSO2 ESB构建器/格式化器与本地传输

时间:2014-11-05 09:38:18

标签: java service wso2 wso2esb wso2carbon

如何使用本地传输运行端点并同时使用构建器和格式化程序? 当我像这样运行代理服务时,总是调用构建器和格式化程序(传输是http):

<property name="messageType" value="application/xml" scope="axis2"/>
<property name="contentType" value="application/xml" scope="axis2"/>
<call>
    <endpoint>
        <address uri="http://localhost:8280/services/SomeProxy"/>
    </endpoint>
</call> 

但是,当我将传输更改为本地构建器并跳过格式化程序时:

<property name="messageType" value="application/xml" scope="axis2"/>
<property name="contentType" value="application/xml" scope="axis2"/>
<call>
    <endpoint>
        <address uri=local://localhost/services/SomeProxy"/>
    </endpoint>
</call> 

WSO2是否在本地调用中阻止构建器和形式?

0 个答案:

没有答案