* Brian Burridge:
> Yes I understood that. Here is the flow I am using:
> 
> function post2requestUri{
> var queryString = "";
> for (var i in cocoon.getParameterNames){
> queryString += i + "=" + cocoon.request.getParameter(i) + "&";
> }
> cocoon.sendPage("http://localhost:8080/girscom/TestCocoon.jsp?"+queryString);
> }

be careful to encode the parameters using URLEncoder.encode().
And also you may encounter encoding problems with this code
depending on your settings in web.xml and the encoding used by
your servlet container.
-- 
Jean-Baptiste Quenot
Systèmes d'Information
ANYWARE TECHNOLOGIES
Tel : +33 (0)5 61 00 52 90
Fax : +33 (0)5 61 00 51 46
http://www.anyware-tech.com/

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