RE: html:link action - how to append query string

2004-02-27 Thread Leticia Golubov
pend query string Have you tried ? --- Leticia Golubov <[EMAIL PROTECTED]> wrote: > I just don't understand why the 3rd option doesn't work for me... > > I've tried all possible variations of it but I just can't seem to be able > to > parse > <%val

RE: html:link action - how to append query string

2004-02-27 Thread Hubert Rabago
Have you tried ? --- Leticia Golubov <[EMAIL PROTECTED]> wrote: > I just don't understand why the 3rd option doesn't work for me... > > I've tried all possible variations of it but I just can't seem to be able > to > parse > <%value%> to

RE: html:link action - how to append query string

2004-02-27 Thread Leticia Golubov
I just don't understand why the 3rd option doesn't work for me... I've tried all possible variations of it but I just can't seem to be able to parse <%value%> to the query string... does anybody know why? so doesn't work nor does mailto:[EMAIL PROTECTED] Sent: 27

RE: html:link action - how to append query string

2004-02-27 Thread Leticia Golubov
7;Struts Users Mailing List' Subject: RE: html:link action - how to append query string You have I think three choices, in preferred order: 1. Use the paramName, paramScope, and paramProperty attributes of (see http://jakarta.apache.org/struts/userGuide/struts-html.html#link) This may n

RE: html:link action - how to append query string

2004-02-27 Thread Paul, R. Chip
x27;t know. 2. Use Struts-EL and add ${value} into your link string 3. mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 9:50 AM To: Struts User Mailing List Subject: html:link action - how to append query string I have a simple question, for a change... :) Given <% String valu

RE: html:link action - how to append query string

2004-02-27 Thread Tomeu Vizoso
[mailto:[EMAIL PROTECTED] Enviada: sexta-feira, 27 de Fevereiro de 2004 15:50 Para: Struts User Mailing List Assunto: html:link action - how to append query string I have a simple question, for a change... :) Given <% String value="some Value" %> and how do I append the jav

html:link action - how to append query string

2004-02-27 Thread Leticia Golubov
I have a simple question, for a change... :) Given <% String value="some Value" %> and how do I append the java var 'value' to the end of the action? If I hardcode it, it works and the behaviour is as expected, i.e.: Note I have tried the following and failed: in this instance... -

how to add query string

2004-02-24 Thread Jitender Kumar C
How can I pass a query string when I click on a link. I am using org.apache.struts.actions.DispatchAction as my action class(inherited). When I click on the link some text must be added dynamically to the request. I would be happy if I have a simple example. Thanks in advance

Re: Query String for tiles

2004-02-07 Thread Wayne Kidd
wrote: typo in my previous email. should have been.. -Original Message- From: Gopalakrishnan, Jayesh Sent: Friday, February 06, 2004 3:47 PM To: Struts Users Mailing List Subject: RE: Query String for tiles You could create an forward-action for the JSP. And modify the in your action

RE: Query String for tiles

2004-02-06 Thread Gopalakrishnan, Jayesh
typo in my previous email. should have been.. -Original Message- From: Gopalakrishnan, Jayesh Sent: Friday, February 06, 2004 3:47 PM To: Struts Users Mailing List Subject: RE: Query String for tiles You could create an forward-action for the JSP. And modify the in your action

RE: Query String for tiles

2004-02-06 Thread Gopalakrishnan, Jayesh
2004 3:42 PM To: [EMAIL PROTECTED] Subject: Re: Query String for tiles There is no include anywhere in my app. I am just combining tiles (jspf is the name of fragments of jsp pages)to build up the page. Top level of the page is a .jsp with a bunch of tiles:insert tags filling out the cells

Re: Query String for tiles

2004-02-06 Thread Wayne Kidd
So, do you have any ideas? Wayne Anand Patil wrote: Oh ok ... I am sorry, I misunderstood ur requirement. Anand -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Wayne Kidd Sent: Friday, February 06, 2004 3:42 PM To: [EMAIL PROTECTED] Subject: Re: Query String for

RE: Query String for tiles

