I am trying to build a service call-out but need to debug my code. How can I put the service call-out in debug mode?
Same thing could/would be applicable for the Extended Operators we are building.
I am trying to build a service call-out but need to debug my code. How can I put the service call-out in debug mode?
Same thing could/would be applicable for the Extended Operators we are building.
Flag this post as spam/abuse.
This might be related to my other question about log4j.
For debugging, I am trying to investigate what the third party system returns and how I parse it and step-thru it to understand why the response is correct/incorrect.
This issue is actually a Eclipse Plugin debug issue. So investigating further, you can put the plugin into debug mode as described in the Eclipse PDE.
From the plugin development view, when you open the manifest file, in the overview tab there is a section called "Testing" where you have the link for "Launch an Eclipse in Debug mode". This will launch a new eclipse, automatically create a new workspace "runtime-EclipseApplication". For this workspace, import your Corticon project, no need to copy it. If you have the break point enabled in your java code, you run your test case in your new workspace project and you see that it will stop at the breakpoint in your original workspace where you can step thru.
This shortcut link to launch a new eclipse application opens a new eclipse with the java remote debug flags set in a new workspace.
Regards,
This issue is actually a Eclipse Plugin debug issue. So investigating further, you can put the plugin into debug mode as described in the Eclipse PDE.
From the plugin development view, when you open the manifest file, in the overview tab there is a section called "Testing" where you have the link for "Launch an Eclipse in Debug mode". This will launch a new eclipse, automatically create a new workspace "runtime-EclipseApplication". For this workspace, import your Corticon project, no need to copy it. If you have the break point enabled in your java code, you run your test case in your new workspace project and you see that it will stop at the breakpoint in your original workspace where you can step thru.
This shortcut link to launch a new eclipse application opens a new eclipse with the java remote debug flags set in a new workspace.
Regards,
Flag this post as spam/abuse.