Return-Path: Delivered-To: apmail-struts-user-archive@www.apache.org Received: (qmail 84693 invoked from network); 1 Mar 2010 08:33:01 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Mar 2010 08:33:01 -0000 Received: (qmail 22019 invoked by uid 500); 28 Feb 2010 23:27:00 -0000 Delivered-To: apmail-struts-user-archive@struts.apache.org Received: (qmail 21991 invoked by uid 500); 28 Feb 2010 23:27:00 -0000 Mailing-List: contact user-help@struts.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Struts Users Mailing List" Reply-To: "Struts Users Mailing List" Delivered-To: mailing list user@struts.apache.org Received: (qmail 21982 invoked by uid 99); 28 Feb 2010 23:27:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Feb 2010 23:27:00 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [87.248.114.234] (HELO web24507.mail.ird.yahoo.com) (87.248.114.234) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 28 Feb 2010 23:26:50 +0000 Received: (qmail 33750 invoked by uid 60001); 28 Feb 2010 23:26:28 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.fr; s=s1024; t=1267399588; bh=0FvRbDLIE6aIYsK8SCL07eh8nvZmPczVGn/3kBo97UE=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=SDYb3iEAR3kKSTFwFmR/PHXnmD1Y6E4ZbZhvwlTI/XshvvEbJkTIawgQ6YAcv3aDPbWSjnvVuHTJKTc471rzzXEdmCo5cuXooaeuNWH/OtMSw2dB5lBlx3tKmAZOSwkPDEBLUSQ/fUS3iXZMxfZQj8vvB7jiBwzbhCIdrsqevrM= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.fr; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=J+QhXNK8h6jh4OKxcOVuvhDhaglN9cec0sGRvKm2H79VCXOLI7etFt8SG87nuSZZGhLDHzCflCXfxjseMbY1x24PkM2SahUIAD3RHIJmEEdu3TM8hBGTI6cBZKvaUEwce18Go9yhf+B2wXrMxVDZRC/SxmX6fWwlslEeygsU92Q=; Message-ID: <822069.31857.qm@web24507.mail.ird.yahoo.com> X-YMail-OSG: 4w3l9uIVM1lBtHu3Kckl.eH0QOdItkcOAN_HwQ6PTntBoo4X8sEHnSmqQhhyxSTLnxXstz2YCc39zJMIW_z6cxcQicDDvRFu67JP3UUQqC.5RV_9txeEdUbQRkGSpf03Hn08ELeDJ95vDq7SzcQFPL8g.Cs43AzhlLQqGZLdBHFROrh0rlEf1_mFR.7Txipi3hGrlB1QGQfvZ4xFk8uu4UrMUh4GhQul2iEu1nwzfU3ZEGKJrh4QZO5LRP3dtLVqsl6Nu.1OYtrR Received: from [88.185.167.6] by web24507.mail.ird.yahoo.com via HTTP; Sun, 28 Feb 2010 15:26:28 PST X-Mailer: YahooMailClassic/9.2.12 YahooMailWebService/0.8.100.260964 Date: Sun, 28 Feb 2010 15:26:28 -0800 (PST) From: Frederik Minatchy Subject: How to pass HTTPRequest between two JSP ? To: user@struts.apache.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello...=0A=0ASince a few days I am working with Struts 2. (2.1.6)=0AI am f= acing a big problem with HttpRequest and JSPs.=0A=0AWell... I have to forwa= rd a HTTPRequest from page1.jsp to page2.jsp=0A=0ASo... How can I pass HTTP= Request attribute betwen 2 pages?=0A=0AHere is a part my web.xml file :=0A= =0A...=0A=0A struts2=0A org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecute= Filter=0A =0A=09=0A=09struts2=0A=09=09/*=0A=09 =0A...=0A=0A=0Athe struts.xml file :=0A=0A...=0A=0A=0A =09/pages/bnf/administration/det= ailBnf.jsp=0A=09=09=0A =0A =0A =0A=09=09=0A =09/pages/bnf/administration/detailBnf.jsp=0A=09=09= =0A...=0A=0Aand a part of the action java file (which implementents Request= Aware):=0A=0A public String execute() throws Exception=0A {=0A requ= est.put("test", 58);=0A return SUCCESS;=0A }=0A =0A public String= modificationSubmit() throws TechniqueException, FonctionnelleException=0A = {=0A request.get("test"); // is null=0A editMode =3D true;=0A = return SUCCESS;=0A }=0A =0A=0A=0ASo... How can I pass the request att= ribute from on page to an other?=0A=0A=0A=0A --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@struts.apache.org For additional commands, e-mail: user-help@struts.apache.org