RE: servlet mappings

2003-12-16 Thread Shapira, Yoav
Howdy, Not in a portable manner. It's not even easy if you're willing to have highly tomcat-specific code. Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Carlos Pereira [mailto:[EMAIL PROTECTED] >Sent: Tuesday, December 16, 2003 5:30 AM >To: Tomcat Users List >Subje

Re: servlet mappings and security constraints withj_security_check

2003-10-13 Thread Matthew Do
How do I delete my name from Tomcat use list? Because I am trying use TOMCAT but it does not work well for me at this time. Have a good day. Matthew Do Seattle City Light [EMAIL PROTECTED] (206) 733 - 9022 >>> [EMAIL PROTECTED] 10/13/03 09:29AM >>> How do I delete my name from Tomcat use list

Re: servlet mappings and security constraints with j_security_check

2003-10-13 Thread Matthew Do
How do I delete my name from Tomcat use list? Because I am trying use TOMCAT but it does not work well for me at this time. Have a good day. Matthew Do Seattle City Light [EMAIL PROTECTED] (206) 733 - 9022 >>> [EMAIL PROTECTED] 10/13/03 09:26AM >>> I am getting the familiar status 400 - invali

RE: Servlet mappings?

2003-09-04 Thread Yoav Shapira
Hey, Mike's suggestion is good. A purer approach is possible with tomcat 5, because the 2.4 servlet spec allows for a servlet to be mapped as a welcome-file. Yoav Shapira On Wed, 3 Sep 2003, Mike Cherichetti (Renegade Internet) wrote: > I don't think this can be done with mappings. You can put

Re: Servlet mappings?

2003-09-03 Thread Bill Barker
o "Tomcat Users List" > > > To: "Tomcat Users List" <[EMAIL PROTECTED]> > cc: > Subject:RE: Servlet mappings? > > > I don't think this can be done with mappings. You can put an index.jsp > file > with on

RE: Servlet mappings?

2003-09-03 Thread JStanczak
PROTECTED]> 09/03/2003 08:11 PM Please respond to "Tomcat Users List" To: "Tomcat Users List" <[EMAIL PROTECTED]> cc: Subject:RE: Servlet mappings? I don't think this can be done with mappings. You can put an index.jsp file

RE: Servlet mappings?

2003-09-03 Thread Mike Cherichetti \(Renegade Internet\)
I don't think this can be done with mappings. You can put an index.jsp file with only a forward/redirect call in it to transfer control to your servlet. I've done this before, seems to work quite well. Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednes

Re: servlet mappings

2003-09-03 Thread Yoav Shapira
Howdy, > It used to be that servlet mapping was straight-forward and now it seems to > be obfuscated. For example I want the url They haven't really changed in a long long time ;) > ://Form > This used to work and now it doesn't; Why ! > > I doubt this used to work: review the

RE: servlet mappings

