Hi all, I got the file upload works in Seam without facelets. You may try this. 1) Follow seam wiki fileUpload all steps, except the tomahawk.jar. 2) Put the tomahawk.jar into jboss-4.0.4.GA\server\default\deploy\jbossweb-tomcat55.sar\jsf-libs; 3) Modify the web.xml under jboss-4.0.4.GA\server\default\deploy\jbossweb-tomcat55.sar\conf:
<init-param> | <description>MyFaces tlds</description> | <param-name>tagLibJar0</param-name> | <param-value>jsf-libs/myfaces-impl.jar</param-value> | </init-param> | <!-- I added the tomahawk --> | <init-param> | <description>Tomahawk tlds</description> | <param-name>tagLibJar1</param-name> | <param-value>jsf-libs/tomahawk.jar</param-value> | </init-param> If you have any question, please let me know. It at least works for me. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3959753#3959753 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3959753 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
