[ http://issues.apache.org/jira/browse/TOMAHAWK-780?page=comments#action_12450095 ] Ariel Falduto commented on TOMAHAWK-780: ----------------------------------------
im test the examples and works fine ... but there are something strange ... i install on IE6 an extension named "IEWatch" this showme all request fired by ie but when i see the contents leaded from dojo.js file i saw that is not complete co' im currently compearing' with the dojo embedded in tomahwak1.1.5-SNAPSHOT jar .. im dont understand ... whats happen ... is an error of this extension ??? and another thing that makes me think, the current extension not determining the size of dojo.js file, when in any other request can solve it. can u test it ?? > 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
