getParameterMap() question

2002-02-06 Thread Steven Elliott
Sorry if this is somewhat offtopic but maybe some experts here can help clear this up for me. I would like to use the ServletRequest.getParameterMap() in a JSP page using the request object. I post a form in the previous page using the POST method and the request in processed with the following

Re: getParameterMap() question

2002-02-06 Thread Steven Elliott
Never mind. I should know an array when I see one 8ยง. Apologies for the extra traffic Steven -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: getParameterMap() question

2002-02-06 Thread August Detlefsen
All request parameters are Strings: public java.lang.String getParameter(java.lang.String name) Try casting entry.getValue() to (String): (String)(entry.getValue()) --- Steven Elliott [EMAIL PROTECTED] wrote: Sorry if this is somewhat offtopic but maybe some experts here can help clear

Re: getParameterMap() question

2002-02-06 Thread Steven Elliott
From: August Detlefsen [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 6 Feb 2002 12:25:25 -0800 (PST) To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: getParameterMap() question All request parameters are Strings: public java.lang.String getParameter(java.lang.String name