com.HttpRequest.endJSONRequest
Terminates a streaming HTTP request.
Syntax
endJSONRequest(
json json.JSONWriter )
- json defines the
json.JSONWriter
object used to write the HTTP request.
Usage
The endJSONRequest()
method terminates a streaming HTTP request by closing the
json.JSONWriter
object that was created with the beginJSONRequest 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)