> http://foo.bar/cgi-bin?field=value&stuff=abc&stuff=def&stuff=g
> hi&more=bar
> 

You can use
org.apache.cocoon.environment.http.HttpRequest.getParameterValues(java.l
ang.String name) in this case and y'll get your values in String array.

For example: String[] sArray =  request.getParameterValues("stuff") ;
sArray will contains the folowing items: "abc", "def", "g"

Here is the doc: http://cocoon.apache.org/2.0/apidocs/index.html

Zsombor

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to