Hi

> So if I get port 80 opened up ...

Okay, we are going the right way...

> I can add the following entry to server.xml <Host 
> name="www.myDomainName.com" debug="0" appBase="webapps/myWebApp"> ...

No.

[The following is taken from manual, not tested myself.]

"appBase" just gives the folder name for all webapps. You cannot specify a
very webapp here.
Just leave appBase at its default "webapps", additinally I define:
autoDeploy="false".

Then define
<Context path="" docBase="myWebApp" debug="0" reloadable="false"/>

within your webapp define
<welcome-file-list>
        <welcome-file>/myWebApp/index.jsp</welcome-file>
</welcome-file-list>

[I am not sure about the path inside the welcome-file clause, but I think it
should work] [I have not used such, because I am not using jsp, I am using
only servlets.]

Anyway, read the documentation. I agree, that it is hard to get into it, but
as you seem to have a tomcat for your own, simply try it, errors don't hurt.

cu
  Steffen


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

Reply via email to