Passthrough messages with application data in XML

  1. Send an initial transaction to the CICS® Service Flow Runtime:
    <?xml version="1.0" encoding="UTF-8"?>
    <screen>
       <input>CMAV<input>
    <screen>
  2. Receive the resulting initial screen from the CICS Service Flow Runtime:
    <?xml version="1.0" encoding="UTF-8"?>
          <screen attentionid="enter" maps=1 >
    	       <map name="MAPA" mapset="DFHMAB1" rows="24" columns="80" fields="2">
                 <field name="AR03C18" ml="5" pa="u" ia="n" ha="u"/>
                 <field name="AR22C70" ml="1" pa="u" ia="n" ha="u"/>
             <map>
         <screen>
    	         
  3. Send the screen containing input fields to the CICS Service Flow Runtime:
    <?xml version="1.0" encoding="UTF-8"?>
          <screen attentionid="enter" maps=1 >
    	       <map name="MAPA" mapset="DFHMAB1" rows="24" columns="80" fields="2">
                 <field name="AR03C18">10000<field>
                 <field name="AR22C70">1<field>
             <map>
         <screen>
    	         
  4. Receive the screen with data from the CICS Service Flow Runtime:
    <?xml version="1.0" encoding="UTF-8"?>
          <screen attentionid="enter" maps=1 >
    	       <map name="MAPA" mapset="DFHMAB1" rows="24" columns="80" fields="15">
                <field name="AR03C18" ml="5"  pa="p" ia="n">10000<field>
                <field name="AR04C18" ml="30" pa="p" ia="n">Customer One<field>
                <field name="AR05C18" ml="35" pa="p" ia="n">1 Elm St<field>
                <field name="AR06C18" ml="20" pa="p" ia="n">Newport<field>
                <field name="AR06C48" ml="2"  pa="p" ia="n">RI<field>
                     .
    			          .
    			          .
             <map>
         <screen>