向 WSO2 ESB 发送 ISO8583 消息

Send ISO8583 Message to WSO2 ESB

在 WSO2 官方文档中实施入站端点后,我正在尝试将 ISO 8583 消息发送到 WSO2 ESB:https://docs.wso2.com/display/ESBCONNECTORS/Configuring+ISO8583+Inbound+Operations

我创建了以下工件:

ISO8583 入站端点:

<inboundEndpoint
    class="org.wso2.carbon.inbound.iso8583.listening.ISO8583MessageConsumer"
    name="iso8583" onError="fault" sequence="request" suspend="false">
    <parameters>
        <parameter name="inbound.behavior">listening</parameter>
        <parameter name="sequential">true</parameter>
        <parameter name="coordination">true</parameter>
        <parameter name="port">5000</parameter>
    </parameters>
</inboundEndpoint>

连接到该入站的请求序列是:

sequence name="request" statistics="enable" trace="enable">
    <in>
        <log level="full"/>
        <send/>
    </in>
    <out>
        <send/>
    </out>
</sequence>

我的问题是:当我从 java 客户端向那个入站端口发送 ISO8583 消息时,客户端没有回复,服务总线系统日志中也没有显示任何内容!

任何建议都会有用。

谢谢!

下载相关的 jar 并将其放入文档中提到的 /repository/components/lib 目录:https://docs.wso2.com/display/ESBCONNECTORS/Configuring+ISO8583+Inbound+Operations 并尝试使用以下请求序列连接入站。

<sequence name="request" onError="fault">
    <log level="full"/>

您可以使用任何简单的 java 客户端程序测试入站。 (例如,参考 link : https://github.com/Kanapriya/ISO8583TestClient) 请记住,消息需要符合 ISO8583 标准。