Have you tried making a symbolic link from /usr/local/watermarks to
$TOMCAT_HOME/webapps/watermarks?

The syntax would be:

        ln -s /usr/local/watermarks $TOMCAT_HOME/webapps/watermarks

Also check the manager app, tomcat may not be recognizing things, in which
case you'd not see it in the manager.  Or it might be that tomcat, for
whatever reason, isn't starting the context.

--mikej
-=-----
mike jackson
[EMAIL PROTECTED]


> -----Original Message-----
> From: Matthew Hixson [mailto:[EMAIL PROTECTED] 
> Sent: Friday, July 09, 2004 2:48 PM
> To: Tomcat Users List
> Subject: Re: serving static content
> 
> 
> Under JBoss this file is 
> /usr/local/jboss/server/default/conf/jboss.web/localhost/ 
> watermarks.xml.  I've tried deleting that file and 
> restarting, but it  
> doesn't make a bit of difference.  The content of that file is:
> 
> <?xml version='1.0' encoding='utf-8'?>
> <Context debug="99" docBase="/usr/local/watermarks" 
> path="/watermarks"  
> reloadable="true">
> </Context>
> 
>    -M@
> 
> On Jul 9, 2004, at 2:12 PM, Jim Cox wrote:
> 
> > I've had issues in the past with the generated <webapp>.xml 
> files that 
> > Tomcat generates under ${TOMCAT_ROOT}/conf/Catalina/<server>/, for
> > which
> > stopping Tomcat, deleting the .xml file, and starting 
> Tomcat seemed to  
> > fix.
> >
> > In your case that file might be:
> >   /usr/local/tomcat/conf/Catalina/localhost/watermarks.xml
> >
> >
> > ------------------------------------------------------------
> > This e-mail and attachments, if any, may contain 
> confidential and/or 
> > proprietary information. Please be advised that the 
> unauthorized use 
> > or disclosure of the information is strictly prohibited. If 
> you are not
> > the
> > intended recipient, please notify the sender immediately by reply  
> > e-mail and
> > delete all copies of this message and attachments. Thank you.
> >
> >
> >
> > -----Original Message-----
> > From: Matthew Hixson [mailto:[EMAIL PROTECTED]
> > Sent: Fri 09 July 2004 5:09 pm
> > To: Tomcat Users List
> > Subject: Re: serving static content
> >
> >
> > I actually did try this already.  I have a WEB-INF with a 
> web.xml in 
> > it.  The entire web.xml is:
> >
> > -----------
> > <?xml version="1.0"?>
> > <!DOCTYPE web-app PUBLIC
> >            "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
> >            "http://java.sun.com/dtd/web-app_2_3.dtd";>
> >
> > <web-app>
> >
> > </web-app>
> > -----------
> >
> > I also made an empty lib directory beneath WEB-INF, but that didn't 
> > help matters.
> >    -M@
> >
> > On Jul 9, 2004, at 1:58 PM, Jim Cox wrote:
> >
> >> Not sure that you need it, but do you have a WEB-INF directory 
> >> underneath /usr/local/watermarks (i.e. 
> >> /usr/local/watermarks/WEB-INF/)? If so, do you
> >> have a web.xml file in there (even a skeletal one)?
> >>
> >> ------------------------------------------------------------
> >> This e-mail and attachments, if any, may contain 
> confidential and/or 
> >> proprietary information. Please be advised that the 
> unauthorized use
> >> or
> >> disclosure of the information is strictly prohibited. If 
> you are not
> >> the
> >> intended recipient, please notify the sender immediately by reply
> >> e-mail and
> >> delete all copies of this message and attachments. Thank you.
> >>
> >>
> >>
> >> -----Original Message-----
> >> From: Matthew Hixson [mailto:[EMAIL PROTECTED]
> >> Sent: Fri 09 July 2004 4:59 pm
> >> To: Tomcat Users List
> >> Subject: Re: serving static content
> >>
> >>
> >>       <Host name="localhost" debug="99"
> >>         unpackWARs="true" autoDeploy="true"
> >>         xmlValidation="false" xmlNamespaceAware="false">
> >>
> >> <!-- ADD WATERMARKS DIRECTORY -->
> >>        <Context path="/watermarks" appBase=""
> >>                   docBase="/usr/local/watermarks"
> >>                   debug="99" reloadable="true">
> >>        </Context>
> >>
> >>        <Valve className="org.apache.catalina.valves.AccessLogValve"
> >>                 prefix="localhost_access_log." suffix=".log"
> >>                 pattern="common" 
> >> directory="${jboss.server.home.dir}/log"
> >>                 resolveHosts="false" />
> >>
> >>        </Host>
> >>
> >>
> >>
> >> On Jul 9, 2004, at 1:52 PM, Jim Cox wrote:
> >>
> >>> What's your Context entry?
> >>>
> >>> ------------------------------------------------------------
> >>> This e-mail and attachments, if any, may contain 
> confidential and/or 
> >>> proprietary information. Please be advised that the 
> unauthorized use 
> >>> or disclosure of the information is strictly prohibited. 
> If you are 
> >>> not the
> >>> intended recipient, please notify the sender immediately by reply
> >>> e-mail and
> >>> delete all copies of this message and attachments. Thank you.
> >>>
> >>>
> >>>
> >>> -----Original Message-----
> >>> From: Matthew Hixson [mailto:[EMAIL PROTECTED]
> >>> Sent: Fri 09 July 2004 4:54 pm
> >>> To: Tomcat Users List
> >>> Subject: Re: serving static content
> >>>
> >>>
> >>> I'm trying to serve images from /usr/local/watermarks.  The URL
> >>> should
> >>> be http://mymachine.com/watermarks/.  I've tried adding a 
> Context to
> >>> server.xml, but every time I try to access
> >>> http://mymachine.com/watermarks I get a 404 message:
> >>>
> >>> The requested resource (/watermarks/) is not available.
> >>>
> >>> This is with Tomcat 5.0.26 embedded in JBoss 3.2.4.  There are not
> >>> any
> >>> error messages in any logfiles.
> >>>    Thanks,
> >>>     -M@
> >>>
> >>> On Jul 9, 2004, at 1:41 PM, Mike Curwen wrote:
> >>>
> >>>> Tomcat will serve static content, pretty much "out of 
> the box".   
> >>>> What
> >>>> is
> >>>> the problem you're experiencing ?
> >>>>
> >>>>
> >>>>> -----Original Message-----
> >>>>> From: Matthew Hixson [mailto:[EMAIL PROTECTED]
> >>>>> Sent: Friday, July 09, 2004 3:27 PM
> >>>>> To: Tomcat Users List
> >>>>> Subject: serving static content
> >>>>>
> >>>>>
> >>>>> Does there exist a howto on serving static content with Tomcat? 
> >>>>> Even better would be one that shows how to do this with 
> >>>>> Tomcat+JBoss. Searching Google seems to turn up lots of 
> hits that 
> >>>>> say basically, "Use
> >>>>> Apache instead of Tomcat to serve static content."  I 
> really need  
> >>>>> to
> >>>>> get this working in Tomcat without Apache.
> >>>>>    Thanks,
> >>>>>      -M@
> >>>>>
> >>>>>
> >>>>> 
> ------------------------------------------------------------------
> >>>>> -
> >>>>> -
> >>>>> -
> >>>>> 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]
> >>
> >>
> >> 
> ---------------------------------------------------------------------
> >> 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]
> 



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

Reply via email to