You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Randy Paries <ra...@unitnet.com> on 2001/06/06 01:31:36 UTC

Trying to add a new app

Hello,

I am trying to add a new app to my tomcat/apache.

from my server.xml I have
        <Context path=""
                 docBase="/home/nationals"
                 crossContext="true"
                 debug="3"
                 reloadable="true" >
        </Context>
        <Context path="/n2"
                 docBase="/home/nationals2"
                 crossContext="true"
                 debug="3"
                 reloadable="true" >
        </Context>

the top works but the bottom does not.
i would assume that I call the first one( i am going thru tomcat right now,
will do the apache next)
http://www.mynode.com:8080/servlet/gameServlet?method=version (this works)
I assumed that I would then do
http://www.mynode.com:8080/n2/servlet/gameServlet?method=version (this does
not)

i get file not found and the tc.log
2001-06-05 05:34:31 - Ctx( /n2 ): 404 R( /n2 + /gameServlet + null) null

Suggestions please.

Thanks
Randy