Reputation:
I have a mainframe with z/os. And I have IMS as user interface (The green screens)
Now the requirement is to show the UI in web front end.
So, I have to trigger the transaction in mainframe from out sources and the output should be shown in web front end. Is there any possible solution for this ? Its better If I can get sample program as well.
Upvotes: 1
Views: 588
Reputation: 418
You have a couple options here. The green screen interfaces you're referring to is the IMS Message Format Service (MFS) which will take the green screen inputs and map them to the inputs for an IMS transaction.
The easiest solution which requires paid tooling would be the IMS MFS SOA solution. This will take the green screen interface files (MFS maps) and generate an equivalent servlet for you that you can apply a CSS style sheet too and deploy into a Java application server.
If you would prefer to have more flexibility in how you design your web front end, then you can take advantage of a few other IMS solutions that basically invoke an IMS transaction remotely through TCP/IP and incorporate that into your web application code:
Upvotes: 1