crafty78 <maillist <at> tapestryforums.com> writes: > > Is there any idea if this will be addressed, its a bit of a showstopper as i > can't use tapestry on weblogic!
This a bug in WebLogic. Calling setContentType() after call getWriter() is allowed by the servlet api specification: setContentType() This method may be called repeatedly to change content type and character encoding. This method has no effect if called after the response has been committed. It does not set the response's character encoding if it is called after getWriter has been called or after the response has been committed. -- In fact, Tapestry has already called reset() on the response which should clear the state (including the content type and whether getWriter() has been called) of the response. However, I can't find any info in the spec requiring this behavior. -- Author of a book for learning Tapestry (http://www.agileskills2.org/EWDT) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
