Configuring Rational® Integration Tester for recording IMS™ Connect traffic
You can set up Rational® Integration Tester to record IBM® IMS Connect traffic. In the Recording Studio of Rational® Integration Tester, recorded traffic can be filtered based upon Datastore, Client ID, Message-Type, and Transaction Code.
About this task
Configuring
Rational® Integration
Tester for recording IMS™ Connect traffic involves modifying the registration.xml
file
of the HTTP/TCP proxy, which is a component of
Rational® Test Control
Panel.
Procedure
-
Configure port-forwarding in the
registration.xml
file of the HTTP/TCP proxy to forward Information Management System Connect traffic into the proxy, and then to the actual Information Management System Connect server. This file is in thehttptcp
folder in the Rational® Test Control Panel installation directory. -
Add a forward bind line in the
registration.xml
file as follows:<forward bind="ritserver01.com:1234" destination="ImsConnectServer.com:5678" type="imsconnect"/>
Note: V8.5.1 or later supports twotype
values for configuring forward bind. In addition to the type valueimsconnect
, theims
type
is also supported. These values can be used as aliases to each other. -
Define the message exit in the registration.xml file if you
are using a message exit other than the IBM-supplied sample exit, HWSSMPL0 (also
known by its irm-id of *SAMPLE*). Add a sub-element within the
ims element for each exit, and specify the following
attributes:
irm-id
: This is the IRM-ID for the exit. The value must match the one that the client program places within the packets in the IRM header. The IRM header then sends it to IMS Connect. For example, the IRM-ID of the IMS sample user exit HWSSAMPL is,*SAMPL1*
.Note: The value ofirm-id
can be different from the exit name.message-type
: This attribute is reserved for future use. SpecifyALL
for the value.message-format
: This attribute is used to define the format of messages produced by the message exit. The only valid values areLLLL
andLLZZ
.LLLL
indicates that the message exit prefixes each message with a 4-byte length, whereasLLZZ
indicates that the message exit prefixes each message with a 2-byte length followed by two bytes of 00's. If the IMS data that is passed through the proxy server is formatted by a message exit that is not defined as outlined in this step, it is assumed that the format of the data isLLZZ
.
<ims> <message-exit irm-id="*SAMPL1*" message-type="ALL" message-format="LLLL"/> <message-exit irm-id="*USER01*" message-type="ALL" message-format="LLLL"/> </ims>
What to do next
registration.xml
file. See Starting and stopping the HTTP/TCP proxy.