The host line does not look right

name="" should refer to the host for the uri.  IE where I test on the
machine I'm on I set it to "localhost", or you could have "127.0.0.1". You
need something here that can be resolved into an ip address.

appBase is almost always "webapps".  Put your war file in
$tomcat-base/webapps, and set appBase to "webapps".

Add autoDeplaoy="true" to the Host tag.  This will unpack your war for you
when tomcat starts.

So you should have .....

<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true"
autoDeploy="true">

Logger needs to be within the Context tags.

<Context ..... >
  <Logger .... />
</Context>

Context should also reference you war package name.  When it deploys it will
create a directory in webapps named the same as the war file minus the .war
extention.  If you have autoDeploy set to true though, tomcat will
automatically refernce this directory when you point to it in the web
browser.  If you want the Context then rewite it as:

assume the war file is called test.war

<Context path="/test" docBase="test" debug="0" reloadable="true"
crossContext="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
directory="c:\\crm-dev2\\web-inf\\logs" prefix="crmtest_log." suffix=".txt"
timestamp="true"/>
</Context>

Hope this help

Simon

PS
There is a rather good, if somewhat bussy list,
[EMAIL PROTECTED] that is more appropriate for these questions.

----- Original Message -----
From: "Richard Raquepo" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, March 24, 2003 10:50 AM
Subject: Re: I NEED HELP


> here's my servlet.xml of my tomcat
>  <Host name="crm-test" debug="0" appBase="c:\\crm-dev2" unpackWARs="true">
>         <Context path="/" docBase="c:\\crm-dev2" debug="0"
>                  reloadable="true" crossContext="true">
>   </Context>
>         <Logger className="org.apache.catalina.logger.FileLogger"
>                  directory="c:\\crm-dev2\\web-inf\\logs"
> prefix="crmtest_log." suffix=".txt"
>          timestamp="true"/>
>  </Host>
>
> ----- Original Message -----
> From: "Simon Kelly" <[EMAIL PROTECTED]>
> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> Sent: Monday, March 24, 2003 5:26 PM
> Subject: Re: I NEED HELP
>
>
> > I've just donned my psychic hat and will now solve your problems.
> >
> > 1)  You need to shutdown tomcat, re-deploy your war file and then
restart
> > tomcat.
> >
> > 2)  Mmmmmm .... you have forgotten to put a / in front of the path name.
> IE
> > path="/info" NOT path="info"
> >
> > I thank you ....... and for my next trick I will turn Mr Bush into a
> > Donkey!!  Damit, someone beat me too it  =:0)
> >
> > Cheers
> >
> > Simon
> >
> > ----- Original Message -----
> > From: "Richard Raquepo" <[EMAIL PROTECTED]>
> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> > Sent: Monday, March 24, 2003 9:35 AM
> > Subject: I NEED HELP
> >
> >
> > Please view email:
> > 1. error starting my struts app in tomcat
> > 2. error in my struts config
> >
> > I really need help badly.
> >
> > THANKS!
> >
> > -richard
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to