SOLVED! taglib-location not found?! need help?!

2002-07-10 Thread Leif Hanack
sorry dudes, i was to sleepy to distinguish between tdls and tlds:-)) thanks, leif -- To unsubscribe, e-mail: For additional commands, e-mail:

taglib-location not found?! need help?!

2002-07-10 Thread Leif Hanack
hello, i'm a newbie in taglibs and have a basic problem!! i have problems with my web.xml. it seems that it doesn't matter what i'm entering inside the taglib-location. everytime tomcat 403 telling me that he can not find the specified file. org.apache.jasper.JasperException: File "/WEB-INF/tl

RE: A JSTL problem...

2002-07-10 Thread Ben Ramsey
Carlos, I have the same problem as you. I'm running Tomcat 3.2.3, and I can't upgrade easily (at least not on my own because I'm not prolific in server maintenence) to 4.0.4. Be aware, though, that XTAGS will try to validate against DTDs. So, if an XML file you are parsing declares a DTD, then

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
I'm using tomcat 3.2.2 because my boss said so. But it's now working... at least with xtags. Now it's ok. Thanks a lot for the help. -Original Message- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 10 de Julho de 2002 19:39 To: Tag Libraries Users List Subject: RE: A J

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
That's correct. Just reference it as you normally would in the JSP <%@ taglib uri="http://java.sun.com/jstl/xml"; prefix="x" %> and you should be all set. -rl On Wed, 2002-07-10 at 12:41, Carlos Barroso wrote: > I understood Ryan. > That meens that i don't need to have an entry "" in my "web

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
Ok. Thanks to you all for the help. -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 10 de Julho de 2002 18:51 To: 'Tag Libraries Users List' Subject: RE: A JSTL problem... Well, then that's why it's not working. As both Ryan and I have said alrea

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
Tomcat 3.x is not JSP 1.2 compliant. In order to use JSTL, you need to have a JSP 1.2 compliant container, hence your issues with Tomcat 3.2.2. Please install the latest Tomcat 4.x and try again. On Wed, 2002-07-10 at 12:52, Carlos Barroso wrote: > no. > i'm using tomcat 3.2.2 > > > > ---

RE: A JSTL problem...

2002-07-10 Thread Martin Cooper
Well, then that's why it's not working. As both Ryan and I have said already, you'll need to use Tomcat 4.x if you want to use JSTL, because JSTL needs JSP 1.2, and Tomcat 3.x doesn't support that. -- Martin Cooper > -Original Message- > From: Carlos Barroso [mailto:[EMAIL PROTECTED]] >

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
no. i'm using tomcat 3.2.2 -Original Message- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 10 de Julho de 2002 19:46 To: Tag Libraries Users List Subject: RE: A JSTL problem... Are you using Tomcat 4.x? On Wed, 2002-07-10 at 12:48, Carlos Barroso wrote: > Sorry Ry

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
Are you using Tomcat 4.x? On Wed, 2002-07-10 at 12:48, Carlos Barroso wrote: > Sorry Ryan. > But if i don't put a reference in "web.xml" it keeps giving me: > > Unable to open taglibrary http://java.sun.com/jstl/xml : Could not locate > TLD http://java.sun.com/jstl/xml > > > > > -- > To unsu

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
Sorry Ryan. But if i don't put a reference in "web.xml" it keeps giving me: Unable to open taglibrary http://java.sun.com/jstl/xml : Could not locate TLD http://java.sun.com/jstl/xml -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
I understood Ryan. That meens that i don't need to have an entry "" in my "web.xml" file for each taglib that i use correct? -Original Message- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 10 de Julho de 2002 19:32 To: Tag Libraries Users List Subject: RE: A JS

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
Hi Ben. I did what you said and it gave me the error: Unable to open taglibrary http://jakarta.apache.org/taglibs/xml : /home/mike/myapp/WEB-INF/web.xml (No such file or directory) very similar to the error before... -Original Message- From: Ben Ramsey [mailto:[EMAIL PROTECTED]] Sent

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
You don't need to remove web.xml. You just don't need to arbitrarily drop x.tld in /WEB-INF. All of the relevant TLDs for JSTL are contained in standard.jar. Each TLD contains a element which contains the expected URL such as 'http://java.sun.com/jstl/xml', etc. If you drop this jar file int

RE: A JSTL problem...

2002-07-10 Thread Martin Cooper
That's because you're not using a JSP 1.2 container, as Ryan mentioned. Tomcat 3.x supports only JSP 1.1, so you'll need to move to Tomcat 4.x if you want to use JSTL. -- Martin Cooper > -Original Message- > From: Carlos Barroso [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 10, 200

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
Ok Ryan, But if I remove the "x.tld" and "web.xml" files it gives me the following error: Unable to open taglibrary http://java.sun.com/jstl/xml : /home/mike/myapp/WEB-INF/web.xml (No such file or directory) -Original Message- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: quarta-

RE: A JSTL problem...

2002-07-10 Thread Ben Ramsey
I point the uri to http://jakarta.apache.org/taglibs/xml and have received no problems. Try it and see, restart, and see what happens. Ben Ramsey Technical Director EUREKA! Interactive, Inc. 770-642-0390 www.eureka-interactive.com -Original Message- From: Ryan Lubke [mailto:[EMAIL PR

A JSTL desciptor problem...

2002-07-10 Thread Carlos Barroso
Hi again. I've installed the jakarta-taglibs-standard.tar.gz. I've put the contents of the "lib" directory in my /WEB-INF/lib, and put the "x.tld" in my /WEB-INF. In my JSP I put the following line: <%@ taglib uri="http://java.sun.com/jstl/xml"; prefix="x" %> I've created a "web.xml" with the fo

Re: A JSTL problem...

2002-07-10 Thread Ryan Lubke
Hi, JSTL requires a JSP 1.2 compliant container, which as far as I know, Tomcat 3.x is not. Try again with the latest Tomcat 4.x. Additionally, if standard.jar is in /WEB-INF/lib, you will not need to drop x.tld into into /WEB-INF. On Wed, 2002-07-10 at 12:00, Carlos Barroso wrote: > Hi ag

Re: Custom Tags inside JSTL tags.

2002-07-10 Thread Tim Ringwood
Just in case somebody else needs to know the resolution to my question I figure out my issue. I had in my doEndTag() part of my custom tag was a return of SKIP_BODY and not EVAL_PAGE. While I got the XML correctly it the SKIP_BODY make it not return the data to the JSTL tags. Thanks for all the

A JSTL problem...

2002-07-10 Thread Carlos Barroso
Hi again. I've installed the jakarta-taglibs-standard.tar.gz. I've put the contents of the "lib" directory in my /WEB-INF/lib, and put the "x.tld" in my /WEB-INF. In my JSP I put the following line: <%@ taglib uri="http://java.sun.com/jstl/xml"; prefix="x" %> I've created a "web.xml" with the fo

RE: EL and RT...

2002-07-10 Thread Carlos Barroso
Thanks Martin for the help. -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 10 de Julho de 2002 17:36 To: 'Tag Libraries Users List' Subject: RE: EL and RT... EL is the Expression Language, which is new for JSTL. RT is the RunTime expression mecha

RE: EL and RT...

2002-07-10 Thread Martin Cooper
EL is the Expression Language, which is new for JSTL. RT is the RunTime expression mechanism from JSP 1.x (i.e. things like <%= i++ %>). JSTL provides taglibs that work with both. In general, you'll probably want to use the EL, since it's cleaner and more flexible, and only use the RT tags if you

EL and RT...

2002-07-10 Thread Carlos Barroso
I've seen in some docs of taglib's, references to EL and RT? What are they and what are the diferences between them? Can someone please help me? -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Xtags problem...

2002-07-10 Thread Carlos Barroso
Thanks Shawn for the help. It really gave me a start to taglib's. -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Xtags problem...

2002-07-10 Thread Shawn Bayern
On Wed, 10 Jul 2002, Carlos Barroso wrote: > So it's better to use the Standard taglib to process a XML file > against a XSL file... instead of using the xtags library!? "Better" is subjective. It's certainly more standard, more widely supported, and probably ultimately more familiar to people

RE: Xtags problem...

2002-07-10 Thread Carlos Barroso
So it's better to use the Standard taglib to process a XML file against a XSL file... instead of using the xtags library!? -Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 10 de Julho de 2002 17:10 To: Tag Libraries Users List Subject: RE: Xtags probl

RE: XTAGS and DOCTYPE problems

2002-07-10 Thread Shawn Bayern
On Wed, 10 Jul 2002, Chen, Gin wrote: > Thanks to Shawn for pointing that out to me earlier. > BTW Shawn, it's july.. where's ur book?? i need it! hhehe. Heh. I'm told that the shipping date for the printed version is July 29. You can already preorder it at Amazon and other online

RE: Xtags problem...

2002-07-10 Thread Shawn Bayern
On Wed, 10 Jul 2002, Carlos Barroso wrote: > thanx. I'm new in taglibs. I'm a little confused with this. The > "Standard Taglib release 1.0" has a tag library for XML processing, > with URI: http://java.sun.com/jstl/xml and with a prefix: "x". There's > also the "xtags" library... do they work th

RE: XTAGS and DOCTYPE problems

2002-07-10 Thread Martin Cooper
> -Original Message- > From: Shawn Bayern [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 10, 2002 8:48 AM > To: Tag Libraries Users List > Subject: RE: XTAGS and DOCTYPE problems > > > On Wed, 10 Jul 2002, Ben Ramsey wrote: > > > My question: Can I use JSTL with Tomcat 3.2.3 (JSP

RE: XTAGS and DOCTYPE problems

2002-07-10 Thread Chen, Gin
Hi Ben, I am using libraries from the JSTL with Tomcat 3.2.3 and it works fine but u cant use the very cool feature of JSTL that allows you to reference things using $scope.variable. There must be other features you cant use either but I havent run into them yet. Thanks to Shawn fo

RE: Xtags problem...

2002-07-10 Thread Chen, Gin
No u dont have to. I use tag libs from the Standard release separately as needed in my projects with no problems. -Tim -Original Message- From: Carlos Barroso [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 11:42 AM To: '[EMAIL PROTECTED]' Subject: Xtags problem... Hi there. I

RE: Xtags problem...

2002-07-10 Thread Carlos Barroso
thanx. I'm new in taglibs. I'm a little confused with this. The "Standard Taglib release 1.0" has a tag library for XML processing, with URI: http://java.sun.com/jstl/xml and with a prefix: "x". There's also the "xtags" library... do they work the same way? Are they independent? The documentation

Re: Xtags problem...

2002-07-10 Thread Shawn Bayern
On Wed, 10 Jul 2002, Carlos Barroso wrote: > Hi there. > I want to use xtags in my web application. Do I need to install the > "Standard Taglib release 1.0" too? No, XTags is just a custom tag library from Jakarta Taglibs; you need not use JSTL with it. However, if you're using JSP 1.2, I recom

RE: XTAGS and DOCTYPE problems

2002-07-10 Thread Shawn Bayern
On Wed, 10 Jul 2002, Ben Ramsey wrote: > My question: Can I use JSTL with Tomcat 3.2.3 (JSP 1.1)? No, JSTL implementations require JSP 1.1. > If not, can you point me to a good, step-by-step tutorial to configure > Tomcat 4.0.4 with Apache 1.3.20 using mod_jk? The best I could find was this:

Re: Xtags problem...

2002-07-10 Thread Garrett Vlieger
You can simply use XTAGS alone. There is no need to install JSTL since these are two separate tag libraries. Garrett Vlieger Carlos Barroso wrote:Hi there. I want to use xtags in my web application. Do I need to install the "Standard Taglib release 1.0" too? -- To unsubscribe, e-mail: For a

Xtags problem...

2002-07-10 Thread Carlos Barroso
Hi there. I want to use xtags in my web application. Do I need to install the "Standard Taglib release 1.0" too? -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: XTAGS and DOCTYPE problems

2002-07-10 Thread Ben Ramsey
Shawn said: "As a supplemental bit of info, JSTL's tag does not validate against DTDs. So Ben, JSTL may suit you for this task." This concerns JSTL, though it doesn't sound so at first, so just run with it for a minute. As I've mentioned earlier, I'm running Tomcat 3.2.3, and I've not been abl

newbie: can't get started?! JasperException: File "/dcfaTagLib" not found

2002-07-10 Thread Leif Hanack
hello, i'm new to the taglib stuff. i want to use the jstl but need some special tags as well. so i tried to set up a simple tag sample but without success. here is what is have done so far: i'm using tomcat 403 i create a context 'dcfa' to link to my development build directory: inside

Re: stripping extra line feeds in choose tag

2002-07-10 Thread peter lin
Exactly! I had the same discussion with Kin-man Chung who wrote most of jasper2. The spec explicitly disallows the stripping of whitespace and CR's. To maintain conformance and optimize the readability of generated output, the spec should address these issues. Developers and users will never s