GIPSSOHandler

The Genero IDP Single sign on HTTP handler provides support to authenticate a user.

Syntax

com.fourjs.ggc.httphandler.GIPSSOHandler ,
     auth:username:password [...]
It accepts a parameter providing the SSO login details.
  • auth:username:password

Usage

The GIP SSO Handler class is supported by the HTTP Handler interface of the Java API, which must be implemented to provide HTTP handling for SSO.

The BDL API does not support custom HTTP handlers but you can use the Java HTTP handlers in your BDL scenario, by specifying the option --http-handler http_handler in the command line.

One or more --http-handler options can be used in the command string.

In the example, this option is used to launch the GIP Console application with authentication parameters. (Line breaks have been added to the command examples to improve readability.)

Example: SSO authentication

In the example: auth:admin:admin instructs the GIPSSOHandler to log in with the admin user name and password.

fglrun consoleapp_login ua 
   --url http://myserver:6394/ua/r/admin/ConsoleApp 
   --http-handler com.fourjs.ggc.httphandler.GIPSSOHandler,auth:admin:admin