I have got the new 9.0.0 Domino SSJS debugger to work on my Xpages. However, I have a CC inside of an Xpage, and in that CC I have SSJS resource library where I do all my validation.
I can invoke the debugger in any SSJS code EXCEPT in code in the library. It seems the thread just gets "suspended."
OK to clarify. I am trying to debug SSJS in an external library.
The problem is when I get to the 2nd line of code below the debugger seems to no longer be responsive.
The dspDocUNID field is a computed field set to the docUNID (or 0 if a new doc) and I have the attribute display:none on it.
When I run this without debug it runs correctly. When I run it in debug it does not.
control2 = getComponent("dspDocUNID");
val2 = control2.getValue();