-
Notifications
You must be signed in to change notification settings - Fork 3
/
openxds.properties
98 lines (83 loc) · 3.24 KB
/
openxds.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#=====================================================
# Database configurations - jdbc drivers
# pooled and xa compliant
#=====================================================
#database configuration for Postgres
openxds.db.driver=org.postgresql.Driver
openxds.db.url=jdbc:postgresql://postgresql-openxds/openxds
openxds.db.username=openxds
openxds.db.password=openxds
openxds.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
#database configuration for mysql
#openxds.db.driver=com.mysql.jdbc.Driver
#openxds.db.url=jdbc:mysql://localhost:3306/openxds
#openxds.db.username=openxds
#openxds.db.password=openxds
#openxds.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
#database configuration for Postgres
logs.db.driver=org.postgresql.Driver
logs.db.url=jdbc:postgresql://postgresql-openxds/log2
logs.db.username=openxds
logs.db.password=openxds
logs.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
#database configuration for mysql
#logs.db.driver=com.mysql.jdbc.Driver
#logs.db.url=jdbc:mysql://localhost:3306/log2
#logs.db.username=logs
#logs.db.password=xdslogs
#logs.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
#======================================================
# Configurations common to both Repository and Registry
#======================================================
# IHE actor configuration directory
#for IDE development
#ihe.actors.dir = ../openxds-core/src/main/resources/actors
#for war
#ihe.actors.dir =/conf/actors
#for jar
ihe.actors.dir =./conf/actors
# axis2 repository directory
#for IDE development
#axis2.repo.dir = ../openxds-core/src/main/resources/axis2repository
#for war
#axis2.repo.dir =/conf/axis2repository
#for jar
axis2.repo.dir =./conf/axis2repository
# Schema directory for schema validation
#for IDE development
#xds.schema.dir=../iheos/src/main/resources/schema
#for war
#xds.schema.dir=/conf/schema
#for jar
xds.schema.dir=./conf/schema
#=====================================================
# Repository specific configurations
#=====================================================
#The unique id of this repository
repository.uniqueId=1.3.6.1.4.1.21367.2010.1.2.1125
#The base directory of file system repository. This
#property is not used if the repository is not the file
#system based.
#file.system.repository.base.dir=C:/OpenXDS/repository
#=====================================================
# Registry specific configurations
#=====================================================
#If true, it will check whether the patient id exists in
#the registry before submitting meta data to the registry.
validate.patient.id=false
#If true, the metadata submitted to the registry will be
#validated.
validate.metadata=false
#The maximal number of documents that can be returned to a
#stored query
query.max.return=25
#=====================================================
# Gateway specific configurations
#=====================================================
#The home community id
home.community.id=urn:oid:1.3.6.1.4.1.21367.2010.1.2.2045
#Default number of Initiating Gateway threads
ig.threads.number=5
#Time out waiting for responding gateway responses in
#milliseconds
ig.timeout=10000