com.HttpRequest.doTextRequest
Performs the request by sending an entire string at once.
Syntax
doTextRequest(
str STRING )
- str defines a string containing the request. The request fails if
NULL
or an empty string (''
) is provided.Tip:Use doRequest() for POST, PUT, and PATCH requests with empty string.
Usage
Performs the request by sending an entire string at once.
A message body is allowed in a DELETE request, but servers may ignore it if they do not support it.
The default Content-Type header is text/plain
, but it can be changed if of the
form */*
. For example: application/json
.
Automatic character set conversion from the application locale to the user-defined charset is performed. In case of conversion error, the method throws an exception.
To avoid character conversion problems when sending text over HTTP, consider setting the same user-defined character set as the program defined by the application locale (assuming that the server understands the client application character set).
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.
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)