Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

538 total results found

SCIM ProcessInstance examples

SCIM SCIM full examples

Operations This page shows the operations that can be performed for the ProcessInstances object. List all Request GET http://<your-domain>/soffid/webservice/scim2/v1/ProcessInstance Response 200 OK { "schemas": [ "urn:ietf:params:scim:api:m...

SCIM ProcessDefinition examples

SCIM SCIM full examples

Operations This page shows the operations that can be performed for the ProcessDefinitions object List all Request GET http://<your-domain>/soffid/webservice/scim2/v1/ProcessDefinition Response 200 OK { "schemas": [ "urn:ietf:params:scim:ap...

Attribute translation tables

Soffid 3 Reference guide Integration Engine

Definition Soffid provides an easy to use mechanism to translate references or external codes into internal codes. For example, the HHRR application could be using a diferent coding scheme for business units. To deal with this data mismatch, users can extend...

Soffid
3
Integration Engine

Authorizations

Soffid 3 Reference guide Security settings

Definition Soffid console provides a granular access control system. That granular control system allows the administrator user to assign granular permissions to roles. Be in mind that some permissions may inherit some other permissions. You cannot assign pe...

Soffid
3
Security settings

Authentication

Soffid 3 Reference guide Security settings

Definition Soffid could use different kinds of external authentication sources. These mechanisms could be selectively enabled or disabled. Screen overview Standard attributes Global status Maintenance mode (only administrators can log in): if this...

Soffid
3
Security settings

Scheduled jobs

Soffid 3 Reference guide Monitoring and reporting

Description Schedule jobs display all the asynchronous tasks generated for the workflows engine. When a job is finished, it will disappear from that list. Standard attributes ID: job identifier. Name: job name. Process: process identifier and descriptio...

Soffid
3
Monitoring and reporting

Sessions

Soffid 3 Reference guide Monitoring and reporting

Description The sessions page displays the current open sessions made with ESSO, WSSO or PAM for which the user is the owner.  This functionality allows the owner users, with appropriate privileges, to open and view online a session opened by another user. I...

Soffid
3
Monitoring and reporting

Console log

Soffid 3 Reference guide Monitoring and reporting

Description That option allows you to look up server logs from the console. The logs are created on the server filesystem. Screen Overview Actions Download  Allows you to download the log file 

Soffid
3
Monitoring and reporting

⏰ Getting started

ESSO

Introduction Soffid ESSO is a full Enterprise Single Sign on solution, with some distinguishing features: Keeps track of users sessions active on the network. Automatically reconfigure user preferences and desktop behaviour according to whether or n...

Soffid
3
ESSO

ESSO Scripting Language

ESSO ESSO Scripting Language

Introduction The scripting language used is a full ECMAScript interpreter. Nevertheless, it's not a Javascript interpreter as it's used on web browsers. It only has the core elements of ECMAScript (Objects, Arrays, String, etc.) and a set of objects and funct...

Soffid
3
ESSO
Examples

1. Global functions

ESSO ESSO Scripting Language

Global functions can be used in an action element: debug text: string Sends a message to the debug console. sleep millis: int Stops script execution for the specified milliseconds. Never stops the execution of the applicat...

Soffid
3
ESSO
Examples

1.1. ESSO SendKeys syntax

ESSO ESSO Scripting Language

SendKeys syntax The sendKeys function aims to perform as the user pressing keystrokes. Thus, the function SendKeys ("ABC") simulates to press those three letters. The keystrokes will be done independently of the application that generates them. Thus, it is p...

Soffid
3
ESSO
Examples

2. secretStore object

ESSO ESSO Scripting Language

Introduction This object is always visible from any action, and provides access to the user's passwords and secrets. User passwords are always related to a system account. This is the object used to retrieve user and password in order to inject credentials i...

Soffid
3
ESSO
Examples

3. SystemInfo object

ESSO ESSO Scripting Language

Introduction The SystemInfo object is always visible from any action, and provides access to information about the machine. Attributes os string Specifies the name of the operating system: Windows / Ubuntu oSVersion string ...

Soffid
3
ESSO
Examples

4. Window class

ESSO ESSO Scripting Language

Introduction When an action is bound with a user interface application, it creates an object of class Window for each component at the XML descriptor with a ref-as attribute. Those components have the following methods: Methods getText return...

Soffid
3
ESSO
Examples

5. Document class

ESSO ESSO Scripting Language

Introduction When an action is associated with a Web application, it creates a document that identifies the full HTML document. This object assigned to the document variable. Thus, scripts can access the web contents and its DOM tree in runtime. The document ...

Soffid
3
ESSO
Examples

6. Element class

ESSO ESSO Scripting Language

Introduction The objects of type Element are created for each input element with a ref-as attribute, or are obtained from the Document itself. It implements a subset of the DOM class HtmlElement. Attributes childNodes Collection Vector o...

Soffid
3
ESSO
Examples

7. Collection class

ESSO ESSO Scripting Language

Introduction The collection object implements a subset of the standard DOM HTMLCollection Attributes length Long Number of items in collection. Methods item id: long returns Element Find the element wit...

Soffid
3
ESSO
Examples

8. File class

ESSO ESSO Scripting Language

Introduction It allows easy manipulation of files using the File class. Constructor File file: string mode: string Create an object of type File for the specified file. If mode is “r”, the file will be opened in read mode. If mode is ...

Soffid
3
ESSO
Examples

9. Directory class

ESSO ESSO Scripting Language

Introduction This class is able to look for directories content. A directory object has the following attributes and methods: Constructor Directory file: string Creates a directory object bound to the specified path. Methods ...

Soffid
3
ESSO
Examples