View previous topic :: View next topic |
Author |
Message |
TX-programmer Beginner
Joined: 25 Oct 2004 Posts: 1 Topics: 1
|
Posted: Mon Oct 25, 2004 9:51 pm Post subject: CICS transaction |
|
|
I have an issue where I need to capture the datastream from a CICS program. I know the transaction. All I have are the loadlibs. What I would like to do is write a program to recognize the trancode and capture the datastream. Then write to a VSAM file. I have never tried somethng like this, any ideas? Thanks Texas programmer. _________________ TX-programmer |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Mon Oct 25, 2004 10:17 pm Post subject: |
|
|
TX-programmer,
Capturing a data stream isn't that easy. Since you only have the loadlibs instead of the actual program you cannot issue RECIEVE BUFFER commands.
You can use the CICS Bridge facility to capture the datastream.
Check this link which explains in detail about Bridging to 3270 transactions
Hope this helps...
Cheers
kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Tue Oct 26, 2004 6:16 am Post subject: |
|
|
You can also use FEPI (Front End processing interface), which 'front ends' any CICS terminal based transaction and intercepts the 3270 datastream. It's probably more complex than using the bridge facility but I think there are some restrictions on the bridge facility which don't apply to FEPI. FEPI has its own manual, available via this board's manual links.
Finally, there are some supplied products which do these sort of captures - e.g. Compuware's Hiperstation product. This could be ideal if you already have one of these products installed, or if you've got some spare cash in the software budget. |
|
Back to top |
|
|
|
|