Request UDR
The Request UDR
is used to send requests from the UI Builder Agent.
The following fields are included in the Request UDR
:
Field | Description |
---|---|
body (bytearray) | This field contains the HTTP message body. |
clientHost (string) | This field contains the client IP. |
clientPort (int) | This field contains the client port. |
contextID (long) | This field contains the context ID |
files (map<string,bytearray>) | This field may contain files sent in a POST request with Encoding as MULTIPART. It will consist of a key-value pair, where the key is the file name and the value is the byte array of the file. |
headerFields (map<string,list<string>>) | This field may contain an HTTP header. The header fields are stored as key-value pairs. |
httpMethod (string) | This field must contain the HTTP method. |
requestedUri (string) | This field contains a requested URI. |
params (map<string,list<string>>) | This field may contain HTTP query parameters and/or POST parameters parsed from request body. |
username (string) | This field contains username of logged in user. |