Re: How to change the package definition from org.apache.jsp to something else ?

2002-08-20 Thread Navdeep Singh
Thanks Craing ! As I said, problem is that these .java and .class files land in /work/localhost/_/ directory with package definition of org.apache.jsp. This is logically not correct and I cannot use jbuilder to debug the JSP as it requires the files to be at a correct place. Do we have a

Re: How to change the package definition from org.apache.jsp to something else ?

2002-08-20 Thread Eric Gilbertson
Rob, As noted in a previous response, the package name and location of the servlet class files is server specific and not directly controllable by the user. You can work around this by statically compiling your servlets using jspc (use the -p switch to control the package name that is used)

Re: How to change the package definition from org.apache.jsp to something else ?

2002-08-20 Thread Rodrigo Ruiz
What about using %@ page extends=your.package % at the beginning of your JSP? Related to JBuilder: 1. which version of JBuilder are you using? 2. Are you doing remote debugging, or executing Tomcat from within JBuilder? - Original Message - From: Eric Gilbertson [EMAIL PROTECTED]

How to change the package definition from org.apache.jsp to something else ?

2002-08-19 Thread Navdeep Singh
Hi, I have noticed that the default package structure in my servlet source files (compiled from JSPs) is org.apache.jsp. But the .java and .class files are generated in /work/localhost/_/ directory. How can i 1. Force my compiled .java and .class file to go in /work/org/apache/jsp ? or 2.