有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

带有本地传输的java WSO2 ESB构建器/格式化程序

如何使用本地传输运行端点,并同时使用生成器和格式化程序? 当我像这样运行代理服务时,总是调用构建器和格式化程序(传输是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是否在本地调用中阻止构建器和formmatter


共 (0) 个答案