Send a request in an XML document

At times, you may prefer to send an HTTP POST request to the server to make sure the data is secure and not visible in transit. In that case, specify the action name and parameters in an XML document.

Make an XML document request

  1. Create an XML document with the root element params and param child elements for the action name and each parameter:
    <params>
        <param name="action">login</param>
        <param name="login">jon@doe.com</param>
        <param name="password">foobar</param>
    </params>
    
  2. You can only send one action in the params root element. You cannot batch multiple actions to be executed sequentially.
  3. The XML document you send must be valid and well-formed. Try validating the document in an XML editor before you send it.
  4. Write code that sends an HTTP POST request to Connect Enterprise and receives an XML response.

    The specific code will vary according to your programming language and development environment.

  5. In your code, send the XML document to Connect Enterprise in the body of the HTTP POST request.


Take a survey


 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/breeze/6/xml_api/02_logi6.htm