Re: Servlet mapping problem.

2004-11-22 Thread Andoni
, 2004 5:36 AM Subject: Re: Servlet mapping problem. Hi, I'm not using struts. Stefan www.killersites.com - Original Message - From: sven morales [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 12:25 AM Subject: Re: Servlet mapping

RE: Servlet mapping problem.

2004-11-22 Thread Shapira, Yoav
Hi, message /loginResponse.do description The requested resource (/loginResponse.do) is not available. It seems the context_name part of your form element is blank, missing, or wrong, since the page is asking for /loginResponse.do and not /whatever/loginResponse.do. Accordingly, how do you

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
mapping? Stefan www.killersites.com - Original Message - From: Andoni [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 7:39 AM Subject: Re: Servlet mapping problem. If you are not using Struts why did you call the login JSP, loginResponse.do

RE: Servlet mapping problem.

2004-11-22 Thread Shapira, Yoav
List Subject: Re: Servlet mapping problem. Hi, This is my web.xml for the web app: ?xml version=1.0 encoding=UTF-8? !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 welcome-file-listindex.jsp/welcome-file-list filter

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
22, 2004 9:03 AM Subject: RE: Servlet mapping problem. Hi, message /loginResponse.do description The requested resource (/loginResponse.do) is not available. It seems the context_name part of your form element is blank, missing, or wrong, since the page is asking for /loginResponse.do

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
www.killersites.com - Original Message - From: Stefan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, November 21, 2004 10:31 PM Subject: Re: Servlet mapping problem. Hi, I am actually using a form to post to the target servlet: form action=/context_name

RE: Servlet mapping problem.

2004-11-22 Thread Shapira, Yoav
Hi, form action=/the_context/loginResponse.do method=post name: input type=text name=adminPassword input type=submit /form I meant the server-side code, not the HTML output. Q. Accordingly, how do you generate this form element? A. I'm not sure what you mean, it's just a hard-coded HTML

Re: Servlet mapping problem.

2004-11-22 Thread Ben Souther
, November 21, 2004 10:31 PM Subject: Re: Servlet mapping problem. Hi, I am actually using a form to post to the target servlet: form action=/context_name/loginResponse.do method=post name: input type=text name=adminPassword input type=submit /form The form itself

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
, November 22, 2004 10:12 AM Subject: RE: Servlet mapping problem. Hi, form action=/the_context/loginResponse.do method=post name: input type=text name=adminPassword input type=submit /form I meant the server-side code, not the HTML output. Q. Accordingly, how do you generate this form

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
, November 22, 2004 10:19 AM Subject: Re: Servlet mapping problem. Why don't you just use a relative link?: form action=loginResponse.do method=post On Mon, 2004-11-22 at 10:13, Stefan wrote: Hi, Just out of curiousity I changed the forms' action attribute to include the full path

Re: Servlet mapping problem.

2004-11-22 Thread Ben Souther
List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 10:19 AM Subject: Re: Servlet mapping problem. Why don't you just use a relative link?: form action=loginResponse.do method=post On Mon, 2004-11-22 at 10:13, Stefan wrote: Hi, Just out of curiousity I changed the forms

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
at this point I'm not too impressed the Tomcat. Thanks Ben. Stefan - Original Message - From: Ben Souther [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 10:40 AM Subject: Re: Servlet mapping problem. In your context tag, your specifying: path

RE: Servlet mapping problem.

2004-11-22 Thread Shapira, Yoav
Hi, I actually put the context reference in the context tag ... just something I omitted in the email. But alas, it still does not work ... /snip I'm actually going to see if I can get the client to use Resin (for some reason, everything works fine is Resin ... out of the box), frankly at this

Re: Servlet mapping problem.

2004-11-22 Thread Ben Souther
Subject: Re: Servlet mapping problem. In your context tag, your specifying: path= but in your url you're using: http://127.0.0.1/the_context/loginResponse.do; ^^^ Either put: path=/the_context in your context tag or don't specify it in your url

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
... Thanks for your help. Stefan - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 11:34 AM Subject: RE: Servlet mapping problem. Hi, I actually put the context reference in the context tag ... just

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
Message - From: Ben Souther [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 11:41 AM Subject: Re: Servlet mapping problem. If you're interested, I've got some simple apps all WARed up on my site. http://simple.souther.us. Try dropping one of those wars

RE: Servlet mapping problem.

2004-11-22 Thread Shapira, Yoav
Shapira http://www.yoavshapira.com -Original Message- From: Stefan [mailto:[EMAIL PROTECTED] Sent: Monday, November 22, 2004 11:54 AM To: Tomcat Users List Subject: Re: Servlet mapping problem. Thanks Ben - I'll give it a go .. the client may insist still on Tomcat, anyway it bugs me

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
? Thanks, Stefan - Original Message - From: Ben Souther [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 11:41 AM Subject: Re: Servlet mapping problem. If you're interested, I've got some simple apps all WARed up on my site. http

Re: Servlet mapping problem.

2004-11-22 Thread Stefan
] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 11:58 AM Subject: RE: Servlet mapping problem. Hi, The problem is that you've messed up your configuration. You created context.xml and you created your static HTML page. One says path= and the other asks for path

[OT] Re: Servlet mapping problem.

2004-11-22 Thread Ben Souther
, could it be some physical path issue? Thanks, Stefan - Original Message - From: Ben Souther [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 11:41 AM Subject: Re: Servlet mapping problem. If you're interested, I've got some

RE: Servlet mapping problem.

2004-11-22 Thread Shapira, Yoav
Subject: Re: Servlet mapping problem. Yoav, As I stated in a previous post - I actually included the context name in the context.xml file, I just omitted it in my email. Beyond that, I initially did not include a context.xml file - but it did not work, so I figured I'd give it a go. But if you

[OT] Re: Servlet mapping problem.

2004-11-22 Thread Stefan
, November 22, 2004 12:12 PM Subject: RE: Servlet mapping problem. Hi, Do you get any errors in your log on startup? Are you running Tomcat as a Windows service, or from the command line? Yoav Shapira http://www.yoavshapira.com -Original Message- From: Stefan [mailto:[EMAIL PROTECTED] Sent

Re: [OT] Re: Servlet mapping problem.

2004-11-22 Thread Ben Souther
: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 12:12 PM Subject: RE: Servlet mapping problem. Hi, Do you get any errors in your log on startup? Are you running Tomcat as a Windows service, or from the command line? Yoav

Servlet mapping problem.

2004-11-21 Thread Stefan
Hi, I first posted this question with the wrong subject heading ... sorry about the duplicates. My question: Using Tomcat 5.0.28 standalone on windows XP with JVM 1.4, I get this error even though I have mapped my servlet in the web.xml file of the web app: HTTP Status 404 - /loginResponse.do

Re: Servlet mapping problem.

2004-11-21 Thread sven morales
Can you show us what you type in to your browser? --- Stefan [EMAIL PROTECTED] wrote: Hi, I first posted this question with the wrong subject heading ... sorry about the duplicates. My question: Using Tomcat 5.0.28 standalone on windows XP with JVM 1.4, I get this error even

Re: Servlet mapping problem.

2004-11-21 Thread Stefan
PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, November 21, 2004 9:58 PM Subject: Re: Servlet mapping problem. Can you show us what you type in to your browser? --- Stefan [EMAIL PROTECTED] wrote: Hi, I first posted this question with the wrong subject heading

Re: Servlet mapping problem.

2004-11-21 Thread sven morales
. Stefan www.killersites.com - Original Message - From: sven morales [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, November 21, 2004 9:58 PM Subject: Re: Servlet mapping problem. Can you show us what you type in to your browser? --- Stefan

Re: Servlet mapping problem.

2004-11-21 Thread Stefan
Hi, I'm not using struts. Stefan www.killersites.com - Original Message - From: sven morales [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 22, 2004 12:25 AM Subject: Re: Servlet mapping problem. Can you also post all your struts-config.xml

RE: Multiple Servlet Mapping Problem

2004-11-11 Thread Shapira, Yoav
:[EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 5:37 PM To: [EMAIL PROTECTED] Subject: Multiple Servlet Mapping Problem Is it possible to have two separate servlets, with separate configurations pointing to the same class? Here's my situation, I have a servlet class that has several init

Multiple Servlet Mapping Problem

2004-11-10 Thread Dana Cordes
Is it possible to have two separate servlets, with separate configurations pointing to the same class? Here's my situation, I have a servlet class that has several init-parameters. I want to have a second instance of that same servlet running with different parameters. But it doesn't seem

RE: Multiple Servlet Mapping Problem

2004-11-10 Thread Steve Kirk
fine to me. -Original Message- From: Dana Cordes [mailto:[EMAIL PROTECTED] Sent: Wednesday 10 November 2004 22:37 To: [EMAIL PROTECTED] Subject: Multiple Servlet Mapping Problem Is it possible to have two separate servlets, with separate configurations pointing to the same class

Servlet mapping problem

2004-09-29 Thread Anto Paul
Hi all, I am writing an application which have to serve content based on the hostname it is requested. Different hosts will be set to same ROOT directory. There wont be any content at the ROOT. Everything will be on subdirectories. I wrote a servlet with mapping as / . But when it is forwarded

Re: Servlet mapping problem

2004-09-29 Thread Michael McGrady
Anto Paul wrote: Hi all, I am writing an application which have to serve content based on the hostname it is requested. Different hosts will be set to same ROOT directory. There wont be any content at the ROOT. Everything will be on subdirectories. I wrote a servlet with mapping as / . But when

Re: Servlet mapping problem

2004-09-29 Thread Anto Paul
Hi there, I posted this to Tomcat User List. I didnt posted this to Struts. Although the application is using Struts it is not specific to Struts. rgds Anto Paul On Wed, 29 Sep 2004 00:59:53 -0700, Michael McGrady [EMAIL PROTECTED] wrote: Anto Paul wrote: Hi all, I am writing an

AW: Servlet mapping problem

2004-09-29 Thread Steffen Heil
Hi I wrote a servlet with mapping as / . But when it is forwarded to subdirectory it is coming to same servlet and executing in a loop. You cannot map a single url. Tomcat only maps prefixes. So, you cannot map / with tomcat. (Resin can, but this is another story.) Here is a workaround: Map

Re: AW: Servlet mapping problem

2004-09-29 Thread Anto Paul
I cant grasp what you said. I am using Tomcat 4.1.x. I searched in Google for world welcome-file and could'nt find anything on it. Are you talking about welcome-file-list ?. rgds Anto Paul On Wed, 29 Sep 2004 11:43:33 +0200, Steffen Heil [EMAIL PROTECTED] wrote: Hi I wrote a servlet with

RE: Servlet mapping problem

2004-09-29 Thread Shapira, Yoav
Hi, You cannot map a single url. Tomcat only maps prefixes. So, you cannot map Really? Where did this nugget come from? ;) I nearly choked on my (otherwise fabulous) croissant. Your assertion above is wrong. Tomcat implements servlet mapping exactly as required by the Servlet Specification

AW: AW: Servlet mapping problem

2004-09-29 Thread Steffen Heil
Hi I cant grasp what you said. I am using Tomcat 4.1.x. I searched in Google for world welcome-file and could'nt find anything on it. Are you talking about welcome-file-list ?. Yes. It's entry is welcome-file. welcome-file-list welcome-fileroot/welcome-file /welcome-file-list

AW: Servlet mapping problem

2004-09-29 Thread Steffen Heil
Hi You cannot map a single url. Tomcat only maps prefixes. Really? Where did this nugget come from? ;) I nearly choked on my (otherwise fabulous) croissant. Your assertion above is wrong. Tomcat implements servlet mapping exactly as required by the Servlet Specification (SRV 11). That

RE: Servlet mapping problem

2004-09-29 Thread Shapira, Yoav
Hi, However, I am sure about the fact, that you cannot map a single url such as /. (Yes, you can define a mapping of /, but that maps to EVERY request, NOT to the root url only.) No. You're mistaking the default configuration for something that's hard-coded. Out of the box, / is mapped to

AW: Servlet mapping problem

2004-09-29 Thread Steffen Heil
Hi No. You're mistaking the default configuration for something that's hard-coded. Out of the box, / is mapped to Tomcat's DefaultServlet, which handles static content. This is routine for other containers as well and is not a particular Tomcat trick. No, I did understand this. However, I

Re: Servlet mapping problem

2004-09-29 Thread Anto Paul
What if I use a filter ?. I will map it like this filter-mapping filter-nameMappingFilter/filter-name url-pattern//url-pattern /filter-mapping filter-mapping filter-nameMappingFilter/filter-name url-pattern/*/url-pattern /filter-mapping In filter

RE: Servlet mapping problem

2004-09-29 Thread Shapira, Yoav
Millennium Research Informatics -Original Message- From: Anto Paul [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 10:06 AM To: Tomcat Users List Subject: Re: Servlet mapping problem What if I use a filter ?. I will map it like this filter-mapping filter

Re: Servlet mapping problem

2004-09-29 Thread Michael McGrady
Anto Paul wrote: Hi there, I posted this to Tomcat User List. I didnt posted this to Struts. Although the application is using Struts it is not specific to Struts. rgds Anto Paul On Wed, 29 Sep 2004 00:59:53 -0700, Michael McGrady [EMAIL PROTECTED] wrote: Anto Paul wrote: Hi all, I am

servlet mapping problem

2004-02-25 Thread Jason Keltz
Hi. I am very troubled over a servlet mapping problem, and I am hoping that someone can make a suggestion. I have added a context in conf/Catalina/localhost/test.xml as follows: Context path=/mywebapps docBase=/cs/home/jas/webapps reloadable=true autoDeploy=true/Context In /cs/home/jas

RE: servlet mapping problem

2004-02-25 Thread Shapira, Yoav
Howdy, I am very troubled over a servlet mapping problem, and I am hoping that someone can make a suggestion. I have added a context in conf/Catalina/localhost/test.xml as follows: Context path=/mywebapps docBase=/cs/home/jas/webapps reloadable=true autoDeploy=true/Context In /cs/home/jas

Re: servlet mapping problem

2004-02-25 Thread BAO RuiXian
Jason Keltz wrote: Hi. I am very troubled over a servlet mapping problem, and I am hoping that someone can make a suggestion. I have added a context in conf/Catalina/localhost/test.xml as follows: Context block should be in conf/server.xml file. Best Bao Context path=/mywebapps docBase

RE: servlet mapping problem

2004-02-25 Thread Shapira, Yoav
Howdy, Context block should be in conf/server.xml file. It doesn't have to be, and with tomcat 5 that's actually discouraged. Yoav Shapira This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or

RE: servlet mapping problem

2004-02-25 Thread Jason Keltz
for each one? Would this mean that I now do not have to add any context lines for the applications to work? Thanks so much for your help ... Jason. On Wed, 25 Feb 2004, Shapira, Yoav wrote: Howdy, I am very troubled over a servlet mapping problem, and I am hoping that someone can make

RE: servlet mapping problem

2004-02-25 Thread Shapira, Yoav
Howdy, Host name=localhost debug=0 appBase=webapps unpackWARs=true autoDeploy=true xmlValidation=false xmlNamespaceAware=false If I want multiple appBase directories for this host, can I define multiple host lines, changing the appBase directive for each one? Each host has one

Servlet mapping problem in Tomcat 4.1.24

2003-07-29 Thread Jan Pekník
Hi, I need to map servlet to some virtual file extension, i.e. /content/*.vp. When I set this in web.xml, and make request /content/somepage.html.vp, Tomcat ignores this mapping and servlets is not invoked. When I change mapping to /content/*, everything works ok. Where is the problem? I'm using

Filter and servlet mapping problem

2003-07-29 Thread Mailing Listen
I have written a filter for my webapp where i catch the response and Rewrite all URLs with a timestamp for bypassing some proxies that ignore The settings i set on my webserver (e.g. no-cache, no-store,...). The Filter works fine, but i haveto modify the requests when the reache my webserver. I am

Filter and servlet mapping problem

2003-07-29 Thread Burkard Endres - itara GmbH
I have written a filter for my webapp where i catch the response and Rewrite all URLs with a timestamp for bypassing some proxies that ignore The settings i set on my webserver (e.g. no-cache, no-store,...). The Filter works fine, but i haveto modify the requests when the reache my webserver. I am

AW: Filter and servlet mapping problem

2003-07-29 Thread Mailing Listen
Yes -Ursprüngliche Nachricht- Von: Shapira, Yoav [mailto:[EMAIL PROTECTED] Gesendet: Montag, 28. Juli 2003 15:26 An: Tomcat Users List Betreff: RE: Filter and servlet mapping problem Howdy, Taking the Filter out of the equation, can you find and use the servlets in your context

Re: Filter and servlet mapping problem

2003-07-29 Thread Bill Barker
By the time it has gotten to your Filter, Tomcat has already decided on which Servlet will serve the request (and it is too late to change it's mind :). You need to do something like: String oldURI = unWritePath(request.getServletPath()+request.getPathInfo()); RequestDispatcher rd =

AW: Filter and servlet mapping problem

2003-07-29 Thread Mailing Listen
09:28 An: [EMAIL PROTECTED] Betreff: Re: Filter and servlet mapping problem By the time it has gotten to your Filter, Tomcat has already decided on which Servlet will serve the request (and it is too late to change it's mind :). You need to do something like: String oldURI = unWritePath

RE: Filter and servlet mapping problem

2003-07-29 Thread Bodycombe, Andrew
Maybe you could try rewriting your URL as /myjsp.jsp?time=timestamp_in_millis instead of /myjsp_timestamp_in_millis.jsp -Original Message- From: Mailing Listen [mailto:[EMAIL PROTECTED] Sent: 28 July 2003 11:16 To: Tomcat Users List Subject: Filter and servlet mapping problem I have

AW: Filter and servlet mapping problem

2003-07-29 Thread Mailing Listen
this was my first approach but then i realized that there are POST requests Von: Bodycombe, Andrew [mailto:[EMAIL PROTECTED] Gesendet: Di 29.07.2003 10:56 An: 'Tomcat Users List' Betreff: RE: Filter and servlet mapping problem Maybe you could try rewriting

RE: Servlet mapping problem in Tomcat 4.1.24

2003-07-29 Thread Bodycombe, Andrew
11.2 The spec can be downloaded from the following URL: http://www.jcp.org/aboutJava/communityprocess/final/jsr053/ Andy -Original Message- From: Jan Pekník [mailto:[EMAIL PROTECTED] Sent: 28 July 2003 21:39 To: Tomcat Users List Subject: Servlet mapping problem in Tomcat 4.1.24 Hi, I

Filter and servlet mapping problem

2003-07-28 Thread Mailing Listen
I have written a filter for my webapp where i catch the response and Rewrite all URLs with a timestamp for bypassing some proxies that ignore The settings i set on my webserver (e.g. no-cache, no-store,...). The Filter works fine, but i haveto modify the requests when the reache my webserver. I

RE: Filter and servlet mapping problem

2003-07-28 Thread Shapira, Yoav
and servlet mapping problem I have written a filter for my webapp where i catch the response and Rewrite all URLs with a timestamp for bypassing some proxies that ignore The settings i set on my webserver (e.g. no-cache, no-store,...). The Filter works fine, but i haveto modify the requests when the reache

AW: Filter and servlet mapping problem

2003-07-28 Thread Mailing Listen
yes Von: Shapira, Yoav [mailto:[EMAIL PROTECTED] Gesendet: Mo 28.07.2003 15:26 An: Tomcat Users List Betreff: RE: Filter and servlet mapping problem Howdy, Taking the Filter out of the equation, can you find and use the servlets in your context? Yoav Shapira

Re: servlet-mapping problem

2002-02-26 Thread Dave Ferguson
This is basic stuff. It should work. What URL are you using to invoke the servlet? With no mapping the URL would be http://server/servlet/warservlet. If your mapping is url-pattern/blah/url-pattern then the URL would be http://server/blah. Restart Tomcat to be sure your changes take

RE: servlet-mapping problem

2002-02-26 Thread Mark B. Indictor
== -Original Message- From: Dave Ferguson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 12:11 PM To: Tomcat Users List Subject: Re: servlet-mapping problem This is basic stuff. It should work. What URL are you using to invoke

servlet-mapping problem

2002-02-22 Thread Takeshi L Toyohara
howdy, i am trying to just play around with tomcat and try to get some servlets running. I am having a problem getting the servlet-mapping to work in my web.xml and am wondering if i can get you guys to help out. here's my web.xml. the servlet-mapping tag works only the way it is now (im

Servlet mapping problem - catalina does not map a servlet as defined in web.xml...

2002-01-11 Thread Morten Haavaldsen
Hi! I am running the catalina and the following does not work: http://localhost:8080/jaxm-provider/digest generates an error...file not found... (the .jar file contaiming the servlet is located under /common/lib and that should be ok! )

SV: Servlet mapping problem - catalina does not map a servlet as defined in web.xml...

2002-01-11 Thread Morten Haavaldsen
PROTECTED] Emne: Servlet mapping problem - catalina does not map a servlet as defined in web.xml... Hi! I am running the catalina and the following does not work: http://localhost:8080/jaxm-provider/digest generates an error...file not found... (the .jar file contaiming the servlet is located under

servlet-mapping problem - tomcat 4.0.1

2001-12-21 Thread Scott Eade
How do I default a user to my servlet without blocking access to other directories? Using a default mapping of / results in failure to gain access to resources under my servlet directory. I think I have a fairly standard set-up of tomcat 4.0.1 on win2k. Within C:\jakarta-tomcat-4.0.1\webapps I

Re: servlet-mapping problem - tomcat 4.0.1

2001-12-21 Thread ian silvester
Eade [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 21, 2001 12:53 PM Subject: servlet-mapping problem - tomcat 4.0.1 How do I default a user to my servlet without blocking access to other directories? Using a default mapping of / results in failure to gain access to resources

RE: servlet-mapping problem - tomcat 4.0.1

2001-12-21 Thread SHeyns
/welcome-file-list HTH S. -Original Message- From: Scott Eade [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 6:54 AM To: [EMAIL PROTECTED] Subject: servlet-mapping problem - tomcat 4.0.1 How do I default a user to my servlet without blocking access to other directories

RE: servlet-mapping problem - tomcat 4.0.1

2001-12-21 Thread Cox, Charlie
, December 21, 2001 7:54 AM To: [EMAIL PROTECTED] Subject: servlet-mapping problem - tomcat 4.0.1 How do I default a user to my servlet without blocking access to other directories? Using a default mapping of / results in failure to gain access to resources under my servlet directory. I think I

Re: servlet-mapping problem - tomcat 4.0.1

2001-12-21 Thread Scott Eade
From: Craig R. McClanahan [EMAIL PROTECTED] On Fri, 21 Dec 2001, Scott Eade wrote: Subject: servlet-mapping problem - tomcat 4.0.1 How do I default a user to my servlet without blocking access to other directories? Using a default mapping of / results in failure to gain access

servlet-mapping problem

2001-09-14 Thread Paul Downs
Hi, Still cannot use servlet-mapping and url-mapping have tried many a configuration. Is it possible that anyone on the list using tomcat 3.2.3 could mail me (personally or not) a short example of the relevant lines they have in server.xml and the web.xml for the user? It is starting to

RE: servlet-mapping problem

2001-09-14 Thread Andy Bailey
that it works. Andy -Original Message- From: Paul Downs [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 12:35 PM To: tomcat Subject: servlet-mapping problem Hi, Still cannot use servlet-mapping and url-mapping have tried many a configuration. Is it possible that anyone

RE: servlet-mapping problem

2001-09-14 Thread Paul Downs
Hi, servlet-mapping url-pattern*.ase/url-pattern servlet-nameAServlet/servlet-name /servlet-mapping Thanks for the response. I am trying to use: /servlet-mapping servlet-nameHelloWorld/servlet-name url-pattern/doHello/url-pattern

RE: servlet-mapping problem

2001-09-14 Thread Paul Downs
Hi, Ah oops further to previous reply, could it be because the url I am trying to use: http://domain/doHello Is not even getting to tomcat, the url error is returned by apache. Is this a configuration problem or is it because I am using mod_jk and apache? I don't really want to pass

RE: servlet-mapping problem

2001-09-14 Thread Andy Bailey
- From: Paul Downs [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 1:14 PM To: [EMAIL PROTECTED] Subject: RE: servlet-mapping problem Hi, servlet-mapping url-pattern*.ase/url-pattern servlet-nameAServlet/servlet-name /servlet-mapping Thanks for the response. I am trying

Re: servlet-mapping problem

2001-09-14 Thread Craig R. McClanahan
On Fri, 14 Sep 2001, Paul Downs wrote: Date: Fri, 14 Sep 2001 11:35:25 +0100 From: Paul Downs [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED], Paul Downs [EMAIL PROTECTED] To: tomcat [EMAIL PROTECTED] Subject: servlet-mapping problem Hi, Still cannot use servlet-mapping and url

Re: servlet-mapping problem (Solved! Wahay!)

2001-09-14 Thread Paul Downs
Hi, Got it working eventually by the way, for anyone that is interested. This is using mod_jk to communicate with a tomcat that is *not* listening on port 8080. web.xml: web-app servlet servlet-nameShoppingBasket/servlet-name

web.xml and servlet mapping problem.

2001-09-13 Thread Paul Downs
IMPORTANT! This message has been blind-carbon-copied to you. Do not reply-to-all or forward it without the author's permission. Hi, This is probably me being extremely stupid but I have the following xml file (for a test). ?xml version=1.0 encoding=ISO-8859-1? web-app display-nameSimple

Re: web.xml and servlet mapping problem.

2001-09-13 Thread Paul Downs
--On 13 September 2001 14:07 +0200 Alexandre Victoor [EMAIL PROTECTED] wrote: your file seems good but you need also (if it's not done) to change server.xml in the tomcat\conf directory What should I have in server.xml? Currently it is: Host name=url Context path=/

RE: web.xml and servlet mapping problem.

2001-09-13 Thread Paul Downs
Hi, Please *dont* send me mail off-list like this. I will *never* respond. (well ok just this once then!) Sorry... :-) *ducks* I have recently changed mail clients and seem to be having some problems getting it to behave. It keeps replying to all people and lots of other quite yucky

Re: web.xml and servlet mapping problem.

2001-09-13 Thread Vic Cekvenich
Please don't BCC. Paul Downs wrote: IMPORTANT! This message has been blind-carbon-copied to you. Do not reply-to-all or forward it without the author's permission.

RE: Servlet Mapping Problem -- ???

2001-02-12 Thread Hunter Hillegas
Stern Sons, Inc. [EMAIL PROTECTED] 805-565-1411 PH * 805-565-8684 FAX -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Friday, February 09, 2001 12:34 PM To: [EMAIL PROTECTED] Subject:Re: Servlet Mapping Problem -- ??? Hunter Hillegas wrote

Re: Servlet Mapping Problem -- ???

2001-02-11 Thread Hunter Hillegas
ED] Reply-To: [EMAIL PROTECTED] Date: Fri, 9 Feb 2001 12:33:47 -0800 To: [EMAIL PROTECTED] Subject: Re: Servlet Mapping Problem -- ??? Hunter Hillegas wrote: I have a strange problem with Tomcat 3.2 that I can't figure out... I have two servers, a development server and a product

Servlet Mapping Problem -- ???

2001-02-09 Thread Hunter Hillegas
I have a strange problem with Tomcat 3.2 that I can't figure out... I have two servers, a development server and a production server. The development server is working just fine. I have a servlet called marketCustomerVendorController that is mapped to /marketCustomerVendorController as seen here

Re: Servlet Mapping Problem -- ???

2001-02-09 Thread Craig R. McClanahan
Hunter Hillegas wrote: I have a strange problem with Tomcat 3.2 that I can't figure out... I have two servers, a development server and a production server. The development server is working just fine. I have a servlet called marketCustomerVendorController that is mapped to

RE: Servlet Mapping Problem -- ???

2001-02-09 Thread Hunter Hillegas
Engineer / System Administrator - Jacob Stern Sons, Inc. [EMAIL PROTECTED] 805-565-1411 PH * 805-565-8684 FAX -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Friday, February 09, 2001 12:34 PM To: [EMAIL PROTECTED] Subject:Re: Servlet Mapping

Servlet mapping problem

2001-01-04 Thread Marco Leal
I don't know if this message got through the first time I sent it. If you're seeing it again, I'm sorry. -- Hi guys! I'm having some problems with servlet mapping in a servlet application. My 'web.xml' file looks like this: [...] servlet servlet-nameroom/servlet-name

Re: Servlet mapping problem

2001-01-04 Thread Craig R. McClanahan
Marco Leal wrote: I don't know if this message got through the first time I sent it. If you're seeing it again, I'm sorry. Two questions: * What version of Tomcat? If it's less than 3.2 you should upgrade. * Are you running Tomcat stand-alone or behind a web server like Apache. If it

Servlet mapping problem

2001-01-03 Thread Marco Leal
Hi guys! I'm having some problems with servlet mapping in a servlet application. My 'web.xml' file looks like this: [...] servlet servlet-nameroom/servlet-name servlet-classmyapp.presentation.Room/servlet-class /servlet servlet-mapping servlet-nameroom/servlet-name