B4A.WEB.JOBI.GET-REQUEST-INFO
Summary
- Object type
- JOBI
- Object Folder
- PACKAGES/BEST4AUTOMIC/B4A.WEB/SOURCE/REQUEST
- Title
- get request info for selected request
- Archive Key 1
- -
- Archive Key 2
- -
- Created
- WRITER/B4A am: 2022-03-24 08:02:04
- Last Modified
- WRITER/B4A am: 2024-04-10 11:17:00 6 x
- Last Used
- -
Description
The include reads the endpoint and request type for a selected request from the variable B4A.WEB.VARA.SERVICE-REQUESTS.
Parameter
- $REQUEST$
- The request for which the information is to be read out
Input
Output
- &B4AW_ENDPOINT_O#
- endpoint for the request
- &B4AW_REQUEST_TYPE_O#
- request type for the request
Example
:inc B4A.WEB.JOBI.GET-REQUEST-INFO $REQUEST$ = "request"
Process
:set &request# = "$REQUEST$"
:set &vara# = "B4A.WEB.VARA.SERVICE-REQUESTS"
:set &B4AW_ENDPOINT_O# = get_var(&vara#, &request#, 2)
:set &B4AW_REQUEST_TYPE_O# = get_var(&vara#, &request#, 3)