Re: JSTL & Struts

2002-04-05 Thread Jeff Ling
Hi Dave, Thanks for the response. Here is exception: 2002-04-05 16:57:09 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception java.lang.IllegalStateException: Cannot forward after response has been committed at org.apache.catalina.core.ApplicationDispatcher.doForward(App

Re: Antw: RE: Accessing JSP scoped Variables from within Tags

2002-04-05 Thread TIMO EINSIEDLER-BURGER
thanks your help... at least i know now that it should work. so i guess i will have to check my libraries i am using... cheers timo >>> [EMAIL PROTECTED] 05.04.2002 18.01 Uhr >>> On Fri, 5 Apr 2002, TIMO EINSIEDLER-BURGER wrote: > the printout is: > > http://intern.masterna.din.de/sixcms/det

Re: Antw: RE: Accessing JSP scoped Variables from within Tags

2002-04-05 Thread Shawn Bayern
On Fri, 5 Apr 2002, TIMO EINSIEDLER-BURGER wrote: > the printout is: > > http://intern.masterna.din.de/sixcms/detail.php?id=%24%7Bparam.id%7D > > seems rather strange to me, do you know more ? Yes, that doesn't look right; in fact, what's happening is the literal value in the 'value' attribut

Re: string upperCase tag

2002-04-05 Thread Henri Yandell
Commited to cvs. Should go into tonights nightly build. Hen -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Antw: RE: Accessing JSP scoped Variables from within Tags

2002-04-05 Thread TIMO EINSIEDLER-BURGER
the printout is: http://intern.masterna.din.de/sixcms/detail.php?id=%24%7Bparam.id%7D seems rather strange to me, do you know more ? thanks timo >>> [EMAIL PROTECTED] 05.04.2002 17.51 Uhr >>> Is it possible that the target page isn't set up to take query parameters (versus request parameters

Re: Antw: RE: Accessing JSP scoped Variables from within Tags

2002-04-05 Thread Shawn Bayern
Is it possible that the target page isn't set up to take query parameters (versus request parameters passed in a POSTed body)? The isomorphism between the two isn't universal (although it is indeed common). The tag, with , only sends query-string parameters and only uses the HTTP GET method. W

Re: string upperCase tag

2002-04-05 Thread Henri Yandell
Thanks, just realised this while looking at Geary's book. He has a nice Table 2-1 which explains this :) Changing to EVAL_PAGE. I believe the reason for it is that initially I had a doStartTag before I realised that wouldn't work right. JSP Crapness on my side :( Will cvs commit asap. Hen On F

Re: string upperCase tag

2002-04-05 Thread Shawn Bayern
On Fri, 5 Apr 2002, Henri Yandell wrote: > Ack. This would be utterly my fault. Don't worry - it's a common thing to do! And it's also easy to miss, since Tomcat's generated code happens to be more lenient with this particular error than some other containers'. > I assume that it is the second

Re: Antw: RE: Accessing JSP scoped Variables from within Tags

2002-04-05 Thread TIMO EINSIEDLER-BURGER
Hey, well i know cause i tried. Here is the exact jsp-code: <%@ taglib uri="http://java.sun.com/jstl/ea/core"; prefix="c" %> <% String idd = new String(request.getParameter("id")); out.println("id = " + idd); %> http://

Re: string upperCase tag

2002-04-05 Thread Henri Yandell
Ack. This would be utterly my fault. I assume that it is the second SKIP_BODY which is the bad one and not the first one Shawn? Will fix asap [on EST so work may stop me getting it in before I get home, it should be fixed in time for the nightly build]. Sorry Andrea, Hen On Fri, 5 Apr 2002, S

Re: Antw: RE: Accessing JSP scoped Variables from within Tags

2002-04-05 Thread David M. Karr
> "TIMO" == TIMO EINSIEDLER-BURGER <[EMAIL PROTECTED]> writes: TIMO> Sorry, i maybe did not tell it right ... i want to get a request.param from the original called jsp and pass it to the imported page ... example below did not solve that !?!? TIMO> thanks again timo [EMAI

Re: string upperCase tag

2002-04-05 Thread Shawn Bayern
I took a quick look, and this particular bug is in the String taglib, in the org.apache.taglibs.string.AbstractStringTag.doEndTag() method; it is illegally returning SKIP_BODY. Andrea, I suggest you file a bug report in Bugzilla with the full stack trace. -- Shawn Bayern Author, "JSP Standard T

string upperCase tag

2002-04-05 Thread Andrea Grittini
Hello all, I'm using String tag libraries (built 4 april) togheter with JSTL to perform an uppercase of a formatted date string, like in this example: The result is that after formatting my date in the web page appear an exception as follow: ( I got the same error when formatting a string

Accessing JSP scoped Variables from within Tags

2002-04-05 Thread TIMO EINSIEDLER-BURGER
Hello, maybe I am missing something, but I do not know how to access a request.parameter from within the import tag ?!? here is what i want to do: <%@ taglib uri="http://java.sun.com/jstl/ea/core"; prefix="c" %> thanks for your help :-> -- To unsubscri