Re: Multiple arguments in a GET URL

2004-10-04 Thread Ronald Klop
You should escape the value of mainFrame, so the webserver will not parse it in index.jsp. Ronald. On Fri Oct 01 19:34:04 CEST 2004 [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am attempting to redirect to a URL that is similar to the following

RE: Multiple arguments in a GET URL

2004-10-04 Thread Ronald Klop
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 7:59 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Multiple arguments in a GET URL On Fri, Oct 01, 2004 at 05:10:22PM -0400, [EMAIL PROTECTED] wrote: it sees hello as expected

RE: Multiple arguments in a GET URL

2004-10-03 Thread khanaz
this strategy? Thanks, Azam Khan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 5:18 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Multiple arguments in a GET URL On Fri, Oct 01, 2004 at 04:51:47PM -0400, [EMAIL PROTECTED

RE: Multiple arguments in a GET URL

2004-10-03 Thread khanaz
-222-7114 http://ndsc.eng.vzwcorp.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 7:59 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Multiple arguments in a GET URL On Fri, Oct 01, 2004 at 05:10:22PM -0400, [EMAIL

Re: Multiple arguments in a GET URL

2004-10-01 Thread Gerardo Juarez
getParameter should work for all parameters. Your url is not correct or it is extremely long and blows up with the GET method. But that is highly unlikely. How does it fail? Do you obtain an error? Is it a null String? Gerardo On Fri, 1 Oct 2004 [EMAIL PROTECTED] wrote: I am attempting to

RE: Multiple arguments in a GET URL

2004-10-01 Thread khanaz
-Original Message- From: Gerardo Juarez [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 2:10 PM To: Tomcat Users List Subject: Re: Multiple arguments in a GET URL getParameter should work for all parameters. Your url is not correct or it is extremely long and blows up with the GET

RE: Multiple arguments in a GET URL

2004-10-01 Thread Ben Souther
Users List Subject: Re: Multiple arguments in a GET URL getParameter should work for all parameters. Your url is not correct or it is extremely long and blows up with the GET method. But that is highly unlikely. How does it fail? Do you obtain an error? Is it a null String? Gerardo

RE: Multiple arguments in a GET URL

2004-10-01 Thread Shapira, Yoav
Research Informatics -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 2:23 PM To: Tomcat Users List Subject: RE: Multiple arguments in a GET URL http://www.mysite.com/index.jsp?mainFrame=somePage.jsp?item1=info1ite m2=i nfo2item2=info2 That's your

RE: Multiple arguments in a GET URL

2004-10-01 Thread khanaz
- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 2:50 PM To: Tomcat Users List Subject: RE: Multiple arguments in a GET URL Hi, Be careful with your syntax, use ?param1=param1param2=param2, not ?param1=param1?param2=param2. The ? indicates the beginning of the query

RE: Multiple arguments in a GET URL

2004-10-01 Thread Ben Souther
: RE: Multiple arguments in a GET URL Hi, Be careful with your syntax, use ?param1=param1param2=param2, not ?param1=param1?param2=param2. The ? indicates the beginning of the query string and is expected once per URL, is a parameter separator in the query string is can be there zero

RE: Multiple arguments in a GET URL

2004-10-01 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] Subject: RE: Multiple arguments in a GET URL http://ndsc.eng.vzwcorp.com/index.jsp?mainFrame=blahblah.jsp?arg1=helloarg2=helloagain In this scenario, I am able to perform a request.getParameter on arg1 in blahblah.jsp but when I try to do it on arg2, I receive

RE: Multiple arguments in a GET URL

2004-10-01 Thread khanaz
arguments in a GET URL From: [EMAIL PROTECTED] Subject: RE: Multiple arguments in a GET URL http://ndsc.eng.vzwcorp.com/index.jsp?mainFrame=blahblah.jsp?arg1=helloarg2 =helloagain In this scenario, I am able to perform a request.getParameter on arg1 in blahblah.jsp but when I try to do

Re: Multiple arguments in a GET URL

2004-10-01 Thread erh
On Fri, Oct 01, 2004 at 04:51:47PM -0400, [EMAIL PROTECTED] wrote: For example, my index.jsp is the frameset that takes an argument mainFrame specifying the JSP/HTML to use as the center frame of the frameset. So for example I would have

RE: Multiple arguments in a GET URL

2004-10-01 Thread Gerardo Juarez
Subject: RE: Multiple arguments in a GET URL Hi, Be careful with your syntax, use ?param1=param1param2=param2, not ?param1=param1?param2=param2. The ? indicates the beginning of the query string and is expected once per URL, is a parameter separator in the query string is can be there zero

Re: Multiple arguments in a GET URL

2004-10-01 Thread QM
On Fri, Oct 01, 2004 at 04:17:59PM -0500, [EMAIL PROTECTED] wrote: : So for example I would have : http://ndsc.eng.vzwcorp.com/index.jsp?mainFrame=blahblah.jsp : : What you're doing seems like a great way to allow anyone to crash : your app, or at least use up a lot of memory. Think what

Re: Multiple arguments in a GET URL

2004-10-01 Thread Wendy Smoak
From: Gerardo Juarez [EMAIL PROTECTED] The problem is I don't know that there are any parenthesis in URLs, to group things like http://your.server.com/index.jsp?mainFrame={blahblah.jsp?arg1=val1arg2=val2} which is what I understand you want. I haven't been following this thread so pardon if

Re: Multiple arguments in a GET URL

2004-10-01 Thread erh
On Fri, Oct 01, 2004 at 05:10:22PM -0400, [EMAIL PROTECTED] wrote: it sees hello as expected -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] http://ndsc.eng.vzwcorp.com/index.jsp?mainFrame=blahblah.jsp?arg1=helloarg2 =helloagain In this scenario, I am