Accessing products through BrowserAccess on senior X Platform
Access applications made available through BrowserAccess through a customized module on the senior X Platform.
- Select the Technology > Customization > Applications menu and create a newApplication;
- Click on the already created application and, inActions, select Add URL;
- Enter the configuration URL and confirm this change. To add this configuration, you must have a .json configuration file available on a company server;
If you prefer, add the configuration file in JSON format instead of the URL. If this file has any changes, it is necessary to add it again. To do this, clickActions is at Add file. This file must be made available at a public URL (accessible via the internet), with a valid digital certificate.
Example: {
"menu": {
"children": [
{
"label": "Administration",
"labelI18n": "platform.backend.administration", //Used to internationalize the customized menu, must start with platform.backend.xxxxx
"children": [
{
"label": "Double Factor Authentication",
"labelI18n": "platform.backend.authentication-twofactor",
"path": {
"category": "CurrentTab", //can be of the CurrentTab type to open within the platform, NewTab type to open in a new tab and DesktopNative type to open via launcher
"menuId": "https://arq.senior.com.br/authentication/#/" //URL of the menu to be opened, if it's a CurrentTab then this must be https
},
"auth": {
"resource": "res://senior.com.br/platform/authentication/mfa_tenant_config", //resource that will be used to validate the permission, must be taken from the resource management screen
"permission": "View" //action over the resource that will be used to validate the permission, must also be taken from the resource management screen
}
}
]
}
]
}
}
- To hide the URL already entered, click the buttonActions next and selectHide.
It is recommended to place the file on the same server as BrowserAccess, if it already has a digital certificate. And add theSenior Middleware commands in the URL, so that the screen opens immediately after clicking on the link, avoiding the need to access it through the menu.
Important
In older versions, the term Applications is still referred to as Modules.
Replace the values below with information according to your environment.
- label: name that will be displayed in the senior X Platform menu;
- menuId: URL, port and name of the application in BrowserAccess;
- url: URL of the desired BrowserAccess page, this page can receive the parameters already normally used in BrowserAccess;
- withCredentials: fill in the value "true" so that access occurs without having to enter the username and password again.
|
1 two 3 4 5 6 7 8 9 10 11 12 13 14 15 |
{ "menu": { "children": [ { "label": "BAVETORH", "path": { "category": "NewTab", "menuId": "https://<server name>:<port>/bavetorh", "withCredentials" : true } } ] } } |