2004-02-06 Thread Anand Patil
Oh ok ... I am sorry, I misunderstood ur requirement. Anand -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Wayne Kidd Sent: Friday, February 06, 2004 3:42 PM To: [EMAIL PROTECTED] Subject: Re: Query String for tiles There is no include anywhere in my app. I am

Re: Query String for tiles

2004-02-06 Thread Wayne Kidd
There is no include anywhere in my app. I am just combining tiles (jspf is the name of fragments of jsp pages)to build up the page. Top level of the page is a .jsp with a bunch of tiles:insert tags filling out the cells of a table. I just want to dynamically build a query string for the top

RE: Query String for tiles

2004-02-06 Thread Anand Patil
f Of Wayne Kidd Sent: Friday, February 06, 2004 1:24 PM To: [EMAIL PROTECTED] Subject: Re: Query String for tiles If I were using a straight action, I would simply get the path from my ActionForward subclass and append the query string to it. This seems ponderous for placing a parameter in th

Re: Query String for tiles

2004-02-06 Thread Wayne Kidd
If I were using a straight action, I would simply get the path from my ActionForward subclass and append the query string to it. This seems ponderous for placing a parameter in the url. Is there any other way? Wayne Anand Patil wrote: I assume you want to pass the query string "rem

RE: Query String for tiles

2004-02-06 Thread Anand Patil
I assume you want to pass the query string "remember=test001" to "/pages/time_inputeffort_body_nested.jspf". One way I can think of is put the "remember=test001" as a request attribute in the logic of com.rdlogic.struts.control.LoginAction. try reading the attri

Query String for tiles

2004-02-06 Thread Wayne Kidd
Is it possible to attach a query string to a tiles forward. my struts-config.xml has an entry like My Tiles-defs.xml has an entry like I want the net result of forward "startapp" to have a query string like "?remember=test001" I want the remember to be dynamica

Like to use html-el:link to add query string params

2003-10-30 Thread Jim Kennedy
Why doesn't this work Rent The implicit param var is not found in any scope. Seems like this should work. Doing something wrong here. What's the best way to apply existing query string Plus one param. thanks

Re: Accessing query string parameter

2003-03-28 Thread julian green
Try this String productName = request.getParameter("reportType"); Julian Pat Young wrote: I need to be able to access a parameter from a query string. My url looks like... http://localhost:8080/myApp/reports/summaryReport.jsp?reportType=print I need to be able to access the

Re: Accessing query string parameter

2003-03-28 Thread James Mitchell
On Fri, 2003-03-28 at 10:57, Pat Young wrote: > I need to be able to access a parameter from a query > string. > > My url looks like... > http://localhost:8080/myApp/reports/summaryReport.jsp?reportType=print > > I need to be able to access the reportType parameter >

Accessing query string parameter

2003-03-28 Thread Pat Young
I need to be able to access a parameter from a query string. My url looks like... http://localhost:8080/myApp/reports/summaryReport.jsp?reportType=print I need to be able to access the reportType parameter from this URL. What is the best way to do this? Pat Young

RE: Using query string in struts-menu entry

2003-03-26 Thread Richard Mixon
ent: Wednesday, March 26, 2003 1:49 AM To: 'Struts Users Mailing List' Subject: Re: Using query string in struts-menu entry The value for the page attribute is prepended with the context path and is used literally in defining the link location when rendering the menu. What the behavio

RE: Using query string in struts-menu entry

