Galen Boyer <[EMAIL PROTECTED]> writes: > Is this doable within the jdee?
Which iPlanet? App Server and Web Server are completely different products. I think iAS uses a standard JVM, in which case using the remote debugging options would work. But I think iWS uses its own JVM (from the Kiva days) and implements part of the Servlet API as native code, so it might be more difficult. If you are trying to debug something general in your servlet, running it under Tomcat (or JBoss if you need more than just servlets/JSPs) is probably easiest. If you are trying to debug something specific to iPlanet, and can't run under a debugger, System.out.print() is your friend.
