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

2006-10-03 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 html:link

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: Since I am just passi

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

2006-10-02 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 request.getP

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

2006-10-02 Thread Vinod Kumar
e- > From: Antonio Petrelli [mailto:[EMAIL PROTECTED] > > 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

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 return

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

2006-10-02 Thread David Pinho (Hexadecimal)
: 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 = > "+request.getParameter( "print" )); > > Sometime, the printable link looks lik

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 http://localhost:81/o