Remote custom Java Action debugging in Eclipse: Local variables unavailable

0
Hi there, I have some custom Java code in my app which works great locally. If I deploy it on an on-premise server. I get an error. Now I am trying to remotely debug the app using Eclipse. The code triggers at the breakpoint. Inside the method, however, I cannot see the local variables – see the screenshot below. Does anyone know how I can make them visible?   Best Regards, Henning
asked
1 answers
1

Only the variables in the current scope will be visible FYI.

Advance the code by doing Step Into multiple times and then check. The Eclipse IDE will fill the Variables section with the values.

answered