com.HTTPRequest.endXmlRequest

Terminates a streaming HTTP request.

Syntax

endXmlRequest(
   stax xml.StaxWriter )
  1. stax defines the xml.StaxWriter object used to write the HTTP request.

Usage

The endXmlRequest() method terminates a streaming HTTP request by closing the xml.StaxWriter object that was created with the beginXmlRequest() method.

This HTTP request method is non-blocking. It returns immediately after the call. Use the com.HTTPRequest.getResponse method, to perform a synchronous HTTP request, suspending the program flow until the response returns from the server. If the program must keep going, use the com.HTTPRequest.getAsyncResponse method, to check if a response is available.

In case of error, the method throws an exception and sets the STATUS variable. Depending on the error, a human-readable description of the problem is available in the SQLCA.SQLERRM register. See Error handling in GWS calls (STATUS).

The INT_FLAG variable is checked during GWS API call to handle program interruptions, for more details, see Interruption handling in GWS calls (INT_FLAG)