Skip to main content
summaryrefslogtreecommitdiffstats
blob: 972509c147d813f68132a6f6b6c556f2a65f20f8 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<cdoServer>

	<!--
	<acceptor type="http"/>
	-->

	<acceptor type="tcp" listenAddr="0.0.0.0" port="2036">
		<!--
		<negotiator type="challenge" description="/temp/users.db"/>
		-->
	</acceptor>

	<repository name="repo1">
		<!--
		<property name="overrideUUID" value="1ff5d226-b1f0-40fb-aba2-0c31b38c764f"/>
		-->
		<property name="supportingAudits" value="true"/>
		<property name="supportingBranches" value="false"/>
		
		<!--
			Objectivity store FD configuration, by passing _DEFAULT_ the internal
			default values will be user, for example, lockserverHost="_DEFAULT_" will use
			the local host.  
		-->

		<store type="objectivity">
			<fdConfig name="test"
				lockserverHost = "_DEFAULT_"
				fdDirPath = "c:\data"
				fdFileHost = "_DEFAULT_"
				fdNumber = "5555"
				dbDirPath = "_DEFAULT_"
				pageSize = "_DEFAULT_"
				SessionMinCacheSize = "600"
				SessionMaxCacheSize = "1000">
			</fdConfig>
		</store>
	</repository>

</cdoServer>

Back to the top