Question
Posting XML to Web Servlet
I have a web servlet that a third party creaded for my
company that I'm trying to post data to, The way they set it up is
by posting a starndard XML document (or string) that's wrapped by a
pair of non-standard tags (the tags are --<<tagName>>
-- ) . Its a little bass-ackwards, but I suppose they had their
reasoning.
The issue I'm running into is, when I create an XML Object to send to the servlet (using xml.sendAndLoad method), I can't find a way to have the XML object keep those non-standard tags at the begginng and end. Is there a work around to this? or a better way I should be doing it? See the text below for a clearer picture of what's going on...
The issue I'm running into is, when I create an XML Object to send to the servlet (using xml.sendAndLoad method), I can't find a way to have the XML object keep those non-standard tags at the begginng and end. Is there a work around to this? or a better way I should be doing it? See the text below for a clearer picture of what's going on...