Re: xml taglib (import --> IO error)

2002-03-20 Thread RAYMOND Romain
I use xml taglib which really great to manipulate xslt. But I have a path problem : Transform taglib is correctly applies, althought inside my xslt I need to import others xslt ... (which are in the same folder so imported like this "import="bob.xslt" ...) Tomcat returns an IO error indicating t

RE: Scrape

2002-03-20 Thread Peter Gales
Thanks but.. Last nights build jakarta-taglibs-scrape-20020320.zip is an empty archive. -Original Message- From: Renick, Garrel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 10:43 AM To: [EMAIL PROTECTED] Subject: RE: Scrape Peter, I know the developer that made the

RE: Scrape

2002-03-20 Thread Renick, Garrel
Peter, I know the developer that made the scrape taglib and forwarded your messages to him. He told me that you should get the newest taglib from the nightly build generated last night. He fixed a problem where the complete contents of the scraped page may not be stored properly due to miscal

Re: ${x}

2002-03-20 Thread Pedro Diaz
Look at http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html Hope that helps. Suryanarayana Murthy wrote: > Hi all, > Could any one please tell me how can I use JSTL in my projects. I read that > JSTL is still in development phase. If I would like to use JSTL for > production developme

Re: ${x}

2002-03-20 Thread Shawn Bayern
On Wed, 20 Mar 2002, Suryanarayana Murthy wrote: > Could any one please tell me how can I use JSTL in my projects. I read > that JSTL is still in development phase. If I would like to use JSTL > for production development, can I do that? and also how to test JSTL > tag libraries? Plesae tell me t

Re: ${x}

2002-03-20 Thread Shawn Bayern
On Wed, 20 Mar 2002, John Baker wrote: > When ${x} is passed to a tag, does the tag figure out what it means or > does the variable get decoded and passed to the tag? In JSP 1.2, the tag handler interprets it itself. The expectation is that under JSP 1.3, the container will do so. > If so, I'm

Re: Argh :)

2002-03-20 Thread Shawn Bayern
In JSP 1.2, you can't automatically use the JSTL expression language in your own tags. You'll need to add support for that yourself by calling the JSTL expression evaluator. As has come up on this list before, we don't currently provide instructions for doing this because the final interface is

Re: ${x}

2002-03-20 Thread Suryanarayana Murthy
Hi all, Could any one please tell me how can I use JSTL in my projects. I read that JSTL is still in development phase. If I would like to use JSTL for production development, can I do that? and also how to test JSTL tag libraries? Plesae tell me the procedure. Do I need to download any jar files

${x}

2002-03-20 Thread John Baker
When ${x} is passed to a tag, does the tag figure out what it means or does the variable get decoded and passed to the tag? Ie in my previous example, where I combined a just pass the String ${var} to my own tag? If so, I'm sadly beginning to conclude that there seems no easy method of mixin

Re: xml taglib and standard-examples.war generating error

2002-03-20 Thread RAYMOND Romain
I have tried updating XML-support libraries using the last JAXP 1.1 (xalan, xerces and crimson.jar) but the error is the same, and it seems to be (for my webapp and the standard-examples.war) as you say just a library problem or perhaps configuration ... Shawn Bayern a écrit : > > This act

Re: xml taglib and standard-examples.war generating error

2002-03-20 Thread Shawn Bayern
This actually doesn't look like a TransformerConfigurationException, but (because of the slashes) a ClassNotFoundError pointing to TransformerConfigurationException. You may need to update your container's XML-support libraries. -- Shawn Bayern Author, "JSP Standard Tag Library" http://www.jst

Re: xml taglib and standard-examples.war generating error

2002-03-20 Thread RAYMOND Romain
exact error is " InsertTag:doEndTag caught: javax.servlet.ServletException: javax/xml/transform/TransformerConfigurationException " > > hello, > > I am trying to use JSTL xml taglib to apply xsl to xml and i get an > exception. > So I have tried to look at standard-examples.war but all the xml

xml taglib and standard-examples.war generating error

2002-03-20 Thread RAYMOND Romain
hello, I am trying to use JSTL xml taglib to apply xsl to xml and i get an exception. So I have tried to look at standard-examples.war but all the xml examples (and a lot of the others) throws an exception too ? I use TC 4.0.3 (on Windows2000) and I have no problem using c.tld in my webapp, is

Re: JSTL EL support for header?

2002-03-20 Thread Shawn Bayern
On Wed, 20 Mar 2002, peter lin wrote: > I read through the JSTL spec and grepped "org.apachelang.jstl" to > see if it has any calls to request.getHeader(string) and noticed JSTL > EL does not support request header. It'll be added. In general, things like headers might ideally be retrieved

Argh :)

2002-03-20 Thread John Baker
Argh, this is driving me nuts. Consider this: () Now you see the item true true So I'm assuming rtexprvalue == true means I can do this, but it keeps interpreting ${items} as a St

Re: JSTL EL support for header?

2002-03-20 Thread peter lin
The closest thing I can think of to access request header values is , but [] are used to access maps. Request.getHeaders() returns an Emueration, so it fails like it's supposed to. Thanks to shawn's fix yesterday to JSTL XML tags, i can use to do browser detection. It would be nice if JSTL EL a

JSTL EL support for header?

2002-03-20 Thread peter lin
I read through the JSTL spec and grepped "org.apachelang.jstl" to see if it has any calls to request.getHeader(string) and noticed JSTL EL does not support request header. -- To unsubscribe, e-mail: For additional commands, e-mail: