Hi there
I need to send some XML data to a server and I've been given the following specifications.
Server: http://myserver.com/parseXML.jsp
Request method: POST
Form request data name: xmldata
The XML structure is quite simple:
<XML>
<RECEIVE_RESPONSE user=12345678>
<SMS_RECEIVE uid=”1” to=”+275550000001” type=”6”/>
<SMS_RECEIVE uid=”2” to=”+275550000002” type=”1”>thanks for the
message</SMS_RECEIVE>
</RECEIVE_RESPONSE>
</XML>
I'm assuming that xmldata is just the name of the form, but my question is, how do I include XML into a normal HTML form? Or do I submit an XML form? How would I do that?
Help much appreciated
H