Hide Forgot
Right now we can point Skynet to a DB server other than the production one by editing the datasource in standalone.xml. This allows another server to be used. However, it is not possible to change the name of the database. Whatever name you put, the app connects to the "Skynet" database. Possibly the cause of this is line 36 of http://sourceforge.net/p/topicindex/code/197/tree/trunk/src/main/com/redhat/topicindex/entity/Category.java: @Table(name = "Category", catalog = "Skynet", uniqueConstraints = @UniqueConstraint(columnNames = 37 { "CategoryName" })) Does the inclusion of the Catalog name override the datasource setting?
Fixed in 20111107-1418 The catalog overrides the datasource, so with the catalog removed the datasource needs to specify the default database.