HttpRequestJson

Description

Class for sending json HTTP requests and receiving josn server responses.

This activity returns the result of the request as a string which represents the body of the response. There are also out arguments to check the result code or possible errors texts.


Login

AuthType EAuthType?

This parameter allows you to choose the type of authentication you want to use. Choose the one required by the service you want to call. Possible values are Base Auth, Ntlm Auth, Digest Auth or NULL.

The HTTP login for pages requiring a login/password authentication.

Password InArgument<String>

The HTTP password for pages requiring a login/password authentication.


Misc

ErrorText OutArgument<String>

The reason for a possible failure of the activity. If it is null, it means that the actiivty was successful.

StatusCode OutArgument<Int32>

The result status code of the request.


Request

The request headers to the HTTP request. If a header having the same field name is already present, this method replaces it.

JsonText InArgument<String>

The json content of the request.

Verb EVerb REQUIRED

The http method of the request.


Security

Default is false. Set to True to enable SSL security protocol.


Url

The port of the resource for the request.

Url InArgument<String> REQUIRED

The address where to execute the request.