RE: NewB/Default Servlet:Can't find .gif

2002-02-18 Thread Justin Rowles
> Hello List... Hallo Newbie ;-) > NEWBIE: I want to generate the welcome page for my domain so > I mapped a test servlet to "/" in the web.xml for my context. > > PROBLEM: A test.gif image is not rendered by the servlet - > as it appears the path is not found. Are you trying to return htm

RE: NewB/Default Servlet:Can't find .gif

2002-02-18 Thread john-paul delaney
On Mon, 18 Feb 2002, Justin Rowles wrote: > > PROBLEM: A test.gif image is not rendered by the servlet - > > as it appears the path is not found. > > Are you trying to return html including an image link (such as ) >or trying to stream an image via the servlet? > If the latter, then js

RE: NewB/Default Servlet:Can't find .gif

2002-02-18 Thread Justin Rowles
> I'm confused as to why once I change the servlet-mapping from > "/" to "/intro" that the .gif is read. So am I ;-) Can you print out the output from either case and send it. J. *** For more information on Ordnance Survey products

RE: NewB/Default Servlet:Can't find .gif

2002-02-18 Thread john-paul delaney
Thanks Justin... excerpt from web.xml>>> intro intro intro /intro intro.class is in $CATALINA_HOME/webapps/ap.org/WEB-INF/classes test.gif in in $CATALINA_HOME/webapps/ap.org/

RE: NewB/Default Servlet:Can't find .gif

2002-02-18 Thread Larry Isaacs
> -Original Message- > From: john-paul delaney [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 18, 2002 1:34 PM > To: Tomcat Users List > Subject: RE: NewB/Default Servlet:Can't find .gif > > > > > On Mon, 18 Feb 2002, Justin Rowles wrote: >

RE: NewB/Default Servlet:Can't find .gif

2002-02-18 Thread john-paul delaney
Is there a way then, to automatically invoke a servlet by pointing to the url www.mydomain.com (Or am I obliged to use .jsps)? thanks/j-p. On Mon, 18 Feb 2002, Larry Isaacs wrote: > > The default servlet handles requests that don't map to some other > serlvet. This usually includes all stati

RE: NewB/Default Servlet:Can't find .gif

2002-02-18 Thread Larry Isaacs
x.jsp that forwards to your servlet. Cheers, Larry > -Original Message- > From: john-paul delaney [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 18, 2002 3:30 PM > To: Tomcat Users List > Subject: RE: NewB/Default Servlet:Can't find .gif > > > > Is t