taglibs i/o or jstl core library

2004-02-04 Thread Chris Daly
hi i'm trying to make a url include within a page and was wondering which tag could pull in the url and display relative image links within the url ? cheers chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: taglibs i/o or jstl core library

2004-02-04 Thread Kris Schneider
In theory, you might be able to do this by setting the Content-Location header to match the resource you're importing. In practice, however, this doesn't seem to be too well supported: http://jigsaw.w3.org/HTTP/CL/ Have you tried imorting a resource that uses a base element to see if that works?

RE: taglibs i/o or jstl core library

2004-02-04 Thread Chris Daly
hi what i've done is imprt teh i/o tag library from http://jakarta.apache.org/taglibs/doc/io-doc/intro.htmland and am trying to use an existing include jsp to pull in the remote url and all relative image links using the io:request tag. I'm now looking at the jstl and url related actions and

Re: Announcing standard-1.1.0 and standard-1.0.5

2004-02-04 Thread Lorenzo Sicilia
Felipe Leme wrote: Fredrik, I temporarily fixed some of these files (as the official notes are automatically generated by the nightly build). Anyway, thanks for warning us about the issue. About 1.0.5 release In javadoc there is not xml tag. Is it an error? regards Lorenzo

jstl 1.0

2004-02-04 Thread Chris Daly
hi i've just downlaoded the above and i wish to deploy the url related actions related actions onto another server and app, and dont wish to copy everything - do i have to ? also where is teh jar file i copy to the WEB-INF/lib directory and which tld file do i use ? or should i just take

RE: taglibs i/o or jstl core library

2004-02-04 Thread Kris Schneider
I've never used the IO taglib so I can't comment on it's abilities. The quick test I performed with JSTL's c:import failed to do what I think you're asking for (even when setting the Content-Location header). If you have access to either the Amaya or Opera browsers (as pointed to in the link I

Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-04 Thread Aadi Deshpande
Hi, I'm tryin to use Tomcat 5 and the newly released JSTL 1.1 and I get the following error whenever I try to do a x:anything? I've gotten this same error under the Beta 1 running under Tomcat 5. Does anyone have any insight into why I would be getting this error? I thought the JSTL was tested

Re: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-04 Thread Kris Schneider
Try a nightly build of TC 5. See: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26611 And this recent thread: http://marc.theaimsgroup.com/?t=10754069598 Quoting Aadi Deshpande [EMAIL PROTECTED]: Hi, I'm tryin to use Tomcat 5 and the newly released JSTL 1.1 and I get the following

Re: jstl 1.0

2004-02-04 Thread Kris Schneider
If you don't need the XML-related tags, just grab jstl.jar and standard.jar. Otherwise, add jaxen-full.jar and saxpath.jar. The other JAR files (or their equivalents) are usually provided by your container and/or JVM. Quoting Chris Daly [EMAIL PROTECTED]: hi i've just downlaoded the above

Re: Difference between c.tld and c-rt.tld

2004-02-04 Thread Felipe Leme
On Monday 11 August 2003 12:23 pm, Narayan, Anand ANarayan-at-e-gatematrix.com |jakarta| wrote: I was under the impression that if we used th normal tags we could not use Java scriptlet code within the page. Is that correct? Or can we mix the two even when using the normal Not exactly. If you

Re: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-04 Thread Pierre Delisle
To make things easier, make sure you run Tomcat using J2SE 1.4.2. You can find the details at: http://jakarta.apache.org/taglibs/doc/standard-doc/standard/GettingStarted.html -- Pierre Aadi Deshpande wrote: Hi, I'm tryin to use Tomcat 5 and the newly released JSTL 1.1 and I get the

RE: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-04 Thread Jason . West
I tried the nightly build of TC 5 20040203. Now I get a javax.servlet.ServletException: javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: java.lang.IllegalStateException: can't declare any more prefixes in this context

RE: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-04 Thread Martin Cooper
I think this is what I was seeing when I was running JDK 1.4.1 instead of 1.4.2. I *thought* I was running 1.4.2, but it turned out that my path and my JAVA_HOME environment variable didn't both say the same thing... -- Martin Cooper On Wed, 4 Feb 2004 [EMAIL PROTECTED] wrote: I tried the