> Is there documentation about setting this up for an SQL server? No. It's really a matter of selecting an appropriate JDBC driver and figuring out the connection string and related data source configuration properties. Here's what we use for testing against SQL Server using the Microsoft JDBC driver:
database.dialect=org.hibernate.dialect.SQLServerDialect database.driverClass=com.microsoft.sqlserver.jdbc.SQLServerDriver database.url=jdbc:sqlserver://some.host.vt.edu:1433;databaseName=cas I strongly recommend you consider a database connection pooling configuration for production use. I just added an example of that to http://www.ja-sig.org/wiki/display/CASUM/JpaTicketRegistry, which is based on what we use in production. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
