Debugger and Profound UI #2131
Answered
by
sebjulliand
bigbearjeff63
asked this question in
IBM i
-
Hi there. We use Profound UI for our web front end Applications and aren't sure how to associate the debugger with our RPGLE Code via VS Code. These are web-based Applications so there's nothing "called" from a green screen. Any chance you might be able to guide us on how to make the debugger in VSCODE run while working with a Profound Web Screen? |
Beta Was this translation helpful? Give feedback.
Answered by
sebjulliand
Jun 20, 2024
Replies: 1 comment 6 replies
-
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
sebjulliand
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Perfect timing! The Debug Service v2 has been released this week by IBM and it adds support for service entry points.
If you have the IBM i Debug extension, it's probably updated already.
Now you need to install the PTF that will bump the debug service to V2:
You'll also need Java 11 on the LPAR you're going to debug.
Once it's updated, Code for IBM i will detect you're using the V2 and enable the
Set Service Entry Point
action the debug menu (when you right click on a.PGM
or.SRVPGM
object in the Object Browser).Once you have set an entry, as soon as the program/service program gets called on the LPAR, VSCode will pick it up and start a debug session.