Ksou said:
how about a SVG Document object???
As what I want is to upload the whole SVG document from client side to
server side (a J2EE server)
SVG is an XML application so you can certainly parse an SVG markup with
MSXML in IE and post it to a server.
But if your SVG document object is implemented by some third party stuff
like Adobe SVG viewer then MSXML does not consume that document object,
you need to either serialize the Adobe SVG document (I think there is a
printNode method implemented in the viewer for that) and pass the
serialized string to the send method of Microsoft.XMLHTTP or you can
make use of the methods like postURL that Adobe SVG viewer implements.
Methods like printNode or postURL used to be documented in the needed
detail in the SVG wiki
<
http://wiki.svg.org/>
but unfortunately that has been taken offline months ago.
But as you have not even told whether you use Adobe SVG viewer or how
exactly you use SVG on the client I guess it is easier that you post
back if needed and tell us more details.
Or you try the SVG group on groups.yahoo.com.