PDA

View Full Version : XML submit and response



Stephen G.
08-05-2009, 02:56 AM
I am trying to submit an XML request to test a transmission from a server (with username and password) then get the XML echo response. Is this possible? If so, what actions do I use.

Ulrich
08-06-2009, 11:27 PM
Hmmm... what do you mean with "XML echo response"? XML is a file format, not a transmission protocol. Aren't you confusing things?

Ulrich

Stephen G.
08-07-2009, 12:22 AM
EchoRequest.xsd
This schema defines the format of the XML request used to test a transmission. This will echo back a response if the communication path is working. It may be used to verify that the service is online.
Example of XML created based on this schema:
<EchoRequest version="V01.01">String</EchoRequest>

EchoResponse.xsd
This schema defines the format of the XML returned as a response to an Echo test. This will echo back a response if the communication path is working.
<EchoResponse version="V01.01">String</EchoResponse>