Hi This is not strictly a Servlet question, but I'm hoping that someone in this group will have come across this already. I'm performing an XSLT transformation in a servlet doGet() method and directing the output back to the HttpServletResponse PrintWriter object with;
PrintWriter pw = response.getWriter(); transformer.transform(source, new StreamResult((Writer)pw)); pw.flush(); The problem is that it's a big transform and the results appear not to be passed back to the browser until the Transform is complete. Is there some means by which I can force the HttpServletResponse PrintWriter to return parts of the transform as it is performed using the standard Java API, or do I need to create my own classes that extend either the PrintWriter or the Transformer objects Regards Roger Varley _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