2003-03-26 Thread Edgar Dollin
page="/config/StatusAction.do?method=inquire"/> > toolTip="View/maintain status." >page="/config/switchStatusAction.do"/> > > > > The first menu item is really what I want to use (with the > query

Re: Using query string in struts-menu entry

2003-03-26 Thread Scott Sayles
page="/config/StatusAction.do?method=inquire"/> > toolTip="View/maintain status." >page="/config/switchStatusAction.do"/> > > > > The first menu item is really what I want to use (with the query string > "

Using query string in struts-menu entry

2003-03-25 Thread Richard Mixon
I've been trying to use the following menu entries with no luck: The first menu item is really what I want to use (with the query string "method=inquire"). It does not seem to work at all. If I use the second method (just a simple ForwardAction that forw

forwards with appending query string

2003-03-19 Thread Stephen Smithstone
in my jsp page im usually calling Link is there something i can along the same lines with the either using the forward or href attribute Ta Stephen - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: tag - multiple query string params

2002-10-16 Thread Developer
Try this: Tasks you may have to change the &month to & month. - Original Message - From: "Don Najd" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 16, 2002 6:49 PM Subject: tag - multiple query string params > Tasks >

RE: tag - multiple query string params

2002-10-16 Thread Karr, David
> -Original Message- > From: Don Najd [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 16, 2002 3:50 PM > To: [EMAIL PROTECTED] > Subject: tag - multiple query string params > > Tasks > > in a tag like this on.. how can I add the equvilent o

tag - multiple query string params

2002-10-16 Thread Don Najd
Tasks in a tag like this on.. how can I add the equvilent of: Tas ks the tag wont let me embed <%=statments%> like the anchor tag does? Thanks, Don -- To unsubscribe, e-mail: For additional commands, e-mail:

query string with more then one param in struts-config.xml

2002-08-20 Thread Sriram Nookala
I have the following forward within an action in struts-config.xml: However tomcat doesn't seem to like it, so I changed it to: This however doesn't seem to do the right forward. How do I have a query string with more than param in struts-config.xml? thanks, sriram -- To u

RE: how to render query string in html:link

2002-07-05 Thread Joe Germuska
At 9:57 AM -0700 2002/07/05, Billy Ng wrote: >It is because I need get the parameter data from a bean. I have >tried something like: > > > >but it won't work. Some said I need to use the param* attributes. >I know it is easy for 1 parameter, but I don't know how to use it >with multiple parame

RE: how to render query string in html:link

2002-07-05 Thread Billy Ng
olz, Keith (corp-staff) USX" <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> >Subject: RE: how to render query string in html:link >Date: Fri, 5 Jul 20

RE: how to render query string in html:link

2002-07-05 Thread Kamholz, Keith (corp-staff) USX
Hey, Why don't you just use the regular html synatx? ~ Keith http://www.buffalo.edu/~kkamholz -Original Message- From: Billy Ng [mailto:[EMAIL PROTECTED]] Sent: Friday, July 05, 2002 12:36 PM To: [EMAIL PROTECTED] Subject: how to render query string in html:link Hi folks,

how to render query string in html:link

2002-07-05 Thread Billy Ng
Hi folks, Would anybody please provide me some sample code for how to make a link with multiple parameters in the href's url with using tag. Thanks in advance! Billy Ng _ Chat with friends online, try MSN Messenger: http://mes

RE: query string

2002-07-02 Thread Martin Cooper
just an expression, albeit a concatenation of two string values, and no longer mixes an expression and a literal. -- Martin Cooper > -Original Message- > From: Billy Ng [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 02, 2002 12:56 AM > To: [EMAIL PROTECTED] > Subjec

Re: query string

2002-07-02 Thread Duke Ronlund
ver, it becomes > > Product 1 > > What did I do wrong? What is the right way to put the query string to > html:link tag? > > Thanks! > > Billy Ng > > > > _ > Chat with friends online, try MSN

RE: query string

2002-07-02 Thread fabrice dewasmes
lly Ng [mailto:[EMAIL PROTECTED]] > Envoyé : mardi 2 juillet 2002 09:56 > À : [EMAIL PROTECTED] > Objet : query string > > > I try to use the html:link tag > > Product > 1 > > to render the link like > > Product 1 > > However, it becomes > > Product 1

query string

2002-07-02 Thread Billy Ng
I try to use the html:link tag Product 1 to render the link like Product 1 However, it becomes Product 1 What did I do wrong? What is the right way to put the query string to html:link tag? Thanks! Billy Ng _ Chat with

Re: Argument for redirects (was Adding query string to redirect w/in an action)

2002-06-11 Thread Roy Truelove
proach toward design (?) I'd like to know how most people handle situations like the one above. If you've gotten here, thanks for reading all of this :) -Roy > > > -Message d'origine- > > De : Arik Levin ( Tikal ) [mailto:[EMAIL PROTECTED]] > >

RE : Adding query string to redirect w/in an action

2002-06-10 Thread Alexis HAUMONT
hould be Struts-native, no ? Or maybe we're the only one doing redirects here ? > -Message d'origine- > De : Arik Levin ( Tikal ) [mailto:[EMAIL PROTECTED]] > Envoyé : mardi 11 juin 2002 08:52 > À : 'Struts Users Mailing List' > Objet : RE: Adding q

RE: Adding query string to redirect w/in an action

2002-06-10 Thread Arik Levin ( Tikal )
If you are redirecting from one action to another it's true, I had this problem, you can always use forward ;-) -Original Message- From: Roy Truelove [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 4:01 AM To: Struts Users Mailing List Subject: Adding query string to redir

Adding query string to redirect w/in an action

2002-06-10 Thread Roy Truelove
Hello all, Question about redirects.. I want to redirect from one action to another, but I want to append a query string to the URL. I know how to do this the "dirty" way, by creating a context-relative ActionForward and slapping the queryString onto the end. What I'm looking

Re: query string parameters?

2002-01-21 Thread Sean Owen
Request parameters in a query string are treated like inputs in a form post. So you can invoke a struts Action with an HTTP GET request and query parameters; it's no different than the usual POST stuff. You can validate the input, etc., as if it had come from a form. Sean On Sunday, Ja

query string parameters?

2002-01-20 Thread Robert Tyler Retzlaff
Does struts have any nice way of handling parameters received via the query string? Perhaps something similar to the ActionForm object that I can forward back to the source page if a validate() method fails? Thanks rob -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For addi

Alternate Query String Arrangement

2001-12-05 Thread Phase Communcations
Has anyone succefully swapped out the "?" and the "&" in a querystring with another symbol , such as "/". A problem with various search engine spiders (not all, but, several) is that they will not move past a ?. It would be advantagous to allow for the use of a more compatible querystring (a way a

Setting up form from the query string

2001-12-04 Thread Scriven, Marcos
Hi Is it possible in struts to setup a form like so: myForm.jsp?action=3 Where in the form you have a property called action? The only way I have been able to do it is this: "/> Which seems to be a bit redundant, what with repeating the property name. I've also tried the method given in the

problem in query string

2001-08-16 Thread Vikramjit Singh
hi all i have a problem in query string. i have a link in my page the parameters which are separated by & sign. but when i have values which contains & sign then the value is not read coz the value is matching ampersand sign. if anyone has a solution for this then kindly lemme know t

Will the servlet work with GET and a query string?

2001-07-06 Thread Jonathan
It looks like the servlet cant match the path correctly when I redirect to an Action ex.   REDIRECTING TO; http://localhost:7001/successmtgs/postsecure_jump.do org.apache.struts.action.ActionServlet doGet() org.apache.struts.action.ActionServlet processPath() PATH - getAttribute("javax.serv

multiple param's in query string

2001-07-05 Thread Rama Krishna
hi all,   i have multiple params in query string to go when clicked on  a link.   i have gone through the user archive and found that we need to maintain a hashmap sought of thing.   as i have a link in each row, the values differ for each link, so i have  a vector of hashmaps.   i am able

Re: Query string in struts-config.xml

2001-06-25 Thread Ted Husted
It's a string, so you would have to parse it to extract multiple values. Tom Miller wrote: > > Very good! > > Is there a way to pass a Map of parameters in this way, or is it just a single one? > > Tom >

Re: Query string in struts-config.xml

2001-06-25 Thread Tom Miller
call it "task" inside > the Action, to leave the option of passing ?task=select as a query > string. Of course, you could also call it parameter internally, and make > the query string alternative "parameter=select", which would probably be > a better conven

Re: Query string in struts-config.xml

2001-06-25 Thread Ted Husted
The parameter property is not mentioned in the Users Guide (yet), but it is in the JavaDocs. The parameter here was just the value "select". I call it "task" inside the Action, to leave the option of passing ?task=select as a query string. Of course, you could also call it

Re: Query string in struts-config.xml

2001-06-25 Thread Tom Miller
input="/do/lot/Done"> > name="continue" > path="/WEB-INF/pages/lot/Result.jsp"/> > > > and in the Action > > // -- Acquire other parameters > String task mappin

Re: Query string in struts-config.xml

2001-06-24 Thread Ted Husted
Another approach is to pass the query string options using the "parameter" property of the action mapping, and then looking for them in your action. So, passing a parameter like "task=select" could also be represented as:

RE: Query string in struts-config.xml

2001-06-18 Thread Craig R. McClanahan
requirements: > -- > Thanks > Jacob > Craig > -Original Message- > From: Jon.Ridgway [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 18, 2001 3:02 AM > To: [EMAIL PROTECTED] > Subject: RE: Query string in struts-config.xml > > > Hi Jacob, > > What y

RE: Query string in struts-config.xml

2001-06-18 Thread Jacob Thomas
it that this is now supported. -- Thanks Jacob -Original Message- From: Jon.Ridgway [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 3:02 AM To: [EMAIL PROTECTED] Subject: RE: Query string in struts-config.xml Hi Jacob, What you have below will work. Indeed it is the approach us

RE: Query string in struts-config.xml

2001-06-18 Thread Jon.Ridgway
- From: Jacob Thomas [mailto:[EMAIL PROTECTED]] Sent: 15 June 2001 18:08 To: '[EMAIL PROTECTED]' Subject: Query string in struts-config.xml Is there a way to a specify a query string as part of the "path" attribute in the tag within an ? Example: -- Thanks Jacob

RE: Query string in struts-config.xml

2001-06-15 Thread Craig R. McClanahan
On Fri, 15 Jun 2001, Simon Liang wrote: > Hi guys: > > I consider myself fairly new to Strut. I have done a login flow that allows > user to edit his/her profile. > > The login workflow is simple using the Struts framework: > Map the login screen form to a form bean, then the action bean log

RE: Query string in struts-config.xml

2001-06-15 Thread Simon Liang
Hi guys: I consider myself fairly new to Strut. I have done a login flow that allows user to edit his/her profile. The login workflow is simple using the Struts framework: Map the login screen form to a form bean, then the action bean login the user and forward to the useredit.jsp upon a succes

Re: Query string in struts-config.xml

2001-06-15 Thread Craig R. McClanahan
Just like you did should work fine. Craig On Fri, 15 Jun 2001, Jacob Thomas wrote: > Is there a way to a specify a query string as part of the "path" attribute > in the tag within an ? > > Example: > > -- > Thanks > Jacob >

Query string in struts-config.xml

2001-06-15 Thread Jacob Thomas
Is there a way to a specify a query string as part of the "path" attribute in the tag within an ? Example: -- Thanks Jacob

RE: can %25 be in query string parameter name?

2001-02-02 Thread GU,JAMES (HP-Corvallis,ex1)
Did you try encode/decode utility from java.net.URLEncoder? -Original Message-From: xinxin Liu [mailto:[EMAIL PROTECTED]]Sent: Friday, February 02, 2001 9:33 AMTo: [EMAIL PROTECTED]Subject: can %25 be in query string parameter name?Hi, I am really sorry for my previous

can %25 be in query string parameter name?

2001-02-02 Thread xinxin Liu
Hi, I am really sorry for my previous Email. I didn't put my question there. Thanks! I have a query string which has a parameter named as: file%name. So after URL encoding, it is encoded as: file%25name. And I found it will break strus action class. It gives me the following

can %25 be in query string parameter name?

2001-02-02 Thread xinxin Liu
javax.servlet.jsp.JspException at org.apache.struts.taglib.template.InsertTag.doEndTag(InsertTag.java:133) at _0002fhome_0002ejsphome_jsp_0._jspService(_0002fhome_0002ejsphome_jsp_0.java:106) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126) at javax.servlet.http.HttpServle