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

10. MailService class

ESSO ESSO Scripting Language

Introduction Simple tool to send emails. The MailService object has the following methods. Constructor MailService Create an object of type MailServer. Methods setServer server: string Specifies the nam...

Soffid
3
ESSO
Examples

11. NetworkResource class

ESSO ESSO Scripting Language

Introduction Connect and disconnect network services (disks and printers). Constructor NetworkResource Creates an object of type NetworkResource. Methods connectPrinter resource: string model: string C...

Soffid
3
ESSO
Examples

12. Registry class

ESSO ESSO Scripting Language

Introduction Manipulate the windows registry. Constructor Registry path: string Create an object of type Registry Global objects Registry.HKEY_LOCAL_MACHINE Tree Key LOCAL_MACHINE Registry.HKEY_CURRENT...

Soffid
3
ESSO
Examples

13. ServerInfo class

ESSO ESSO Scripting Language

Introduction This helper class allows the script to query information stored at Soffid console. Constructor ServerInfo path: string Queried the server returning an object of type ServerInfo. Methods length retu...

Soffid
3
ESSO
Examples

14. Hll class (version 1.4.0)

ESSO ESSO Scripting Language

Introduction The Hll class gives the script engine access to Hll terminal emulators. When a hll pattern matches the emulator screen, a hll object of class Hll will be crated and can be used by the action script. Attributes sessionId strin...

Soffid
3
ESSO
Examples

Support and configuration tools

ESSO ESSO Configuring Rules for Single Sign On

Introduction KojiKabuto.exe, the main Soffid ESSO component, picks settings and rules automatically from Soffid synchronization server at login. This configuration can be updated by running the command "KojiKabuto update". Once run, new rules will apply to al...

Soffid
3
ESSO
mazinger

Configuring terminal emulation SSO

ESSO ESSO Configuring Rules for Single Sign On

Introduction To configure SSO on terminal emulations, an HLL API bridge has been built. This bridge allows direct communication with the terminal emulator in order to create accurate SSO rules that can be triggered based on the screen display. Next, you have...

Soffid
3
ESSO
mazinger

ESSO Scripting Language

ESSO ESSO Configuring Rules for Single Sign On

Visit the ESSO Scripting Language chapter.

Soffid
3
ESSO
Scripts

Windows Administrator access

ESSO ESSO Manuals

How to access? For domain member hosts, ESSO will remove all existing local accounts except for those with a dependand service. So, in order to access with administrator privileges, user must use a domain account with local administrator privilege, or either ...

Soffid
3
ESSO

Windows user access

ESSO ESSO Manuals

How to access? When you try to connecto to a Windows machine by using Soffid ESSO, you need to enter your user and password in the Windows login page.  If the user does not exists in this machine, depending on the attribute "Create local accounts when there ...

Soffid
3
ESSO

ESSO Installation Windows (from 3.3.3-enterprise to 3.4.3-enterprise)

ESSO How to install ESSO?

Introduction Soffid ESSO is a full Enterprise Single Sign on solution. Here you can find the details about the ESSO from 3.3.3-enterprise to 3.4.3-enterprise  iversions nstallation. Supported platforms Soffid ESSO supports Windows XP or later workstations....

Soffid
3
ESSO
Install

Configuring Rules for Single Sign On

ESSO ESSO Configuring Rules for Single Sign On

Configuring Single Sign-on User interface pattern recognition Web interfaces pattern recognition Configuring rules for basic / kerberos authentication SSO system is configured based on the detection of administrator defined User Interface patterns....

Soffid
3
ESSO
SSO

Addon container

Addon container

Introduction Addon containers can be deployed on the Soffid console, using the addon management page. These addons are bare jar files that are containing some other addons as well as an index file, named META-INF/soffid-plugin.xml. This file can contain the ...

Introduction

Business logic addon

A business logic addon should follow the conventions and guidelines used to develop Soffid IAM. It must be composed of: 1. Hibernate entities and mappings. 2. DAOs to access those hibernate entities. They must contain transformation methods to build value o...

Addon spring descriptor

Business logic addon

Addons must have an addon-applicationProperties.xml spring descriptor. Hibernate DAOS should be declared as the next example states. They can reference any bean present at the Soffid console, including sessionFactory. It's advisable to use two global intercep...

Addon startup

Business logic addon

Some addons need to execute some code on startup. To achieve this, the startup must implement and declare a SpringService that implements the es.caib.seycon.ng.servei.ApplicationBootService interface. This interface has two methods that will be called after s...

Authorizations descriptor

Business logic addon

The authorization descriptor is an XML describing the different authorizations that can be granted to users. This file should be located at /com/soffid/addon/authorization.xml The template for this file is: <?xml version="1.0" encoding="utf-8"?> <autorit...

Data schema descriptor

Business logic addon

Schema description The schema must be expressed as an XML file. This file should be located at a core addon module and be named plugin-ddl.xml. This DDL file can contain descriptions for tables, indexes and foreign keys. Tables A table is composed of a <ta...

Introduction

Business Process addon (par)

Soffid Business Processes use JBoss JBPM engine. You can find the original JBPM documentation here. In order to develop a new business process addon you need Eclipse Java EE IDE for Web Developers and three plugins installed on it: JBPM plugin. You can fin...

Task user interface

Business Process addon (par)

Introduction To define the user interface for a task, a .zul file must be located at the ui directory, and the corresponding task tag should be located at ui.xml file. The user interface must be a ZK .zul page. This zul page must contain a task tag. This cus...