Trace: • Manual Menu Definition • Using DBSecurityManager • Replace JVx' standard Application With ProjX • REST API Filter • User-Defined Session Manager and Object Provider • Change Predefined Custom Object Names • Database Connection via JNDI • Application Without Authentication
This is an old revision of the document!
Sometimes it's useful to create an application without login. This kind of application is perfect for public areas or if you offer free services. It's not a problem to code such an application but it's also possible to configure this requirement.
Simply use the ConnectAuthenticator
in your application.xml:
<Application.authenticator>com.sibvisions.apps.auth.ConnectAuthenticator</Application.authenticator>
and set NoSecurityManager via config.xml:
<securitymanager> <class>com.sibvisions.rad.server.security.NoSecurityManager</class> </securitymanager>
These two settings will change your application from a restricted to a public application without user login.