Walks you through the process of debugging the MFDEMO application in
Enterprise Developer using the
Host Access for the Cloud TN3270 emulator.
Debugging requires that your project is associated with the IMSDEMO enterprise server and that IMSDEMO is configured to use
dynamic debugging. Both of these requirements were met earlier in this tutorial.
Set a breakpoint
- In the
Application Explorer view, expand the
IMSSupport project; then double-click
DEMO001T.cbl to start the COBOL editor.
- Scroll down to line number 543 and set a breakpoint. The code on line 543 is:
IF DEMO91-FUNCTION = 'I' OR 'i'
Notes:
- To enable line numbers in the editor, click
Window > Preferences, expand
General > Editors. On the
Text Editors page, check
Show line numbers and click
OK.
- To set a breakpoint, on the line of code where you want to break, put your cursor in the far left column and double-click.
Create a Debug Launch Configuration
- In the
Application Explorer view, click the
IMSSupport project to select it.
- From the main menu, click
Run > Debug Configurations.
- On the tree view, click
COBOL Application.
- On the Debug Configurations toolbar, click
New launch configuration
.
- In the
Name field, type
COBOL_IMS_Tutorial.
- On the
General tab, expand
Main Program.
- If checked, uncheck
Program is part of project build configuration.
- Click the
Browse button under
Main Program.
- Browse to and select the
DEMO001T.dll file located in your project's
loadlib folder.
- Click
Apply and then
Close to apply changes and close the Debug Configurations dialog box.
Start debugging
- From the Eclipse menu, click
Run > Debug As > IMS on COBOL Enterprise Server.
- Builds the project.
- If stopped, starts the IMSDEMO
enterprise server region. If prompted, click
OK.
- Opens the debugger.
- In Server Explorer, right-click
IMSDEMO; then select
Show TN3270 Display.
This opens the
HACloud TN3270 emulator in your default browser.
- In the
HACloud terminal emulator, log into IMS and start MFDEMO just as you did to run the MFDEMO application as described in the previous
topic.
In
Enterprise Developer, the debugger shows the current line of code execution:
- On the
Enterprise Developer toolbar, click
Resume
.
This transfers control back to the terminal emulator and advances the application to its main menu.
- On the main menu in the terminal emulator, type
I into the
FUNCTION CODE field to select the <I>NQUIRE function.
This action advances your cursor to the
TABLE-ID field.
- In the
TABLE-ID field, type
TESTDEPT; then press
Enter.
- On the
Eclipse toolbar, click
Resume
.
The debugger advances to your breakpoint, and the terminal display shows the
INQUIRY screen. From here you can continue debugging if desired. When you have finished, continue with the next step from whatever
screen you are on.
- Tab to the
RETURN field.
- Type
X; then press
Enter.
- On the main menu, type
E into the
FUNCTION CODE field; then press
Enter.
This action takes you to the TRANCODE - MFDEMO - ENDED screen.
Stop debugging
- From the
Host Access for the Cloud toolbar, click
Disconnect, and then close the browser.
- On the Eclipse toolbar, click
Terminate
.
This concludes the tutorial.