[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-921) Docs: incorrect MultipartFilter configuration instructions

Stuart Robertson (JIRA) jira-events at lists.jboss.org
Sat Feb 24 14:56:35 EST 2007


Docs: incorrect MultipartFilter configuration instructions
----------------------------------------------------------

                 Key: JBSEAM-921
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-921
             Project: JBoss Seam
          Issue Type: Bug
          Components: JSF
    Affects Versions: 1.1.7.CR1
         Environment: All
            Reporter: Stuart Robertson
            Priority: Minor


Chapter 23 in the Seam documentation provides instructions for setting up to use <s:fileUpload>.

It states:

For multipart requests, the Seam Multipart servlet filter must also be configured in web.xml:
                 
    <filter>
        <filter-name>Seam Multipart Filter</filter-name>
        <filter-class>org.jboss.seam.servlet.SeamMultipartFilter</filter-class>
    </filter>

However it looks like that filter has been refactored to a new package and name.

It looks like the correct instructions should show:

	<filter>
		<filter-name>Seam Multipart Filter</filter-name>
		<filter-class>org.jboss.seam.web.MultipartFilter</filter-class>
	</filter>

Incidently, it'd be helpful if there were one place where the useage of <s:fileUpload> and required configuration were described.  The examples were great, and I was able to get it working by following them, but it took longer than it might have.

It'd also be nice if the incompatibility with IceFaces were noted until this is resolved.  Spent a few hours battling this before giving up and backing off of IceFaces for now.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list