I have a web application framework (ofbiz) on which I would like to use the javascript debugger. The underlying web server is Tomcat5, but ofbiz needs a bunch of other stuff to start up first. To start it runs a main class (org.ofbiz.base.start.Start) that eventually starts tomcat and an entity engine and many other things. and I’m not sure how to go about integrating this with the debugger.
I have my ofbiz app up and running in eclipse and I can start and stop ofbiz and debug java files through eclipse, but I haven’t figured out how to enable javascript debugging. I tried to do it without the web server connector, and that didn’t work.
Tim