Java PComm (Communication with mainframe)
Hi All,
In VB or Excel Macros we have set of objects (autECLConnList, autECLPS, etc- Automation Objects for PComm) to communicate with mainframe applications and perform actions.
Eg: Set AEOB = CreateObject("PCOMM.autECLPS")
Set AECL = CreateObject("PCOMM.autECLConnList")
Set AS1 = CreateObject("PCOMM.autECLoia")
AEOB.SetConnectionByName ("a")
AS1.SetConnectionByName ("A")
AEOB.SendKeys "[enter]"
We want to use these objects in java.Please let me know if there is same objects or objects with same functionality available in java.
It would be helpful if some sample code snippets were available?