Hi everyone,
i tried to follow these steps but it isn't working: https://success.outsystems.com/Documentation/11/Developing_an_Application/Troubleshooting_Applications/Debugging_Applications/Debugging_Producer_Modules?_gl=1*1kd2y42*_ga*Nzc4NjQ4MTg3LjE2Njc5OTcxNDE.*_ga_ZD4DTMHWR2*MTY3MTY0MzUxOC4zOC4xLjE2NzE2NDQ0NTEuNDcuMC4w
I have an application with one module to consume a microservicies, i have implemented a service action to call an endpoint and get the results.
Then, from another application i call this service action to retrieve the data.
I have followed the steps:
Open the producer Module and set the Entry Module to (this module).
You can set the entry Module in the Debugger pane or in the Debugger menu, by choosing the "Select Entry Module..." option.
Place breakpoints where you want the execution to stop. The execution will only stop on breakpoints of the producer Module.
Start the debugger on the producer Module.
When i start de debug session on producer module i select attach to existing window (i tried to launch a windows but with the same result), then from the web application i click on a button that will call the service action, but the debug never stops in producer module.
if someone can help, i tried so many things a nothing seems to work.
Hi Samuel,
As you are following the steps given in the article link shared by you, you must be trying now to grab the debugger at producer module only (not from consumer module - being a service action).
If this is correct, you can just try refreshing all dependencies (producer) and publish. Also refresh dependencies (consumer) and publish.
Hope it would solve.
The service actions run on their own thread and won't be included as a hard dependency on the consumer module.
You can only select (this module) option in the Debugger tab and start debugging the service actions.