Page 1 of 1

Debugging against Jiwa Services

PostPosted: Sun May 07, 2017 10:38 am
by SBarnes
Hi Guys,

Is there a way to launch visual studio as the debugger against the Jiwa schedule service similar to doing so for a plugin with the line System.Diagnostics.Debugger.Launch(); or System.Diagnostics.Debugger.Break(); inside the GUI?

I suppose the same question would also be relevant against the new Web API if its self hosted as well.

Thanks in advance.

Re: Debugging against Jiwa Services  Topic is solved

PostPosted: Sun May 07, 2017 1:16 pm
by Mike.Sheen
Putting System.Diagnostics.Debugger.Launch() in any plugin will launch the registered debugger. We do it all the time in the JiwaPluginScheduler service and the JiwaRESTAPI self hosted service.

Re: Debugging against Jiwa Services

PostPosted: Sun May 07, 2017 1:42 pm
by SBarnes
As always thanks Mike