Running the CICS Transaction Server for z/OS Connectivity sample

When you run the CICS Transaction Server for z/OS Connectivity sample, the sample_input_111111.xml, sample_input_222222.xml, and sample_input_FILEB.xml messages move through the message flow. You can run the sample to find out what happens in either of the following scenarios:

For more information, see About the CICS Transaction Server for z/OS Connectivity sample.

If you have not set up FILEA in the CICS region, you cannot observe the effects of retrieving records from FILEA. To set up FILEA in your target CICS region, see Setting up the CICS Transaction Server for z/OS Connectivity sample. However, if you have not set up FILEA in the CICS region, you can still explore the configuration of the node properties and attempt to open a non-existent file.

Troubleshooting

Try the following troubleshooting tips if you encounter any problems when you run the sample:

Running the sample with a .xml message to retrieve record 111111 from FILEA

  1. In the Application Development view, expand the CICS Connectivity Message Flows > Flow Tests folder.
  2. Double-click CICSConnectivityTest.mbtest to open the file in the Test Client.
  3. The invoke command is set up to send the input message to retrieve record 111111 from FILEA.
  4. Right-click Invoke Message Flow > Re-run.
  5. Observe the input and output messages.
	<record>
	  <stat></stat>
	  <recid>111111</recid>
	  <name>C. BAKER</name>
	  <address>OTTAWA, ONTARIO</address>
	  <phone>51212003</phone>
	  <date>26 11 81</date>
	  <amount>$0011.00</amount>
	  <comment>*********</comment>
	</record>
	

Running the sample with a .xml message to retrieve record 222222 from FILEA

  1. Right-click Invoke Message Flow > Duplicate.
  2. Change <record>111111</record> to <record>222222</record>.
  3. Click Send Message.
  4. Observe the input and output messages.
	<record>
	  <stat></stat>
	  <recid>222222</recid>
	  <name>DR E. GRIFFITHS</name>
	  <address>FRANKFURT, GERMANY</address>
	  <phone>20034151</phone>
	  <date>26 11 81</date>
	  <amount>$0022.00</amount>
	  <comment>*********</comment>
	</record>
	

Running the sample with a .xml message to attempt to open a non-existent file

  1. Right-click Invoke Message Flow > Duplicate.
  2. Change <file>FILEA</file> to <file>FILEB</file>.
  3. Click Send Message.
  4. Observe the input and output messages.
	<record>
	  <stat>File could not be found</stat>
	</record>
	
For detailed information about how to use the Test Client, see Test Client Events tab in the IBM Integration Bus documentation.

Back to sample home