WSÂReliableMessaging allows SOAP messages to be reliably delivered between distributed applications, regardless of software or hardware failures. The CXF WSÂ-RM inbound endpoint allows a client (RM Source) to communicate with the ESB profile of WSO2 EI (RM Destination) with a guarantee that a message sent will be delivered.
...
Code Block | ||
---|---|---|
| ||
<inboundEndpoint xmlns="http://ws.apache.org/ns/synapse" name="RM_INBOUND" sequence="RMIn" onError="fault" class="org.wso2.carbon.inbound.endpoint.ext.wsrm.InboundRMHttpListener" suspend="false"> <parameters> <parameter name="inbound.cxf.rm.port">20940</parameter> <parameter name="inbound.cxf.rm.config-file">conf/cxf/server.xml</parameter> <parameter name="coordination">true</parameter> <parameter name="inbound.cxf.rm.host">127.0.0.1</parameter> <parameter name="inbound.behavior">listening</parameter> <parameter name="sequential">true</parameter> </parameters> </inboundEndpoint> |
...
The CXF WS-RM Inbound endpoint can be configured by specifying the following parameters:
...