Re: Jsp mapping

2005-03-05 Thread Rahul Akolkar
This example explains as to make mapping filter on servlet: snip How to make mapping with JSP ? Have you tried url-pattern? (instead of servlet-name in the filter mapping) Since I'm all for precompilation, I don't see JSPs differently ;-)

Jsp mapping

2005-03-04 Thread Bogomolov Sergey
Hi all! This example explains as to make mapping filter on servlet: filter filter-nameSecureFilter/filter-name filter-classru.centernt.filter.SecureFilter/filter-class /filter filter-mapping filter-nameSecureFilter/filter-name

web.XML - JSP mapping ?

2001-08-26 Thread Frot
Hi, Also a bit off subject, but I need some mapping for JSP pages. I get the thing working for servlets fine, using servlet servlet-mapping. I dont seems to get it working for a JSP page. Could someone be so kind to define the web.xml stuff for following small setup : jsp page to be

Re: web.XML - JSP mapping ?

2001-08-26 Thread Craig R. McClanahan
On Sun, 26 Aug 2001, Frot wrote: Date: Sun, 26 Aug 2001 15:21:38 +0200 From: Frot [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED], [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: web.XML - JSP mapping ? Hi, Also a bit off subject, but I need some mapping for JSP pages. I get

Question regarding servlet/jsp mapping using uriworkermap.properties

2001-08-10 Thread Eric Wu
I have a question regarding mapping with uriworkermap.properties. We have Tomcat running with IIS and I would like to set things up so that IIS serves up static content (html files) leaving Tomcat to handle JSP and Struts. My question is this: if the directories holding the JSPs are structured

Re: jsp mapping

2001-07-26 Thread Craig R. McClanahan
On Thu, 12 Jul 2001, Kevin HaleBoyes wrote: First off, I'm running Tomcat 4b5 (standalone) on Linux RedHat 7.1. I've been looking at (and learning from) the Java Pet Store from Sun and have been writing some custom Taglibs for my application. I'm currently doing lists of things that use

RE: Problem with JSP mapping to subdirectory

2001-07-18 Thread Jann VanOver
Please look at Web.XML. You need TWO elements in Web.xml for each server mapping you want to set up. -Original Message-From: Renato Weiner [mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 18, 2001 3:35 PMTo: [EMAIL PROTECTED]Cc: [EMAIL PROTECTED]Subject: Problem with JSP

RE: Problem with JSP mapping to subdirectory

2001-07-18 Thread Jann VanOver
That should have said "servlet mapping" -Original Message-From: Jann VanOver Sent: Wednesday, July 18, 2001 3:37 PMTo: '[EMAIL PROTECTED]'Subject: RE: Problem with JSP mapping to subdirectory Please look at Web.XML. You need TWO elements in Web.xml for each

RE: Problem with JSP mapping to subdirectory

2001-07-18 Thread Sampige, Srinivas
done it in the past, and haven't had problems. --- thanks Srinivas -Original Message- From: Jann VanOver [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 3:39 PM To: '[EMAIL PROTECTED]' Subject: RE: Problem with JSP mapping to subdirectory That should have said servlet mapping

jsp mapping

2001-07-12 Thread Kevin HaleBoyes
First off, I'm running Tomcat 4b5 (standalone) on Linux RedHat 7.1. I've been looking at (and learning from) the Java Pet Store from Sun and have been writing some custom Taglibs for my application. I'm currently doing lists of things that use the NextFormTag and PrevFormTag extensions from a

RE: jsp mapping

2001-07-12 Thread Jann VanOver
Maybe I'm dense, but why don't you just put: action=/cust/listorders.jsp in your tag -Original Message- From: Kevin HaleBoyes [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 8:57 AM To: [EMAIL PROTECTED] Subject: jsp mapping First off, I'm running Tomcat 4b5 (standalone

RE: JSP mapping

2001-06-19 Thread Eitan Ben Noach
JSPs to Tomcat root directory, and then Tomcat, according to it's server.xml maps root files to c:\winnt ) All the best, Eitan -Original Message- From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 4:35 PM To: [EMAIL PROTECTED] Subject: Re: JSP mapping

Re: JSP mapping

2001-06-19 Thread Dmitri Colebatch
directory, and then Tomcat, according to it's server.xml maps root files to c:\winnt ) All the best, Eitan -Original Message- From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 4:35 PM To: [EMAIL PROTECTED] Subject: Re: JSP mapping Eitan, Yep

JSP mapping

2001-06-18 Thread Eitan Ben Noach
HI, I want to map JSPs called by browser at the http server root, like http://victoria.xx.yy/zz.jsp to be handled by JSP file that is located some were else then the default c:\jakarta-tomcat-3.2.3\webapps\root\zz.jsp, for example by c:\winnt\zz.jsp. I've succeeded on configuring Tomcat to

Re: JSP mapping

2001-06-18 Thread Dmitri Colebatch
Eitan, Are you running standalone or with a web server? Assuming you're running standalone, and that there's not much else you're using tomcat for, all you need to do is remove the /MyJspDirectory from the context path and it should work fine. cheesr dim Eitan Ben Noach wrote: HI, I

RE: JSP mapping

2001-06-18 Thread Eitan Ben Noach
To: [EMAIL PROTECTED] Subject: Re: JSP mapping Eitan, Are you running standalone or with a web server? Assuming you're running standalone, and that there's not much else you're using tomcat for, all you need to do is remove the /MyJspDirectory from the context path and it should work fine

Re: JSP mapping

2001-06-18 Thread Dmitri Colebatch
] Subject: Re: JSP mapping Eitan, Are you running standalone or with a web server? Assuming you're running standalone, and that there's not much else you're using tomcat for, all you need to do is remove the /MyJspDirectory from the context path and it should work fine. cheesr

Need help for servlet and jsp mapping

2001-01-28 Thread Gunawan Tanudy
HI.. Can somebody help me , i got really frustrated regarding mapping servlet and jsp file to tomcat. I use Apache+ tomcat. the example files run well. i have made the context path in server.xml like the following Context path="/myserver" docBase="webapps/myserver"

Servlet and JSP mapping in Tomcat + Apache

2000-12-21 Thread Joseph Wong
Hi, I want to use Apache + Tomcat to develop JSP and Servlet programs, where Apache serves HTML pages and Tomcat serves JSP and Servlet. How to make mappings for JSP and Srvlet such that: 1) http://host-name/jsp/*.jsp -- go to jsp directory and run jsp 2)

Re: Servlet and JSP mapping in Tomcat + Apache

2000-12-21 Thread Jeffrey Miller
You'll have to setup mod_jk to let Tomcat and Apache communicate - there is a nice howto that will help you - Original Message - From: "Joseph Wong" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 21, 2000 5:24 AM Subject: Servlet and JSP mapping in Tomcat + Ap

Re: Servlet and JSP mapping in Tomcat + Apache

2000-12-21 Thread Joseph Wong
Is that the only way to achieve that What is mod_jk by the way??? From: "Jeffrey Miller" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Servlet and JSP mapping in Tomcat + Apache Date: Thu, 21 Dec 2000 07:25:50 -0500 You'll have to setup mod

RE: Servlet and JSP mapping in Tomcat + Apache

2000-12-21 Thread Dave Newton
Is that the only way to achieve that As far as I know, unless you want to use the older, unrecommended mod_jserv. What is mod_jk by the way??? It's an apache module that communicates between apache and tomcat, like you asked. Dave