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
This is an old revision of the document!
If you use the DBSecurityManager for authentication or if you use a database in your application, the configuration is in your applications config.xml.
The configuration is plain xml and it's possible to use encryption. It's also possible to read the configuration via JNDI.
Another option is that you use JNDI to create a database connection. In this case, you should set the JDBC URL to something like this:
- config.xml
<application> ... <securitymanager> <class>com.sibvisions.rad.server.security.DBSecurityManager</class> <database> <url>java:/comp/env/jvx/myapp/config/db</url> </database> </securitymanager> ... </application>
The JNDI resource can be an instance of DBAccess, IConnectionPool, java.sql.Connection or javax.sql.DataSource.