[ http://issues.apache.org/jira/browse/TOMAHAWK-780?page=comments#action_12450045 ] Werner Punz commented on TOMAHAWK-780: --------------------------------------
Hello im am a little bit stumbling here, because you are the first user worldwide reporting this and dojo has been in tomahwk or the sandbox for half a year now, I assume if it is not your cache then a misconfiguration on your app server side or a broken browser executable. please try following http://example.irian.at/example-sandbox-20061115/dojo/splitpanejsfonly.jsf and this one for a html rich text editor http://example.irian.at/example-simple-20061115/dojo/textareatestjsfonly.jsf it uses the same intiialisation routines as the initializer, if it works for you then please recheck your configs and the samples webapp on your local installation if it faiis. I just have reconfirmed here that both examples are working on my local ie6 testconfig (parallels running ie6 in winxp). > DojoInitializer fails on IE > --------------------------- > > Key: TOMAHAWK-780 > URL: http://issues.apache.org/jira/browse/TOMAHAWK-780 > Project: MyFaces Tomahawk > Issue Type: Bug > Reporter: Ariel Falduto > > DojoInitializer fails on explorer when tries to load the dojo.js .... if i > look the servlet response of dojo.js file thats not fully writed in the > response ... but in firefox works right. > im debuggin currently this method placed on MyFacesResourceLoader ... > /** > * Copy the content of the specified input stream to the servlet response. > */ > protected void writeResource(HttpServletRequest request, > HttpServletResponse response, > InputStream in) throws IOException > { > ServletOutputStream out = response.getOutputStream(); > try > { > byte[] buffer = new byte[1024]; > for (int size = in.read(buffer); size != -1; size = > in.read(buffer)) > { > out.write(buffer, 0, size); > } > } > finally > { > out.close(); > } > } > and its look fine.... cos' in firefox works ... :P -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
