RE: Stubborn simple servlet

2004-03-17 Thread Shapira, Yoav
Hi, Read in some web doc that the plan is to write a tool tool for _generating_ all these config files rather than having to tweak them by hand. A good config tool would certainly have helped avoid a lot of head bashing. If anyone on this list knows of someone who is contemplating writing a

RE: Stubborn simple servlet

2004-03-17 Thread Wendy Smoak
From: [EMAIL PROTECTED] Rick Lutowski With further fussing, this works! I had changed web.xml to key on /pix_servlet/*.pxhtml as an experiment. When I changed it back to the original *.pxhtml and used the Context base 'ship_pix' in the URL (either absolute or relative), everything

Stubborn simple servlet

2004-03-16 Thread Rick Lutowski
An trying to convert a simple servlet of the HelloWorld variety (pure HTML -- no JSP, EJB, JDBC, etc) from tomcat 3.2.3 to 4.1.30. It works fine with tomcat 3.2.3 in standalone mode but gives a 404 error in 4.1.30 with both netscape and mozilla. The 4.1.30 demos work so tomcat is installed ok.

RE: Stubborn simple servlet

2004-03-16 Thread Mike Curwen
http://jakarta.apache.org/tomcat/faq/misc.html#invoker -Original Message- From: rick [mailto:rick] On Behalf Of Rick Lutowski Sent: Tuesday, March 16, 2004 3:13 PM To: [EMAIL PROTECTED] Subject: Stubborn simple servlet

RE: Stubborn simple servlet

2004-03-16 Thread Wendy Smoak
From: [EMAIL PROTECTED] An trying to convert a simple servlet of the HelloWorld variety (pure HTML -- no JSP, EJB, JDBC, etc) from tomcat 3.2.3 to 4.1.30. It works fine with tomcat 3.2.3 in standalone mode but gives a 404 error in 4.1.30 with both netscape and mozilla. What URL are you

Re: Stubborn simple servlet

2004-03-16 Thread Rick Lutowski
reloadable=true crossContext=true Logger className=org.apache.catalina.logger.FileLogger prefix=surveyor_log. suffix=.txt timestamp=true/ /Context !-- the Stubborn Simple Servlet -- Context path=/ship_pix docBase=ship_pix debug=0

RE: Stubborn simple servlet

2004-03-16 Thread Mike Curwen
: Stubborn simple servlet Wendy Smoak wrote: From: [EMAIL PROTECTED] An trying to convert a simple servlet of the HelloWorld variety (pure HTML -- no JSP, EJB, JDBC, etc) from tomcat 3.2.3 to 4.1.30. It works fine with tomcat 3.2.3 in standalone mode but gives a 404 error

RE: Stubborn simple servlet

2004-03-16 Thread Wendy Smoak
Rick Lutowski wrote: Probably not the problem. Okay, but you still haven't told us what URL gives the 404. That you're getting a 404 means that Tomcat cannot map the URL you're providing to anything it has to offer. Context path=/ship_pix docBase=ship_pix debug=0

Re: Stubborn simple servlet

2004-03-16 Thread Rick Lutowski
Mike Curwen wrote: What URL are you using to access a given page (one that gives you a 404)? something like: http://www.foo.com/ship_pix/index.pxhtml ? That is the next step. Currently just trying to get standalone working, so the URL is more like:

RE: Stubborn simple servlet

2004-03-16 Thread Mike Curwen
[mailto:rick] On Behalf Of Rick Lutowski Sent: Tuesday, March 16, 2004 6:25 PM To: Tomcat Users List Subject: Re: Stubborn simple servlet Mike Curwen wrote: What URL are you using to access a given page (one that gives you a 404)? something like: http://www.foo.com/ship_pix/index.pxhtml

Re: Stubborn simple servlet

2004-03-16 Thread Rick Lutowski
Wendy Smoak wrote: Rick Lutowski wrote: Probably not the problem. Okay, but you still haven't told us what URL gives the 404. That you're getting a 404 means that Tomcat cannot map the URL you're providing to anything it has to offer. Context path=/ship_pix docBase=ship_pix

Re: Stubborn simple servlet

2004-03-16 Thread Rick Lutowski
Mike Curwen wrote: Is the servlet configured under the jreality webapp or the ship_pix one? The /ship_pix context. No servlets are under /jreality If it's the jreality, try linking: a href=pix.pxhtml?base=CV10 if it's the other, try: a

Re: Stubborn simple servlet

2004-03-16 Thread Rick Lutowski
Rick Lutowski wrote: Mike Curwen wrote: if it's the other, try: a href=http://localhost:8080/ship_pix/pix.pxhtml?base=CV10; With a href=http://localhost:8080/ship_pix/pix_servlet/pix.pxhtml?base=CV10; the error is 404 -- /ship_pix/pix_servlet/pix.pxhtml is not available With further