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