com.HTTPRequest.doXmlRequest

Performs the request by sending an entire XML document at once.

Syntax

doXmlRequest(
   data xml.DomDocument )
  1. data is the XML document containing the data to be sent..

Usage

The doXmlRequest() method performs the request by sending the entire passed xml.DomDocument at once.

Supported methods are PUT and POST.

The default Content-Type header is text/xml, but it can be changed if of the form */xml or */*+xml. For example: application/xhtml+xml.

In HTTP 1.1, if the body size is greater than 32 KB, the request will be sent in several chunks of the same size.

In case of error, the method throws an exception and sets the STATUS variable with the appropriate error number.