Hi all ! Sorry, about a such stupid question but I try to have my application redirects to an external web site with some parameters.
Here is an exemple : http://payOnline/$cashAmout/$name For the moment i'm just try to redirect to an external website like yahoo but the search path is always "/context/http://www.yahoo.fr". What's wrong ? Here is a snipet from struts-config.xml : <action path = "/Bonjour" type = "BonjourAction" name = "BonjourForm" scope = "request" input = "/index.jsp" validate = "true" > <forward name="oui" path="http://www.yahoo.fr" contextRelative="false" redirect="true"/> </action> Environment : struts 1.1, tomcat 4.1.27, jdk 1.4.2_02

