From 5edb0d35c8ed6628467bba8a8c6753e958070663 Mon Sep 17 00:00:00 2001 From: Erwin Vervaet Date: Mon, 2 Apr 2007 14:48:04 +0000 Subject: [PATCH] Fixed small mistake in FileUpload sample. --- .../fileupload/src/main/webapp/WEB-INF/fileupload.xml | 2 +- spring-webflow/docs/reference/src/practical.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-webflow-samples/fileupload/src/main/webapp/WEB-INF/fileupload.xml b/spring-webflow-samples/fileupload/src/main/webapp/WEB-INF/fileupload.xml index 9febbc81..9a007f55 100644 --- a/spring-webflow-samples/fileupload/src/main/webapp/WEB-INF/fileupload.xml +++ b/spring-webflow-samples/fileupload/src/main/webapp/WEB-INF/fileupload.xml @@ -11,7 +11,7 @@ - + diff --git a/spring-webflow/docs/reference/src/practical.xml b/spring-webflow/docs/reference/src/practical.xml index d05b5eed..f0809187 100644 --- a/spring-webflow/docs/reference/src/practical.xml +++ b/spring-webflow/docs/reference/src/practical.xml @@ -248,7 +248,7 @@ ant dist to the "uploadFile" state: <action-state id="uploadFile"> - <action bean="uploadAction" method="uploadFile"/> + <action bean="uploadAction"/> <transition on="success" to="selectFile"> <set attribute="fileUploaded" scope="flash" value="true"/> </transition> @@ -1326,7 +1326,7 @@ if (data != null && data.length() > 0) { </end-state> With the above declarations we see how a subflow can pass output - parameters back to its parent flow - in this case the 'data' request parameter + parameters back to its parent flow - in this case the 'data' request parameter is passed back as an output parameter.