2

I have seen application that are written in Java that can interface to CICS regions on the Mainframe(haven't seen the source code). I am looking for an alternative to the Java method in VB or C# that I can use to connect to a z/OS Mainframe 3270 to retrieve records in VSAM files.

Any documentation and/or sample code it would be much appreciated.

em3ricasforsale
  • 352
  • 3
  • 7
  • 23

1 Answers1

2

Some methods are discussed in this thread.

You mention 3270; another method to access existing mainframe 3270 applications is via screen scraping. This is often considered less desirable than the mechanisms discussed in the linked thread above, but is sometimes the only option when no mainframe person is available to create/modify the CICS application(s).

Community
  • 1
  • 1
cschneid
  • 10,237
  • 1
  • 28
  • 39
  • I currently support an old vb6 application that uses a screen scraping tool that screen scrapes what comes out of a mainframe application, but I am trying to get around the screen scrapes and access the files directly. – em3ricasforsale Dec 28 '11 at 15:50
  • 1
    Accessing the VSAM files directly would be a challenge. You might want to check with those responsible for the CICS application and see if they are willing to help you out by creating a more friendly interface than just the 3270 one. – cschneid Dec 28 '11 at 17:49