2003-09-03 Thread Roehl, Dan
Thanks!! -Original Message- From: Schalk [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 4:45 PM To: 'Tomcat Users List' Subject: RE: servlet mappings If you want to read a great article on web.xml check out: http://developer.java.sun.com/developer/Books/javas

RE: servlet mappings

2003-09-03 Thread Schalk
email:[EMAIL PROTECTED] web: www.volume4.co.za :: -Original Message- :: From: Roehl, Dan [mailto:[EMAIL PROTECTED] :: Sent: Wednesday, September 03, 2003 9:21 PM :: To: '[EMAIL PROTECTED]' :: Subject: Re: servlet mappings :: :: It used to be that servlet mapping was straight-forwa

Re: servlet mappings

2003-09-03 Thread Roehl, Dan
It used to be that servlet mapping was straight-forward and now it seems to be obfuscated. For example I want the url ://Form Here is my web.xml file from my webapp\aeform\WEB-INF http://java.sun.com/dtd/web-app_2_3.dtd";> aeform AE form controller.

Re: Servlet Mappings and what am I doing wrong.

2000-12-13 Thread Andrew Oliver
e all dwf file are > handled by NetSite servlet. > > Bye. > - Original Message - > From: "Etienne Baert (SPS Office)" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, December 13, 2000 4:14 PM > Subject: RE: Servlet Mappings and

Re: Servlet Mappings and what am I doing wrong.

2000-12-13 Thread Pier Paolo Bortone
Ok. Andy, I send you my web.xml that could be help you, where all dwf file are handled by NetSite servlet. Bye. - Original Message - From: "Etienne Baert (SPS Office)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 13, 2000 4:14 PM Subject

Re: Servlet Mappings and what am I doing wrong.

2000-12-13 Thread Matt Goss
Andrew, What you are doing won't work correctly on Tomcat. Apparently the * isn't a valid wildcard according to the servlet specification. instead, map your servlet to a specific filename like dosomething.do and then add information to the end of the URL to tell the servlet what page to forward to

RE: Servlet Mappings and what am I doing wrong.

2000-12-13 Thread Etienne Baert \(SPS Office\)
Hi Andy, I think your problem comes because you are putting directory information into the url-mapping value in web.xml : you wrote : /myorg.com/*.msp you should write : *.msp Your path to your application (context) should appear into the server.xml under the conf folder : Hope this helps,

Re: Servlet Mappings and what am I doing wrong.

2000-12-13 Thread Andrew Oliver
Apache + mod_jk. I'm actually trying it both standalone and normal (by trying on 8080 and trying on 80, but neither work). -Andy --- Pier Paolo Bortone <[EMAIL PROTECTED]> wrote: > How are you using tomcat? Standalone or with Apache > + mod_jk? > > There is a little difference. > - Origin

Re: Servlet Mappings and what am I doing wrong.

2000-12-13 Thread Pier Paolo Bortone
How are you using tomcat? Standalone or with Apache + mod_jk?   There is a little difference. - Original Message - From: Andrew Oliver To: [EMAIL PROTECTED] Sent: Wednesday, December 13, 2000 3:42 PM Subject: Servlet Mappings and what am I doing wrong. I have

Re: servlet mappings???

2000-11-07 Thread Matt Goss
h Kurt Bernhard Pruenner wrote: > Matt Goss wrote: > > On second thought... > > when requesting an html file it routed to the servlet (which popped up a > > login screen) but when the servlet tried to forward to the html file it > > aparently got caught in a recursive error of some kind

Re: servlet mappings???

2000-11-06 Thread Kurt Bernhard Pruenner
Matt Goss wrote: > On second thought... > when requesting an html file it routed to the servlet (which popped up a > login screen) but when the servlet tried to forward to the html file it > aparently got caught in a recursive error of some kind and just hung. Then I > noticed a huge stack trac

Re: servlet mappings???

2000-11-06 Thread Matt Goss
On second thought... when requesting an html file it routed to the servlet (which popped up a login screen) but when the servlet tried to forward to the html file it aparently got caught in a recursive error of some kind and just hung. Then I noticed a huge stack trace dumping out onto the screen

Re: servlet mappings???

2000-11-06 Thread Matt Goss
Thanks Kurt, That works great for any (.html) files except .jsp and servlets... why would that be??? Matt Kurt Bernhard Pruenner wrote: > Matt Goss wrote: > > > > router > > /* > > > > > > the idea is that I should be able to request the file test.jsp and have > > the router servlet pi

RE: servlet mappings???

2000-11-03 Thread Kenneth R . Kress
If you have everything correct, the re-direction should work when you use port 8080, but fail on port 80 because Apache doesn't know about the change. You can tell Apache in either or two ways as described below: Take a look at: http://www.jguru.com/jguru/faq/view.jsp?EID=140877 for a solution

RE: servlet mappings???

2000-11-03 Thread Renee Petris
I've done the same thing my self. What you have below looks okay. Are you sure the servlet class name is right? Including package name and capitalization? Can you directly access the servlet? Do you have other mappings to /* or for the servlet? Even just: router /router If you have confl

Re: servlet mappings???

2000-11-03 Thread Kurt Bernhard Pruenner
Matt Goss wrote: > > router > /* > > > the idea is that I should be able to request the file test.jsp and have > the router servlet pick up the request (to test for a login)...but the > servlet never gets the request... the test.jsp page just comes right > up gr... I had a simi