Advanced Search
Search Results
538 total results found
10. MailService class
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...
11. NetworkResource class
Introduction Connect and disconnect network services (disks and printers). Constructor NetworkResource Creates an object of type NetworkResource. Methods connectPrinter resource: string model: string C...
12. Registry class
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...
13. ServerInfo class
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...
14. Hll class (version 1.4.0)
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...
Support and configuration tools
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...
Configuring terminal emulation SSO
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...
ESSO Scripting Language
Visit the ESSO Scripting Language chapter.
Windows Administrator access
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 ...
Windows user access
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 ...
ESSO Installation Windows (from 3.3.3-enterprise to 3.4.3-enterprise)
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....
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....
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
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
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
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
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
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
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
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...