-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from dgunda1/master
1.7.12a fix
- Loading branch information
Showing
110 changed files
with
6,129 additions
and
3,081 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
#Ant build property file | ||
|
||
## JBOSS HOME | ||
jboss.home=/opt/wildfly-10.0.0.Final | ||
jboss.home=/opt/wildfly-17.0.1.Final | ||
axis2.war.name=i2b2.war | ||
|
||
report=test-reports | ||
testfiledir=testfiles | ||
testhost=http://127.0.0.1:9090/i2b2/services |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,105 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
_____ __ __ _____ _ _____ | ||
| __ \| \/ | | __ \ | | / ____| | ||
| |__) | \ / | | | | | __ _| |_ __ _| (___ ___ _ _ _ __ ___ ___ | ||
| ___/| |\/| | | | | |/ _` | __/ _` |\___ \ / _ \| | | | '__/ __/ _ \ | ||
| | | | | | | |__| | (_| | || (_| |____) | (_) | |_| | | | (_| __/ | ||
|_| |_| |_| |_____/ \__,_|\__\__,_|_____/ \___/ \__,_|_| \___\___| | ||
--> | ||
<datasources xmlns="http://www.jboss.org/ironjacamar/schema"> | ||
<!-- | ||
_____ ______ _____ _______ _____ ____ _ _ __ | ||
/ ____| ____/ ____|__ __|_ _/ __ \| \ | | /_ | | ||
| (___ | |__ | | | | | || | | | \| | | | | ||
\___ \| __|| | | | | || | | | . ` | | | | ||
____) | |___| |____ | | _| || |__| | |\ | | | | ||
|_____/|______\_____| |_| |_____\____/|_| \_| |_| | ||
The bootstrap points to the data source for your database lookup table which is a hivedata table, this is required. | ||
1) This database defaults to Oracle, uncomment SQL Server or PostgreSQL and comment out the Oracle one. | ||
2) Update the <connection-url> with the location of your hostname, port and SID (Oracle Only). | ||
2) Update the <user-name> with the database user | ||
3) Update the <password> with the database password | ||
--> | ||
<datasource jta="false" jndi-name="java:/PMBootStrapDS" | ||
pool-name="PMBootStrapDS" enabled="true" use-ccm="false"> | ||
<connection-url>jdbc:oracle:thin:@localhost:1521:xe</connection-url> | ||
<driver-class>oracle.jdbc.OracleDriver</driver-class> | ||
<driver>ojdbc6.jar</driver> | ||
<driver>ojdbc8.jar</driver> | ||
<security> | ||
<user-name>i2b2pm</user-name> | ||
<password>demouser</password> | ||
</security> | ||
<validation> | ||
<valid-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.oracle.OracleValidConnectionChecker"/> | ||
<validate-on-match>false</validate-on-match> | ||
<background-validation>false</background-validation> | ||
</validation> | ||
<background-validation>true</background-validation> | ||
<background-validation-millis>60000</background-validation-millis> | ||
<use-fast-fail>true</use-fast-fail> | ||
<check-valid-connection-sql>SELECT 1 FROM DUAL</check-valid-connection-sql> | ||
</validation> | ||
<statement> | ||
<share-prepared-statements>false</share-prepared-statements> | ||
</statement> | ||
</datasource> | ||
|
||
<!-- | ||
|
||
<!-- SQL SERVER EXAMPLE --> | ||
<!-- | ||
<datasource jta="false" jndi-name="java:/PMBootStrapDS" | ||
pool-name="PMBootStrapDS" enabled="true" use-ccm="false"> | ||
<connection-url>jdbc:postgresql://localhost:5432/i2b2</connection-url> | ||
<driver-class>org.postgresql.Driver</driver-class> | ||
<driver>postgresql-9.2-1002.jdbc4.jar</driver> | ||
<connection-url>jdbc:sqlserver://localhost:1433</connection-url> | ||
<driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class> | ||
<driver>mssql-jdbc-7.4.1.jre8.jar</driver> | ||
<security> | ||
<user-name>i2b2pm</user-name> | ||
<password>demouser</password> | ||
</security> | ||
<validation> | ||
<valid-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.mssql.MSSQLValidConnectionChecker"/> | ||
<validate-on-match>false</validate-on-match> | ||
<background-validation>false</background-validation> | ||
<background-validation>true</background-validation> | ||
<background-validation-millis>60000</background-validation-millis> | ||
<use-fast-fail>true</use-fast-fail> | ||
<check-valid-connection-sql>SELECT 1</check-valid-connection-sql> | ||
</validation> | ||
<statement> | ||
<share-prepared-statements>false</share-prepared-statements> | ||
</statement> | ||
</datasource> | ||
--> | ||
|
||
<!-- POSTGRESQL EXAMPLE --> | ||
<!-- | ||
<datasource jta="false" jndi-name="java:/PMBootStrapDS" | ||
pool-name="PMBootStrapDS" enabled="true" use-ccm="false"> | ||
<connection-url>jdbc:sqlserver://localhost:1433</connection-url> | ||
<driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class> | ||
<driver>sqljdbc4.jar</driver> | ||
<connection-url>jdbc:postgresql://localhost:5432/i2b2</connection-url> | ||
<driver-class>org.postgresql.Driver</driver-class> | ||
<driver>postgresql-42.2.8.jar</driver> | ||
<security> | ||
<user-name>i2b2pm</user-name> | ||
<password>demouser</password> | ||
</security> | ||
<validation> | ||
<valid-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.mssql.MSSQLValidConnectionChecker"></valid-connection-checker> | ||
<validate-on-match>false</validate-on-match> | ||
<valid-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.postgres.PostgreSQLValidConnectionChecker"/> | ||
<validate-on-match>false</validate-on-match> | ||
<background-validation>true</background-validation> | ||
<background-validation-millis>60000</background-validation-millis> | ||
<use-fast-fail>true</use-fast-fail> | ||
<check-valid-connection-sql>SELECT 1</check-valid-connection-sql> | ||
</validation> | ||
<statement> | ||
<share-prepared-statements>false</share-prepared-statements> | ||
</statement> | ||
</datasource> | ||
--> | ||
--> | ||
</datasources> | ||
|
Oops, something went wrong.