Dave Kennell wrote:
Well,

Your context idea was a step in the right direction. I hate to be a bother however now as long as the JSP is in the root. It works great. But as soon as I try to goto www.test.com/admin it cannot find any of the classes that my JSPs have in them. Ive tried adding multiple variations of context tags within the host to remidy this with no luck in fixing the issue...

Thanks,
Dave

Hi, my opinion
i would install everything under webapps/test/ROOT
create a META-INF dir inside it and edit a new file context.xml with this content
<?xml version="1.0" encoding="UTF-8"?>
<Context cookies="true"
  crossContext="false"
  docBase="ROOT"
  privileged="false"
  path=""
  reloadable="true">
</Context>

then i would delete the "<Context" directive inside server.xml & restart tomcat

Tell us if u still need help
Giorgio Ponza

----Original Message Follows----
From: Mladen Adamovic <[EMAIL PROTECTED]>
Reply-To: "Tomcat Users List" <users@tomcat.apache.org>
To: Tomcat Users List <users@tomcat.apache.org>
Subject: Re: JSPs will not load with virtual domain
Date: Sun, 11 Jun 2006 10:07:21 +0200

Dave Kennell wrote:
So I've come to the conclusion that it is entirly disregarding my WEB-INF folder...
Is WEB-INF folder under webapps/test?
Hm, I had some problems and find out on this mailing list that good idea is to move everything from webapps/test to webapps/test/ROOT
and my server.xml have something like :
     <Host name="www.test.com" debug="0" appBase="webapps/test"
     unpackWARs="false" autoDeploy="true"       >
       <Alias>test.com</Alias>
               <Context path="" docBase="ROOT"/>
     </Host>

Although using of Context inside Host tag is discouraged in new version of Tomcat this works for me.
--
Mladen Adamovic
http://www.online-utility.org http://www.shortopedia.com http://www.froola.com http://www.gift-idea4u.com

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to