You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ma...@apache.org on 2006/05/25 20:28:24 UTC

svn commit: r409423 - /jakarta/commons/proper/fileupload/trunk/xdocs/faq.fml

Author: martinc
Date: Thu May 25 11:28:24 2006
New Revision: 409423

URL: http://svn.apache.org/viewvc?rev=409423&view=rev
Log:
Detabbed.

Modified:
    jakarta/commons/proper/fileupload/trunk/xdocs/faq.fml

Modified: jakarta/commons/proper/fileupload/trunk/xdocs/faq.fml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/fileupload/trunk/xdocs/faq.fml?rev=409423&r1=409422&r2=409423&view=diff
==============================================================================
--- jakarta/commons/proper/fileupload/trunk/xdocs/faq.fml (original)
+++ jakarta/commons/proper/fileupload/trunk/xdocs/faq.fml Thu May 25 11:28:24 2006
@@ -21,43 +21,43 @@
     <title>General</title>
 
     <faq id="empty-parse">
-	  <question>
-	    Why is parseRequest() returning no items?
-	  </question>
-	  <answer>
-	    This most commonly happens when the request has already been parsed, or
-		processed in some other way. Since the input stream has aleady been
-		consumed by that earlier process, it is no longer available for parsing
-		by Commons FileUpload.
-	  </answer>
-	</faq>
-
-	<faq id="read-timeout">
-	  <question>
-	    Why am I getting "Read timed out" exceptions while parsing?
-	  </question>
-	  <answer>
-	    The most common cause of these exceptions is when FileUpload is being
-		used on a site that is using the Tomcat ISAPI redirector. There was a
-		bug in earlier versions of that component that caused problems with
-		multipart requests. The bug was fixed some time ago, so you probably
-		just need to pick up a newer version. See the
-		<a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=15278">Tomcat bug report</a>
-		for full details.
-	  </answer>
-	</faq>
-
-	<faq id="class-not-found">
-	  <question>
-	    Why is NoClassDefFoundError being thrown while parsing?
-	  </question>
-	  <answer>
-	    This most commonly happens when attempting to rely on a shared copy of
-		the Commons FileUpload jar file provided by your web container. The
-		solution is to include the FileUpload jar file as part of your own
-		web application, instead of relying on the container.
-	  </answer>
-	</faq>
+      <question>
+        Why is parseRequest() returning no items?
+      </question>
+      <answer>
+        This most commonly happens when the request has already been parsed, or
+        processed in some other way. Since the input stream has aleady been
+        consumed by that earlier process, it is no longer available for parsing
+        by Commons FileUpload.
+      </answer>
+    </faq>
+
+    <faq id="read-timeout">
+      <question>
+        Why am I getting "Read timed out" exceptions while parsing?
+      </question>
+      <answer>
+        The most common cause of these exceptions is when FileUpload is being
+        used on a site that is using the Tomcat ISAPI redirector. There was a
+        bug in earlier versions of that component that caused problems with
+        multipart requests. The bug was fixed some time ago, so you probably
+        just need to pick up a newer version. See the
+        <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=15278">Tomcat bug report</a>
+        for full details.
+      </answer>
+    </faq>
+
+    <faq id="class-not-found">
+      <question>
+        Why is NoClassDefFoundError being thrown while parsing?
+      </question>
+      <answer>
+        This most commonly happens when attempting to rely on a shared copy of
+        the Commons FileUpload jar file provided by your web container. The
+        solution is to include the FileUpload jar file as part of your own
+        web application, instead of relying on the container.
+      </answer>
+    </faq>
 
         <faq id="whole-path-from-IE">
           <question>
@@ -81,32 +81,32 @@
     <title>FileUpload and Struts</title>
 
     <faq id="parse-in-action-fails">
-	  <question>
-	    I'm using FileUpload in an Action, but it's not working. Why?
-	  </question>
-	  <answer>
-	    Struts recognises multipart requests, and parses them automatically,
-		presenting the request parameters to your code in the same manner as
-		if they were regular request parameters. Since Struts has already
-		processed the request, and made it available in your form bean, the
-		input stream is no longer available for parsing, so attempting to do
-		so with FileUpload will fail.
-	  </answer>
-	</faq>
-
-	<faq id="howto-parse-in-action">
-	  <question>
-	    But I need to parse the request myself. How can I do that?
-	  </question>
-	  <answer>
-	    Struts parses multipart a request as a part of the process of populating
-		your form bean from that request. If, for some reason, you need to have
-		full control over the multipart parsing, you can do so by configuring
-		your action mapping without an associated form bean. (A better way of
-		doing this, however, is to replace the default multipart handler with
-		your own. See the Struts documentation for details.)
-	  </answer>
-	</faq>
+      <question>
+        I'm using FileUpload in an Action, but it's not working. Why?
+      </question>
+      <answer>
+        Struts recognises multipart requests, and parses them automatically,
+        presenting the request parameters to your code in the same manner as
+        if they were regular request parameters. Since Struts has already
+        processed the request, and made it available in your form bean, the
+        input stream is no longer available for parsing, so attempting to do
+        so with FileUpload will fail.
+      </answer>
+    </faq>
+
+    <faq id="howto-parse-in-action">
+      <question>
+        But I need to parse the request myself. How can I do that?
+      </question>
+      <answer>
+        Struts parses multipart a request as a part of the process of populating
+        your form bean from that request. If, for some reason, you need to have
+        full control over the multipart parsing, you can do so by configuring
+        your action mapping without an associated form bean. (A better way of
+        doing this, however, is to replace the default multipart handler with
+        your own. See the Struts documentation for details.)
+      </answer>
+    </faq>
   </part>
 
 </faqs>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org