?? Can Taglib JARs be Global ??

2002-12-12 Thread Tony LaPaso
Hi, I've found something curious and was wondering if anyone had an explanation or comment. I'm using Tomcat v4.1.12 but this also happens on TC v4.1.16 beta. Here's the situation: I have several Taglib JARs that I would like to make available to *all* web applications (i.e., all "contexts"). In

?? Using Taglib JARs Across Multiple Contexts ??

2002-12-09 Thread Tony LaPaso
Hello all, Although I'm using Tomcat v4.1.12 with Apache's JSTL Taglib, this issue really applies to *all* taglibs, not just JSTL: I'm finding that if I have several webapps (i.e., several Contexts), all using JSTL, I need to replicate the taglib JARs (jstl.jar and standard.jar) to the "WEB-INF/l

Re: [ANN] Part 3 of my JSTL article at ONJava.com

2002-10-30 Thread Tony LaPaso
Hans, Does the article contain anything that's *not* in your book? - Original Message - From: "Hans Bergsten" <[EMAIL PROTECTED]> To: "A mailing list about Java Server Pages specification and reference" <[EMAIL PROTECTED]>; "Tag Libraries Developers List" <[EMAIL PROTECTED]>; "Tag Librar

?? My "Internal Server Error" is Ignored ??

2002-10-30 Thread Tony LaPaso
Hi all, I'm not sure if this falls more into JSP or servlet territory. I have a JSP that includes a servlet via: Within the servlet I detect a severe error (in a business rule) and I want to generate an HTTP 500 error like this: response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR)

Re: Basic jsp:useBean question

2002-10-29 Thread Tony LaPaso
Joel, Show us a *minimal* example of the page that includes the and the controller jsp -- "minimal" amount of code to illustrate the behavior. - Original Message - From: "Joel Carklin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 29, 2002 4:50 AM Subject: Basic jsp

?? ed Servlet Needs its Path Info ?? -- PART 3 -- OOps

2002-10-29 Thread Tony LaPaso
Sorry All -- It was my mistake. It works just fine.. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant

?? ed Servlet Needs its Path Info ?? -- PART 2

2002-10-29 Thread Tony LaPaso
This posting is more of an FYI Earlier I asked the question below. Hans kindly pointed out that the servlet spec (SRV.8.3.1) indicates the servlet included by the should have access to several request attributes with these names: javax.servlet.include.request_uri javax.servlet.include.conte

Re: ?? ed Servlet Needs its Path Info ??

2002-10-29 Thread Tony LaPaso
Perfect! Thank you - Original Message - From: "Hans Bergsten" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 29, 2002 12:36 PM Subject: Re: ?? ed Servlet Needs its Path Info ?? > Tony LaPaso wrote: > > Hello all, > > >

?? ed Servlet Needs its Path Info ??

2002-10-28 Thread Tony LaPaso
Hello all, May I ask a question? I have a servlet named "FormDispatcher" which I include from a JSP like this: What I *want* is for the FormDispatcher servlet to be able to access the "/abc/def" path info by calling "request.getPathInfo()". When the servlet calls "request.getPathInfo()", howe

Re: problem in jsp page rendering

2002-08-27 Thread Tony LaPaso
The only time I've seen this is when you use a after the response has been already been committed. Is this a possibility? - Original Message - From: "Narayanan, Prashanth (MED, TCS)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 26, 2002 2:56 PM Subject: problem in

?? JSP and request.getPathInfo() in Tomcat ??

2002-08-15 Thread Tony LaPaso
Hi all, I was hoping someone could explain something. I'm not sure if this is a Tomcat issue or a JSP issue. I'm using Tomcat v4.1.8 on Win 2k. It seems I cannot obtain the "extra path" information at the end of a URL from within a JSP. But, if I run the servlet that was generated from the JSP,

Re: Suggestion for JSP book

2002-08-09 Thread Tony LaPaso
Well, I would say the worst computer books, generally speaking, are the Wrox books. In the past they have been so full of errors that I don't even bother to open them anymore. When I see that big red cover with the faces, I ignore it. The very best book I've found is the Manning book: "Web Develo

??? Using JSPs to Send Not-Modified-Since Header ???

2002-06-04 Thread Tony LaPaso
Hi all, In looking at past posts, I'm afraid I know the horrible answer to this issue but I thought I'd ask just in case I missed anything. Let me start by saying I'm using Tomcat v4.0.4 beta 3. As you know, when a client (usually a web browser) has a cached version of a resource (usually a web

??? Newbie "TagExtraInfo.isValid()" Sanity Check ???

2001-06-09 Thread Tony LaPaso
Hello, I'm new to Taglibs and I wanted to verify my understanding about the TagExtraInfo.isValid() method. I have a validation rule that requires me to examine the *value* of an attribute on a custom tag. As a simple example, let's say I have this: If the "attrib" value is "xxx" I want the "i