Trace: • Database Connection via JNDI • User-Defined Session Manager and Object Provider • Password Policy Integration • Create an Anonymous Connection
This is an old revision of the document!
You have different options if you need a connection before the user is authenticated. You could establish a connection with pre-configured username and password (but this isn't high secure). You could use JVx' standard AUTOLOGIN feature via database configuration (Table AUTOLOGIN) or you could create an anonymous connection.
An anonymous connection is similar to a connection created via Autologin, but in Autologin case you store the login key on the client machine. An anonymous connection doesn't store anything on the client.
Establish an anonymous connection
You have to do following steps:
- Change the security manager of your application, in your config.xml, to
com.sibvisions.apps.server.security.AnonymousDBSecurityManager
- Configure a new User in the database table USERS with ANONYMOUS set to Y
- Create the connection:
MasterConnection con = new MasterConnection(createConnection()); con.setApplicationName(getLauncher().getParameter(ILauncher.PARAM_APPLICATIONNAME); con.setProperty(IConnectionConstants.PREFIX_CLIENT + "login.anonymous", "true"); con.setTimeout(-1);