I do not want to use 'webapps'

2001-08-24 Thread Claes Holmerson
Hello! I am trying to set up Tomcat to work in the environment where we have been developing another application. In this environment we do not have a webapps directory. The output path for JBuilder is C:\sandbox\development, and this is also were the classpath points to when we test our

Re: I do not want to use 'webapps'

2001-08-24 Thread Denis Haskin
Yup, just set up a new context in server.xml: Context path=/mysandbox docBase=C:/Sandbox/development /Context Which can then be accessed with the url http://localhost:8080/mysandbox (using the standalone http connector). Note the use of forward slashes, not

Re: I do not want to use 'webapps'

2001-08-24 Thread Rob S.
See the Context tag in server.xml, esp the docBase attribute. - r On Fri, 24 Aug 2001 17:53:26 +0200 [EMAIL PROTECTED] wrote: Hello! I am trying to set up Tomcat to work in the environment where we have been developing another application. In this environment we do not have a webapps