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.
Professional Software Development Tools
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.
Last edited by Stephen G.; 08-05-2009 at 01:58 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>