hi! i have created a XML Document in a servlet .the servlet is called by an application through URLconnection and streams i need to pass the Document object to the client. but the troubl is that Document is not serializable . how do i serialize the Document and deserialize at the Client
You can use a Transformer to a Result that is a StreamResult built from the servlet output stream to send the Document. If you really want to use object serialization you may be able to by getting the root element of the Document. Bill