craigmcc 2002/08/08 16:02:43 Modified: web/upload/WEB-INF struts-config.xml Log: Avoid serialization problems by making the upload example use request scope for the form bean. PR: Bugzilla #11500 Submitted by: Jonathan Corbin <jonboy at rocketmonkey.org> Revision Changes Path 1.6 +2 -1 jakarta-struts/web/upload/WEB-INF/struts-config.xml Index: struts-config.xml =================================================================== RCS file: /home/cvs/jakarta-struts/web/upload/WEB-INF/struts-config.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- struts-config.xml 14 Mar 2002 00:33:04 -0000 1.5 +++ struts-config.xml 8 Aug 2002 23:02:43 -0000 1.6 @@ -17,7 +17,8 @@ <action path="/upload" type="org.apache.struts.webapp.upload.UploadAction" name="uploadForm" - input="/upload.jsp"> + scope="request" + input="/upload.jsp"> <forward name="display" path="/display.jsp" /> </action>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>