OkHttpClient allows you to make Http requests. Instead of using OkHttpClient directly it is recommended to use OkHttpUtil2 modules which are much simpler to use.
Events:
ResponseSuccess (Response As OkHttpResponse, TaskId As Int) ResponseError (Response As OkHttpResponse, Reason As String, StatusCode As Int, TaskId As Int)
Executes the OkHttpRequest asynchronously. ResponseSuccess or ResponseError events will be fired later. If there is a request with the same TaskId already running then this method will return False and the new request will not be submitted.
Same behavior as Execute. The UserName and Password will be used for Basic authentication and Digest authentication.
Initialize (EventNameAsString)
Initializes this object. IMPORTANT: this object should be declared in Sub Process_Globals. EventName - The prefix that will be used for ResponseSuccess and ResponseError events.
InitializeAcceptAll (EventNameAsString)
Similar to Initialize, with one important difference. All SSL certificates will be automatically accepted. This method should only be used when trying to connect to a server located in a secured network.
Initializes the request and sets it to be a Http Patch method. The specified InputStream will be read and added to the request.
InitializePatch2 (URLAsString, Data() AsByte)
Initializes the request and sets it to be a Http Patch method. The specified Data array will be added to the request. Unlike InitializePost this method will enable the request to retry and send the data several times in case of IO errors.
Initializes the request and sets it to be a Http Post method. The specified InputStream will be read and added to the request.
InitializePost2 (URLAsString, Data() AsByte)
Initializes the request and sets it to be a Http Post method. The specified Data array will be added to the request. Unlike InitializePost this method will enable the request to retry and send the data several times in case of IO errors.
Initializes the request and sets it to be a Http Put method. The specified InputStream will be read and added to the request.
InitializePut2 (URLAsString, Data() AsByte)
Initializes the request and sets it to be a Http Put method. The specified Data array will be added to the request. Unlike InitializePost this method will enable the request to retry and send the data several times in case of IO errors.
RemoveHeaders (NameAsString)
Removes all headers with the given name.
SetContentEncoding (EncodingAsString)
Sets the encoding header of the request.
SetContentType (ContentTypeAsString)
Sets the Mime header of the request. This method should only be used with requests that have a payload.
SetHeader (NameAsString, ValueAsString)
Sets the value of the header with the given name. If no such header exists then a new header will be added.
TimeoutAsInt
Gets or sets the request timeout, measured in milliseconds. Default value is 30,000 (30 seconds).
An object that holds the response returned from the server. The object is passed in the ResponseSuccess event. You can choose to read the response synchronously or asynchronously. It is important to release this object when it is not used anymore by calling Release.
Asynchronously reads the response and writes it to the given OutputStream. If there is a request with the same TaskId already running then this method will return False, and the response object will be released. The StreamFinish event will be raised after the response has been fully read. EventName - The sub that will handle the StreamFinish event. Output - The stream from the server will be written to this stream. CloseOutput - Whether to close the specified output stream when done. TaskId - The task id given to this task. Example: SubHttp_ResponseSuccess (ResponseAsOkHttpResponse, TaskIdAsInt)
Response.GetAsynchronously("ImageResponse", _
File.OpenOutput(File.DirInternalCache, "image.jpg", False), True, TaskId)
EndSub
Returns a Map object with the response headers. Each elements is made of a key which is the header name and a value which is a list containing the values (one or more). Example: Dimlist1AsList list1 = response.GetHeaders.Get("Set-Cookie")
Fori = 0Tolist1.Size - 1 Log(list1.Get(i))
Next
Release
Frees resources allocated for this object.
StatusCodeAsInt [read only]
Returns the response Http code. Returns -1 is the status code is not available.
Top