Re: cannot get parameter value in action class passed using html:link

2006-10-04 Thread Antonio Petrelli
Hi Vinod Vinod Kumar ha scritto: Hi Antonio, Thanks for your response. 1. I am not using any filter and if i am not wrong, then tomcat 3.3.2 does support filters since it implements servlet 2.2 specs. Uh, right! Well i cannot know everything :-) I am not sure if paramters from

Re: cannot get parameter value in action class passed using html:link

2006-10-03 Thread Antonio Petrelli
Vinod Kumar ha scritto: Hi Antonio, When I Printed getQueryString in the action class using the below stmt System.out.println(request.getQueryString() = +request.getQueryString()); Result was request.getQueryString() = print=1 So it means, Query string has print parameter but

Re: cannot get parameter value in action class passed using html:link

2006-10-03 Thread Vinod Kumar
Hi Antonio, Thanks for your response. 1. I am not using any filter and if i am not wrong, then tomcat 3.3.2 does support filters since it implements servlet 2.2 specs. Other thing is that I am not using any ActionForm for this Action. My Action is below: action path=/print

Re: cannot get parameter value in action class passed using html:link

2006-10-02 Thread Antonio Petrelli
Vinod Kumar ha scritto: this is the way I try to get value in aciton class System.out.println(PRINT VALUE = +request.getParameter( print )); Sometime, the printable link looks like http://localhost:81/myapp/setup.do;jsessionid=xrlq86pj71?print=YES even if i trim it to

Re: cannot get parameter value in action class passed using html:link

2006-10-02 Thread Vinod Kumar
Hi Antonio, When I Printed getQueryString in the action class using the below stmt System.out.println(request.getQueryString() = +request.getQueryString()); Result was request.getQueryString() = print=1 So it means, Query string has print parameter but request.getParameter(print) is returning

RE: cannot get parameter value in action class passed using html:link

2006-10-02 Thread Vinod Kumar
] Sent: segunda-feira, 2 de Outubro de 2006 11:14 To: Struts Users Mailing List Subject: Re: cannot get parameter value in action class passed using html:link Vinod Kumar ha scritto: this is the way I try to get value in aciton class System.out.println(PRINT VALUE

cannot get parameter value in action class passed using html:link

2006-09-29 Thread Vinod Kumar
I have following in page definition:- tiles:insert page=layout-tiles.jsp flush=true tiles:put name=head value=head.jsp/ tiles:put name=top value=top.jsp/ tiles:put name=bottom value=bottom.jsp / tiles:put name=content value=login-body.jsp/ /tiles:insert In my