IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

XML Channel message examples

The following are typical messages for the XML Channel:
Request message
<?xml version="1.0"?>
<!DOCTYPE System "http://localhost/dse/request.dtd">
<requestMsg>
    <dse_operationName>"startupServerOp"</dse_operationName>
    <dse_requestFormatName>"xmlReqFormat"</dse_requestFormatName>
    <dse_parentContextName>"BranchContext"</dse_parentContextName>
    <dse_operationId>"1"</dse_operationId>
    <dse_applicationId>"ASHUTKFFSHGETREAV"</dse_applicationId>
    <dse_formattedData><xxxx></xxxx></dse_formattedData>
</requestMsg>
Note: The formatted data is a meta-data tag used to define the XML request data.
Reply message
<?xml version="1.0"?>
<!DOCTYPE System "http://localhost/dse/reply.dtd">
<replyMsg>
    <dse_status>"OK"</dse_status>
    <dse_repFormatName>"xmlRepFormat"</dse_repFormatName>
    <dse_resultData>"??????"</dse_resultData>
    <dse_operationId>"1"<operationId></dse_opertaionId>
    <dse_applicationId>"ASHUTKFFSHGETREAV"</dse_applicationId>
</replyMsg>
Establish Session Request message
<?xml version="1.0"?>
<!DOCTYPE System "http://localhost/dse/sessionRequest.dtd">
<requestMsg>
    <dse_createSession>"true"</dse_createSession>
    <dse_TID>"true"</dse_TID>
</requestMsg>
Establish Session Reply message
<?xml version="1.0"?>
<!DOCTYPE System "http://localhost/dse/sessionReply.dtd">
<replyMsg>
    <dse_status>"OK"</dse_status>
    <dse_sessionId>"GFGSTRWBWLHUTEYJUE"</dse_sessionId>
    <dse_timeout>"100000"</dse_timeout>
</replyMsg>


Feedback