I know that browsers do support XML with DOM approach
I have an application that uses GWT and it uploads file at the server, when the uploading completes, i need the server to respond back to the client with a Bean since this is a file upload, the response is handled by a servlet.
I am able to read a string at the client by reading the output produced by the servlet. I plan to convert my bean into an XML like structure that would be converted back into an object at the client.
So, is it possible for my client to treat this response as XML and iterate through it ?