You are here: Start » Filter Reference » System » HTTP » Http_SendRequest_PUT_JSON
Module: | FoundationLite |
---|
Sends a PUT request in JSON format to the server and receives a text answer.
Name | Type | Range | Description | |
---|---|---|---|---|
![]() |
inUrl | String | URL of request. | |
![]() |
inHeaders | StringArray | Request headers to send. They will be automatically encoded. | |
![]() |
inHeadersData | StringArray | Request headers to send. They will be automatically encoded. | |
![]() |
inJsonData | String | Request JSON to send. | |
![]() |
inTimeout | Integer | 0 - ![]() |
Request timeout in seconds. |
![]() |
inAllowUntrusted | Bool | Whether or not to allow untrusted SSL certificates. | |
![]() |
inCaCertFile | File* | File holding one or more certificates to verify the peer with. | |
![]() |
outAnswer | String? | Answer text if provided in UTF-8 encoding. | |
![]() |
outResponseCode | Integer | Answer code. Typically 200 for OK. |
Description
Filter sends a PUT request to the server using application/json format. Filter waits for the text server answer.
When inCaCertFile is set to Auto, certificates installed in the operating system are used, otherwise only certificates from the input file are used.
Examples
Filter executed with parameters:
- inUrl = http://localhost/test
- inJsonData = "{'value': 5}"
Request sent to the server:
PUT /test HTTP/1.1 Host: localhost User-Agent: FabImage/1.0 Accept: application/json Content-Type: application/json charset: utf-8 Content-Length: 12 {'value': 5}
It is also possible to include custom headers in the request. For this purpose, inHeaders and inHeadersData parameters are used.
Using the following values for these parameters:
- inHeaders = ["Header1", "Header2"]
- inHeadersData = ["value1", "value2"]
causes the following headers to be added to the request:
Header1: value1 Header2: value2
Remarks
Filter only accepts text answers encoded using UTF-8 or plain ASCII.
Errors
This filter can throw an exception to report error. Read how to deal with errors in Error Handling.
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Different size of inHeaders and inHeadersData in Http_SendRequest_PUT_JSON. |
DomainError | Empty inUrl in Http_SendRequest_PUT_JSON. |
DomainError | Invalid inUrl in Http_SendRequest_PUT_JSON. |
Complexity Level
This filter is available on Basic Complexity Level.
Disabled in Lite Edition
Filter Group
This filter is member of Http_SendRequest_PUT filter group.
See Also
- Http_SendRequest_PUT – Sends a PUT request to the server and receives a text answer.