8 Replies Latest reply on Mar 31, 2009 5:46 AM by ilya_shaikovsky

    IE 6 freezes with rich:fileUpload

    c64-programmer

      I'm having the problem that the Internet Explorer 6 freezes right after uploading files using Richfaces' component (upload itself works). CPU load goes up to 100%. I don't call any oncomplete-scripts and dont rerender.
      Works fine with Firefox. And furthermore, the Richfaces online demo works as well (is that a "real" file upload?).
      I stripped off any called scripts, other components, removed my style sheet, put the uploader right under the form tag, no luck.
      That's really bad because I started off with MyFaces Tomahawk which never worked at all due to strange Apache/Tomcat problems.

      Any vague suggestions welcome !

      RichFaces 3.3.0 GA
      Tomcat 6
      Sun JSF 1.2
      IE 6
      Firefox 3 (no problem)

      Configuration in web.xml (tried various settings):

      <context-param>
      <param-name>org.ajax4jsf.COMPRESS_SCRIPT</param-name>
      <param-value>false</param-value>
      </context-param>

      <context-param>
      <param-name>org.ajax4jsf.COMPRESS_STYLE</param-name>
      <param-value>false</param-value>
      </context-param>

      <context-param>
      <param-name>org.richfaces.LoadScriptStrategy</param-name>
      <param-value>ALL</param-value>
      </context-param>

      <login-config>
      <auth-method>BASIC</auth-method>
      </login-config>


      <display-name>RichFaces Filter</display-name>
      <filter-name>richfaces</filter-name>
      <filter-class>org.ajax4jsf.Filter</filter-class>

      <init-param>
      <param-name>createTempFiles</param-name>
      <param-value>true</param-value>
      </init-param>

      <init-param>
      <param-name>maxRequestSize</param-name>
      <param-value>8000000</param-value>
      </init-param>


      <filter-mapping>
      <filter-name>richfaces</filter-name>
      <servlet-name>Faces Servlet</servlet-name>
      REQUEST
      FORWARD
      INCLUDE
      </filter-mapping>