Project

General

Profile

1 878 berkley
<!--
2
  * properties.html
3
  *
4
  *      Authors: Chad Berkley
5 4243 daigle
  *    Copyright: 2008 Regents of the University of California and the
6 878 berkley
  *               National Center for Ecological Analysis and Synthesis
7
  *  For Details: http://www.nceas.ucsb.edu/
8
  *      Created: 2001 January 23
9
  *      Version:
10
  *    File Info: '$ '
11
  *
12
  *
13
-->
14
<HTML>
15
<HEAD>
16 4169 daigle
<TITLE>Metacat Properties Files</TITLE>
17 3780 daigle
<link rel="stylesheet" type="text/css" href="./default.css">
18 878 berkley
</HEAD>
19
<BODY>
20
  <table width="100%">
21
    <tr>
22
      <td class="tablehead" colspan="2"><p class="label">Metacat Properties File</p></td>
23
      <td class="tablehead" colspan="2" align="right">
24
        <a href="./datafiles.html">Back</a> | <a href="./metacattour.html">Home</a> |
25 2131 costa
        <a href="./harvester.html">Next</a>
26 878 berkley
      </td>
27
    </tr>
28
  </table>
29 4169 daigle
  <p> Metacat Server has properties that are stored in two general locations.
30
     Global properties are held in:
31
     <p class="indent"><em>&lt;CONTEXT_DIR&gt;*/WEB_INF/metacat.properties</em>.</p>
32
     Skin specific properties are set on a per-skin basis in:
33
     <p class="indent"><em>&lt;CONTEXT_DIR&gt;*/WEB_INF/style/skins/&lt;SKIN_NAME&gt;/&lt;SKIN_NAME&gt;.properties</em></p>
34
  </p>
35
36
  <p>
37
     The most dynamic properties are modified using the internal <a href="./metacatconfigure.html">Metacat configuration utility </a>.
38
     However, it may be necessary to manually edit a configuration file to update more static values.
39
  </p>
40
41
  <p>
42
     The list of properties shown on this page gives the following information about each property:
43
     <ul>
44
       <li> <b>Property Name</b> - the header for each section is the name of the
45
         property as it appears in the property file.</li>
46
       <li> <b>Default Value</b> - the default value set for that property if any. </li>
47
       <li> <b>Description</b> - what does the property control and how can it be set. </li>
48
       <li> <b>Set Method</b> - how does the value get set in the properties file.  There are
49
         two options:
50
         <ul>
51
           <li> Configuration Utility - the value is set via the internal <a href="./metacatconfigure.html">Metacat configuration utility </a></li>
52
           <li> Manually - the value is set to a default that can only be changed by manually editing the configuration file. </li>
53
         </ul>
54
       <li> <b>Example</b> - an example setting for the property.</li>
55
     </ul>
56 3591 costa
  </p>
57 4169 daigle
58
  <p class="footnote">
59
     (* CONTEXT_DIR refers to the directory where the Metacat application code
60
     lives.  This is a combination of the web application directory and the
61
     metacat context directory.  This usually looks something like
62
     /usr/local/tomcat/webapps/knb.  However, your webapps directory could
63
     be somewhere besides the tomcat directory and your context could be
64
     something other than knb.)
65
  </p>
66
67 4246 daigle
  <h1>Index</h1>
68
  <div class="index-header"><a href="#GlobalMetacatProperties">Global Metacat Properties</a></div>
69
    <div class="index-entry"><a href="#server.name">Server Values</a></div>
70
    <div class="index-entry"><a href="#application.metacatVersion">Application Values</a></div>
71
    <div class="index-entry"><a href="#database.connectionURI">Database Values</a></div>
72
    <div class="index-entry"><a href="#auth.class">Authorization Values</a></div>
73
    <div class="index-entry"><a href="#ldap.administrators">LDAP Values</a></div>
74
    <div class="index-entry"><a href="#xml.saxparser">XML/EML Values</a></div>
75
76
  <a name="GlobalMetacatProperties"></a><h1>Global Metacat Properties - (metacat.properties) </h1>
77 4169 daigle
  <hr>
78
79
  <a name="server.name"></a><h1 class="property-main"> server.name </h1>
80
  <div class="property-description-line">
81
    <h2 class="property-inline"> Default Value: </h2>
82
    <p class="property-text">localhost</p>
83
  </div>
84
  <div class="property-description-line">
85
    <h2 class="property-inline"> Set Method: </h2>
86
    <p class="property-text">Configuration Utility</p>
87
  </div>
88
  <div class="property-description-line">
89
    <h2 class="property-inline"> Description: </h2>
90
    <p class="property-text">The network host name that will be
91
      used to access Metacat.  Note that this is not necessarily the physical
92
      name of the server running Metacat.  The host name should not include
93
      the protocol prefix (http://).</p>
94
  </div>
95
  <div class="property-description-line">
96
    <h2 class="property-inline"> Example: </h2>
97
    <p class="property-text">knb.ecoinformatics.org</p>
98
  </div>
99
100
  <a name="server.httpPort"></a><h1 class="property-main"> server.httpPort </h1>
101
  <div class="property-description-line">
102
    <h2 class="property-inline"> Default Value: </h2>
103
    <p class="property-text">80</p>
104
  </div>
105
  <div class="property-description-line">
106
    <h2 class="property-inline"> Set Method: </h2>
107
    <p class="property-text">Configuration Utility</p>
108
  </div>
109
  <div class="property-description-line">
110
    <h2 class="property-inline"> Description: </h2>
111
    <p class="property-text">The network port that will be
112
      used to access Metacat for non-secure (standard) connections.
113
      This is usually 80 if Apache web server is running (typical install), and
114
      8080 if Tomcat is running alone, but both Apache and Tomcat could
115
      have been configured to listen on alternate ports. </p>
116
  </div>
117
  <div class="property-description-line">
118
    <h2 class="property-inline"> Example: </h2>
119
    <p class="property-text">80</p>
120
  </div>
121
122
  <a name="server.httpSSLPort"></a><h1 class="property-main"> server.httpSSLPort </h1>
123
  <div class="property-description-line">
124
    <h2 class="property-inline"> Default Value: </h2>
125
    <p class="property-text">443</p>
126
  </div>
127
  <div class="property-description-line">
128
    <h2 class="property-inline"> Set Method: </h2>
129
    <p class="property-text">Configuration Utility</p>
130
  </div>
131
  <div class="property-description-line">
132
    <h2 class="property-inline"> Description: </h2>
133
    <p class="property-text">The network port that will be
134
      used to access Metacat for secure connections.
135
      This is usually 443 if Apache web server is running (typical install), and
136
      8443 if Tomcat is running alone, but both Apache and Tomcat could
137
      have been configured to listen on alternate ports. </p>
138
  </div>
139
  <div class="property-description-line">
140
    <h2 class="property-inline"> Example: </h2>
141
    <p class="property-text">443</p>
142
  </div>
143
144
  <br>
145
146
  <a name="application.metacatVersion"></a><h1 class="property-main"> application.metacatVersion </h1>
147
  <div class="property-description-line">
148
    <h2 class="property-inline"> Default Value: </h2>
149
    <p class="property-text">1.9.0</p>
150
  </div>
151
  <div class="property-description-line">
152
    <h2 class="property-inline"> Set Method: </h2>
153
    <p class="property-text">Manual</p>
154
  </div>
155
  <div class="property-description-line">
156
    <h2 class="property-inline"> Description: </h2>
157
    <p class="property-text">The Metacat version number.  usually, this should
158
    never be changed.  It is set by the build engineer at build time.</p>
159
  </div>
160
  <div class="property-description-line">
161
    <h2 class="property-inline"> Example: </h2>
162
    <p class="property-text">1.9.0</p>
163
  </div>
164
165
  <a name="application.deployDir"></a><h1 class="property-main"> application.deployDir </h1>
166
  <div class="property-description-line">
167
    <h2 class="property-inline"> Default Value: </h2>
168
    <p class="property-text">(none)</p>
169
  </div>
170
  <div class="property-description-line">
171
    <h2 class="property-inline"> Set Method: </h2>
172
    <p class="property-text">Configuration Utility</p>
173
  </div>
174
  <div class="property-description-line">
175
    <h2 class="property-inline"> Description: </h2>
176
    <p class="property-text">The directory where web applications are deployed.
177
      Many times this is in a directory named "webapps" in the Tomcat installation
178
      directory.  However, Tomcat may be configured to look in a different directory.</p>
179
  </div>
180
  <div class="property-description-line">
181
    <h2 class="property-inline"> Example: </h2>
182
    <p class="property-text">/usr/local/tomcat/webapps</p>
183
  </div>
184
185
  <a name="application.context"></a><h1 class="property-main"> application.context </h1>
186
  <div class="property-description-line">
187
    <h2 class="property-inline"> Default Value: </h2>
188
    <p class="property-text">(none)</p>
189
  </div>
190
  <div class="property-description-line">
191
    <h2 class="property-inline"> Set Method: </h2>
192
    <p class="property-text">Configuration Utility</p>
193
  </div>
194
  <div class="property-description-line">
195
    <h2 class="property-inline"> Description: </h2>
196
    <p class="property-text">Applications run in individual directories in the applicaton
197
      deployment directory.  The name of the application directory is the application
198
      context. This corresponds to the first part of the war file name (the part before .war).
199
      Most commonly, this is "knb", but it can be changed to other things.</p>
200
  </div>
201
  <div class="property-description-line">
202
    <h2 class="property-inline"> Example: </h2>
203
    <p class="property-text">knb</p>
204
  </div>
205
206
  <a name="application.default-style"></a><h1 class="property-main"> application.default-style </h1>
207
  <div class="property-description-line">
208
    <h2 class="property-inline"> Default Value: </h2>
209
    <p class="property-text">default</p>
210
  </div>
211
  <div class="property-description-line">
212
    <h2 class="property-inline"> Set Method: </h2>
213
    <p class="property-text">Configuration Utility</p>
214
  </div>
215
  <div class="property-description-line">
216
    <h2 class="property-inline"> Description: </h2>
217
    <p class="property-text">There are some custom web skins available in Metacat.
218
    Typically these are associated with an organizational theme.  If there is not
219
    a custom skin for your organization, you should leave it as "default".</p>
220
  </div>
221
  <div class="property-description-line">
222
    <h2 class="property-inline"> Example: </h2>
223
    <p class="property-text">default</p>
224
  </div>
225
226
  <a name="application.knbSiteURL"></a><h1 class="property-main"> application.knbSiteURL </h1>
227
  <div class="property-description-line">
228
    <h2 class="property-inline"> Default Value: </h2>
229
    <p class="property-text">http://knb.ecoinformatics.org</p>
230
  </div>
231
  <div class="property-description-line">
232
    <h2 class="property-inline"> Set Method: </h2>
233
    <p class="property-text">Configuration Utility</p>
234
  </div>
235
  <div class="property-description-line">
236
    <h2 class="property-inline"> Description: </h2>
237
    <p class="property-text">The KNB site to redirect to.</p>
238
  </div>
239
  <div class="property-description-line">
240
    <h2 class="property-inline"> Example: </h2>
241
    <p class="property-text">http://knb.ecoinformatics.org</p>
242
  </div>
243
244
  <a name="application.datafilepath"></a><h1 class="property-main"> application.datafilepath </h1>
245
  <div class="property-description-line">
246
    <h2 class="property-inline"> Default Value: </h2>
247
    <p class="property-text">/var/metacat/data</p>
248
  </div>
249
  <div class="property-description-line">
250
    <h2 class="property-inline"> Set Method: </h2>
251
    <p class="property-text">Configuration Utility</p>
252
  </div>
253
  <div class="property-description-line">
254
    <h2 class="property-inline"> Description: </h2>
255
    <p class="property-text">This is the directory whera data files will be stored.
256
      This should be some directory outside the Metacat installation directories so
257
      data files will not get lost when Metacat is upgraded.  The data file directory
258
      must be writable by the user that starts Tomcat (and thus Metacat).</p>
259
  </div>
260
  <div class="property-description-line">
261
    <h2 class="property-inline"> Example: </h2>
262
    <p class="property-text">/var/metacat/data</p>
263
  </div>
264
265
  <a name="application.inlinedatafilepath"></a><h1 class="property-main"> application.inlinedatafilepath </h1>
266
  <div class="property-description-line">
267
    <h2 class="property-inline"> Default Value: </h2>
268
    <p class="property-text">/var/metacat/inline-data</p>
269
  </div>
270
  <div class="property-description-line">
271
    <h2 class="property-inline"> Set Method: </h2>
272
    <p class="property-text">Configuration Utility</p>
273
  </div>
274
  <div class="property-description-line">
275
    <h2 class="property-inline"> Description: </h2>
276
    <p class="property-text">This is the directory where inline data files will
277
      be stored.  Inline data files are created from data that is embedded in EML
278
      metadata.  This should be some directory outside the Metacat installation
279
      directories so data files will not get lost when Metacat is upgraded.  For
280
      clarity of data, this should probably not be the same as application.datafilepath.
281
      The data file directory must be writable by the user that starts Tomcat (and thus Metacat).</p>
282
  </div>
283
  <div class="property-description-line">
284
    <h2 class="property-inline"> Example: </h2>
285
    <p class="property-text">/var/metacat/inline-data</p>
286
  </div>
287
288
  <a name="application.cgiDir"></a><h1 class="property-main"> application.cgiDir </h1>
289
  <div class="property-description-line">
290
    <h2 class="property-inline"> Default Value: </h2>
291 4243 daigle
    <p class="property-text">/cgi</p>
292 4169 daigle
  </div>
293
  <div class="property-description-line">
294
    <h2 class="property-inline"> Set Method: </h2>
295 4243 daigle
    <p class="property-text">Manual</p>
296 4169 daigle
  </div>
297
  <div class="property-description-line">
298
    <h2 class="property-inline"> Description: </h2>
299
    <p class="property-text">This is the directory that is configured in
300 4243 daigle
      Apache web server to point to Metacat cgi executables.  The directory is given
301
      relative to the Metacat context directory since the Metacat cgi scripts
302
      are installed with the application code.  For example, if Metacat is installed
303
      in /usr/local/tomcat/knb, then an application.cgiDir of /cgi would point to <br>
304
      &nbsp;&nbsp;&nbsp;&nbsp/usr/local/tomcat/knb/cgi-dir</p>
305 4169 daigle
  </div>
306
  <div class="property-description-line">
307
    <h2 class="property-inline"> Example: </h2>
308 4243 daigle
    <p class="property-text">/cgi-bin</p>
309 4188 daigle
  </div>
310 4169 daigle
311 4188 daigle
  <br>
312
313
  <a name="database.connectionURI"></a><h1 class="property-main"> database.connectionURI </h1>
314
  <div class="property-description-line">
315
    <h2 class="property-inline"> Default Value: </h2>
316
    <p class="property-text">jdbc:postgresql://localhost/metacat</p>
317
  </div>
318
  <div class="property-description-line">
319
    <h2 class="property-inline"> Set Method: </h2>
320
    <p class="property-text">Configuration Utility</p>
321
  </div>
322
  <div class="property-description-line">
323
    <h2 class="property-inline"> Description: </h2>
324
    <p class="property-text">The jdbc connection URI for the main
325
    database instance of Metacat.  The uri is formatted like: <br>
326
    &nbsp;&nbsp;&nbsp;&nbsp;jdbc:&lt;database_type&gt;:thin@&lt;your_server_name&gt;:1521:&lt;metacat_database_name&gt;<br>
327
    An empty database must have been created prior to Metacat
328
    configuration.</p>
329
  </div>
330
  <div class="property-description-line">
331
    <h2 class="property-inline"> Example: </h2>
332
    <p class="property-text">jdbc:postgresql://yourserver.yourdomain.edu/metacat</p>
333
  </div>
334
335 4177 daigle
  <a name="database.user"></a><h1 class="property-main"> database.user </h1>
336
  <div class="property-description-line">
337
    <h2 class="property-inline"> Default Value: </h2>
338
    <p class="property-text">(none)</p>
339
  </div>
340
  <div class="property-description-line">
341
    <h2 class="property-inline"> Set Method: </h2>
342
    <p class="property-text">Configuration Utility</p>
343
  </div>
344
  <div class="property-description-line">
345
    <h2 class="property-inline"> Description: </h2>
346 4188 daigle
    <p class="property-text">The user for the main database instance
347
    of Metacat.  The user must have already been created on the database.</p>
348 4177 daigle
  </div>
349
  <div class="property-description-line">
350
    <h2 class="property-inline"> Example: </h2>
351 4188 daigle
    <p class="property-text">metacat-user</p>
352 4177 daigle
  </div>
353 4169 daigle
354 4188 daigle
  <a name="database.password"></a><h1 class="property-main"> database.password </h1>
355
  <div class="property-description-line">
356
    <h2 class="property-inline"> Default Value: </h2>
357
    <p class="property-text">(none)</p>
358
  </div>
359
  <div class="property-description-line">
360
    <h2 class="property-inline"> Set Method: </h2>
361
    <p class="property-text">Configuration Utility</p>
362
  </div>
363
  <div class="property-description-line">
364
    <h2 class="property-inline"> Description: </h2>
365
    <p class="property-text">The password of the user for the main
366
    database instance of Metacat.  The password must have already been created
367
    for the user.</p>
368
  </div>
369
  <div class="property-description-line">
370
    <h2 class="property-inline"> Example: </h2>
371
    <p class="property-text">securepassword4843</p>
372
  </div>
373
374
  <a name="database.type"></a><h1 class="property-main"> database.type </h1>
375
  <div class="property-description-line">
376
    <h2 class="property-inline"> Default Value: </h2>
377
    <p class="property-text">(none)</p>
378
  </div>
379
  <div class="property-description-line">
380
    <h2 class="property-inline"> Set Method: </h2>
381
    <p class="property-text">Configuration Utility</p>
382
  </div>
383
  <div class="property-description-line">
384
    <h2 class="property-inline"> Description: </h2>
385
    <p class="property-text">The type of database you are running.  Currently,
386
    there are two supported types, Oracle and Postgres.</p>
387
  </div>
388
  <div class="property-description-line">
389
    <h2 class="property-inline"> Example: </h2>
390
    <p class="property-text">postgres</p>
391
  </div>
392 4169 daigle
393 4188 daigle
  <a name="database.driver"></a><h1 class="property-main"> database.driver </h1>
394
  <div class="property-description-line">
395
    <h2 class="property-inline"> Default Value: </h2>
396
    <p class="property-text">(none)</p>
397
  </div>
398
  <div class="property-description-line">
399
    <h2 class="property-inline"> Set Method: </h2>
400
    <p class="property-text">Configuration Utility</p>
401
  </div>
402
  <div class="property-description-line">
403
    <h2 class="property-inline"> Description: </h2>
404
    <p class="property-text">The JDBC driver to be used to access the main
405
    database instance of Metacat.  There is one of these associated with each
406
    type of database.</p>
407
  </div>
408
  <div class="property-description-line">
409
    <h2 class="property-inline"> Example: </h2>
410
    <p class="property-text">org.postgresql.Driver</p>
411
  </div>
412 4169 daigle
413 4188 daigle
  <a name="database.adapter"></a><h1 class="property-main"> database.adapter </h1>
414
  <div class="property-description-line">
415
    <h2 class="property-inline"> Default Value: </h2>
416
    <p class="property-text">(none)</p>
417
  </div>
418
  <div class="property-description-line">
419
    <h2 class="property-inline"> Set Method: </h2>
420
    <p class="property-text">Configuration Utility</p>
421
  </div>
422
  <div class="property-description-line">
423
    <h2 class="property-inline"> Description: </h2>
424
    <p class="property-text">The adapter class that allows Metacat to access your
425
    database type.  There is one of these associated with each type of database.</p>
426
  </div>
427
  <div class="property-description-line">
428
    <h2 class="property-inline"> Example: </h2>
429
    <p class="property-text">edu.ucsb.nceas.dbadapter.PostgresqlAdapter</p>
430
  </div>
431 4169 daigle
432 4188 daigle
  <a name="database.scriptsuffix"></a><h1 class="property-main"> database.scriptsuffix.&lt;database_type&gt; </h1>
433
  <div class="property-description-line">
434
    <h2 class="property-inline"> Default Value: </h2>
435
    <p class="property-text">
436
      <br>&nbsp;&nbsp;&nbsp;&nbsp;database.scriptsuffix.postgres=postgres.sql<br>
437
      &nbsp;&nbsp;&nbsp;&nbsp;database.scriptsuffix.oracle=oracle.sql
438
    </p>
439
  </div>
440
  <div class="property-description-line">
441
    <h2 class="property-inline"> Set Method: </h2>
442
    <p class="property-text">Configuration Utility</p>
443
  </div>
444
  <div class="property-description-line">
445
    <h2 class="property-inline"> Description: </h2>
446
    <p class="property-text">There is a database.scriptsuffix entry for every
447
      supported type of database.  These tell the system which database scripts
448
      to run when installing or updating database schema.</p>
449
  </div>
450
  <div class="property-description-line">
451
    <h2 class="property-inline"> Example: </h2>
452
    <p class="property-text">postgres.sql</p>
453
  </div>
454
455
  <a name="database.upgradeVersion"></a><h1 class="property-main"> database.upgradeVersion.&lt;database_version&gt; </h1>
456
  <div class="property-description-line">
457
    <h2 class="property-inline"> Default Value: </h2>
458
    <p class="property-text">
459
      <br>&nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.0.0.0=xmltables,loaddtdschema<br>
460
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.2.0=upgrade-db-to-1.2<br>
461
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.3.0=upgrade-db-to-1.3<br>
462
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.4.0=upgrade-db-to-1.4<br>
463
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.5.0=upgrade-db-to-1.5<br>
464
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.6.0=upgrade-db-to-1.6<br>
465
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.7.0=upgrade-db-to-1.7<br>
466
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.8.0=upgrade-db-to-1.8<br>
467
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.9.0=upgrade-db-to-1.9
468
    </p>
469
  </div>
470
  <div class="property-description-line">
471
    <h2 class="property-inline"> Set Method: </h2>
472
    <p class="property-text">Configuration Utility</p>
473
  </div>
474
  <div class="property-description-line">
475
    <h2 class="property-inline"> Description: </h2>
476
    <p class="property-text">There is a database.scriptsuffix entry for every
477
      metacat database schema version. (Note that a schema version corresponds
478
      to an application version.) These tell the system which database scripts
479
      to run when installing or updating database schema.</p>
480
  </div>
481
  <div class="property-description-line">
482
    <h2 class="property-inline"> Example: </h2>
483
    <p class="property-text">upgrade-db-to-1.2</p>
484
  </div>
485
486
  <a name="database.initialConnections"></a><h1 class="property-main"> database.initialConnections </h1>
487
  <div class="property-description-line">
488
    <h2 class="property-inline"> Default Value: </h2>
489
    <p class="property-text">5</p>
490
  </div>
491
  <div class="property-description-line">
492
    <h2 class="property-inline"> Set Method: </h2>
493
    <p class="property-text">Manual</p>
494
  </div>
495
  <div class="property-description-line">
496
    <h2 class="property-inline"> Description: </h2>
497
    <p class="property-text"> The number of initial connection that
498
      Metacat creates to the database.</p>
499
  </div>
500
  <div class="property-description-line">
501
    <h2 class="property-inline"> Example: </h2>
502
    <p class="property-text">5</p>
503
  </div>
504
505
  <a name="database.incrementConnections"></a><h1 class="property-main"> database.incrementConnections </h1>
506
  <div class="property-description-line">
507
    <h2 class="property-inline"> Default Value: </h2>
508
    <p class="property-text">5</p>
509
  </div>
510
  <div class="property-description-line">
511
    <h2 class="property-inline"> Set Method: </h2>
512
    <p class="property-text">Manual</p>
513
  </div>
514
  <div class="property-description-line">
515
    <h2 class="property-inline"> Description: </h2>
516
    <p class="property-text"> The number of connections that are created
517
      when Metacat needs more connections.</p>
518
  </div>
519
  <div class="property-description-line">
520
    <h2 class="property-inline"> Example: </h2>
521
    <p class="property-text">5</p>
522
  </div>
523
524
  <a name="database.maximumConnections"></a><h1 class="property-main"> database.maximumConnections </h1>
525
  <div class="property-description-line">
526
    <h2 class="property-inline"> Default Value: </h2>
527
    <p class="property-text">25</p>
528
  </div>
529
  <div class="property-description-line">
530
    <h2 class="property-inline"> Set Method: </h2>
531
    <p class="property-text">Manual</p>
532
  </div>
533
  <div class="property-description-line">
534
    <h2 class="property-inline"> Description: </h2>
535
    <p class="property-text"> The maximum number of database connections
536
      Metacat can make.</p>
537
  </div>
538
  <div class="property-description-line">
539
    <h2 class="property-inline"> Example: </h2>
540
    <p class="property-text">25</p>
541
  </div>
542
543
  <a name="database.maximumConnectionAge"></a><h1 class="property-main"> database.maximumConnectionAge </h1>
544
  <div class="property-description-line">
545
    <h2 class="property-inline"> Default Value: </h2>
546
    <p class="property-text">120000</p>
547
  </div>
548
  <div class="property-description-line">
549
    <h2 class="property-inline"> Set Method: </h2>
550
    <p class="property-text">Manual</p>
551
  </div>
552
  <div class="property-description-line">
553
    <h2 class="property-inline"> Description: </h2>
554
    <p class="property-text"> The maximum time in milliseconds that a database
555
      connection can live.</p>
556
  </div>
557
  <div class="property-description-line">
558
    <h2 class="property-inline"> Example: </h2>
559
    <p class="property-text">120000</p>
560
  </div>
561
562
  <a name="database.maximumConnectionTime"></a><h1 class="property-main"> database.maximumConnectionTime </h1>
563
  <div class="property-description-line">
564
    <h2 class="property-inline"> Default Value: </h2>
565
    <p class="property-text">60000</p>
566
  </div>
567
  <div class="property-description-line">
568
    <h2 class="property-inline"> Set Method: </h2>
569
    <p class="property-text">Manual</p>
570
  </div>
571
  <div class="property-description-line">
572
    <h2 class="property-inline"> Description: </h2>
573
    <p class="property-text"> The maximum time in milliseconds that a database
574
      connection can accumulate in actual connection time.</p>
575
  </div>
576
  <div class="property-description-line">
577
    <h2 class="property-inline"> Example: </h2>
578
    <p class="property-text">60000</p>
579
  </div>
580
581
  <a name="database.maximumUsageNumber"></a><h1 class="property-main"> database.maximumUsageNumber </h1>
582
  <div class="property-description-line">
583
    <h2 class="property-inline"> Default Value: </h2>
584
    <p class="property-text">100</p>
585
  </div>
586
  <div class="property-description-line">
587
    <h2 class="property-inline"> Set Method: </h2>
588
    <p class="property-text">Manual</p>
589
  </div>
590
  <div class="property-description-line">
591
    <h2 class="property-inline"> Description: </h2>
592
    <p class="property-text"> The maximum number of times a single connection
593
      can be used.</p>
594
  </div>
595
  <div class="property-description-line">
596
    <h2 class="property-inline"> Example: </h2>
597
    <p class="property-text">100</p>
598
  </div>
599
600
  <a name="database.numberOfIndexingThreads"></a><h1 class="property-main"> database.numberOfIndexingThreads </h1>
601
  <div class="property-description-line">
602
    <h2 class="property-inline"> Default Value: </h2>
603
    <p class="property-text">5</p>
604
  </div>
605
  <div class="property-description-line">
606
    <h2 class="property-inline"> Set Method: </h2>
607
    <p class="property-text">Manual</p>
608
  </div>
609
  <div class="property-description-line">
610
    <h2 class="property-inline"> Description: </h2>
611
    <p class="property-text"> The number of threads available for indexing.</p>
612
  </div>
613
  <div class="property-description-line">
614
    <h2 class="property-inline"> Example: </h2>
615
    <p class="property-text">5</p>
616
  </div>
617
618
  <a name="database.indexingTimerTaskTime"></a><h1 class="property-main"> database.indexingTimerTaskTime </h1>
619
  <div class="property-description-line">
620
    <h2 class="property-inline"> Default Value: </h2>
621
    <p class="property-text">604800000</p>
622
  </div>
623
  <div class="property-description-line">
624
    <h2 class="property-inline"> Set Method: </h2>
625
    <p class="property-text">Manual</p>
626
  </div>
627
  <div class="property-description-line">
628
    <h2 class="property-inline"> Description: </h2>
629
    <p class="property-text"> The time in milliseconds between indexing.</p>
630
  </div>
631
  <div class="property-description-line">
632
    <h2 class="property-inline"> Example: </h2>
633
    <p class="property-text">604800000</p>
634
  </div>
635
636
  <a name="database.indexingInitialDelay"></a><h1 class="property-main"> database.indexingInitialDelay </h1>
637
  <div class="property-description-line">
638
    <h2 class="property-inline"> Default Value: </h2>
639
    <p class="property-text">3600000</p>
640
  </div>
641
  <div class="property-description-line">
642
    <h2 class="property-inline"> Set Method: </h2>
643
    <p class="property-text">Manual</p>
644
  </div>
645
  <div class="property-description-line">
646
    <h2 class="property-inline"> Description: </h2>
647
    <p class="property-text"> The delay in milliseconds before first indexing is executed.</p>
648
  </div>
649
  <div class="property-description-line">
650
    <h2 class="property-inline"> Example: </h2>
651
    <p class="property-text">3600000</p>
652
  </div>
653
654
  <a name="database.maximumIndexDelay"></a><h1 class="property-main"> database.maximumIndexDelay </h1>
655
  <div class="property-description-line">
656
    <h2 class="property-inline"> Default Value: </h2>
657
    <p class="property-text">5000</p>
658
  </div>
659
  <div class="property-description-line">
660
    <h2 class="property-inline"> Set Method: </h2>
661
    <p class="property-text">Manual</p>
662
  </div>
663
  <div class="property-description-line">
664
    <h2 class="property-inline"> Description: </h2>
665
    <p class="property-text"> The time in milliseconds that an indexing thread
666
      will wait when it can't get a doc id before retrying the indexing.</p>
667
  </div>
668
  <div class="property-description-line">
669
    <h2 class="property-inline"> Example: </h2>
670
    <p class="property-text">5000</p>
671
  </div>
672
673
  <a name="database.runDBConnectionRecycleThread"></a><h1 class="property-main"> database.runDBConnectionRecycleThread </h1>
674
  <div class="property-description-line">
675
    <h2 class="property-inline"> Default Value: </h2>
676
    <p class="property-text">off</p>
677
  </div>
678
  <div class="property-description-line">
679
    <h2 class="property-inline"> Set Method: </h2>
680
    <p class="property-text">Manual</p>
681
  </div>
682
  <div class="property-description-line">
683
    <h2 class="property-inline"> Description: </h2>
684
    <p class="property-text"> Determines whether the database connection
685
      pool should run a thread to recycle connections.  Possible values are
686
      "on" and "off"</p>
687
  </div>
688
  <div class="property-description-line">
689
    <h2 class="property-inline"> Example: </h2>
690
    <p class="property-text">off</p>
691
  </div>
692
693
  <a name="database.cycleTimeOfDBConnection"></a><h1 class="property-main"> database.cycleTimeOfDBConnection </h1>
694
  <div class="property-description-line">
695
    <h2 class="property-inline"> Default Value: </h2>
696
    <p class="property-text">30000</p>
697
  </div>
698
  <div class="property-description-line">
699
    <h2 class="property-inline"> Set Method: </h2>
700
    <p class="property-text">Manual</p>
701
  </div>
702
  <div class="property-description-line">
703
    <h2 class="property-inline"> Description: </h2>
704
    <p class="property-text"> The time in milliseconds between connection
705
      recycling runs.</p>
706
  </div>
707
  <div class="property-description-line">
708
    <h2 class="property-inline"> Example: </h2>
709
    <p class="property-text">30000</p>
710
  </div>
711
712
  <a name="database.queryignoredparams"></a><h1 class="property-main"> database.queryignoredparams </h1>
713
  <div class="property-description-line">
714
    <h2 class="property-inline"> Default Value: </h2>
715
    <p class="property-text">enableediting,foo</p>
716
  </div>
717
  <div class="property-description-line">
718
    <h2 class="property-inline"> Set Method: </h2>
719
    <p class="property-text">Manual</p>
720
  </div>
721
  <div class="property-description-line">
722
    <h2 class="property-inline"> Description: </h2>
723
    <p class="property-text"> Parameters to ignore in a structured
724
      xml query.</p>
725
  </div>
726
  <div class="property-description-line">
727
    <h2 class="property-inline"> Example: </h2>
728
    <p class="property-text">enableediting</p>
729
  </div>
730
731
  <a name="database.usexmlindex"></a><h1 class="property-main"> database.usexmlindex </h1>
732
  <div class="property-description-line">
733
    <h2 class="property-inline"> Default Value: </h2>
734
    <p class="property-text">true</p>
735
  </div>
736
  <div class="property-description-line">
737
    <h2 class="property-inline"> Set Method: </h2>
738
    <p class="property-text">Manual</p>
739
  </div>
740
  <div class="property-description-line">
741
    <h2 class="property-inline"> Description: </h2>
742
    <p class="property-text"> Determines whether to use xml
743
      indexes when finding documents.  Possible values are true
744
      and false.</p>
745
  </div>
746
  <div class="property-description-line">
747
    <h2 class="property-inline"> Example: </h2>
748
    <p class="property-text">true</p>
749
  </div>
750
751 4243 daigle
  <a name="database.appResultsetSize"></a><h1 class="property-main"> database.appResultsetSize </h1>
752
  <div class="property-description-line">
753
    <h2 class="property-inline"> Default Value: </h2>
754
    <p class="property-text">7000</p>
755
  </div>
756
  <div class="property-description-line">
757
    <h2 class="property-inline"> Set Method: </h2>
758
    <p class="property-text">Manual</p>
759
  </div>
760
  <div class="property-description-line">
761
    <h2 class="property-inline"> Description: </h2>
762
    <p class="property-text"> Determines the number of results that get sent
763
    back to an application from a query.</p>
764
  </div>
765
  <div class="property-description-line">
766
    <h2 class="property-inline"> Example: </h2>
767
    <p class="property-text">7000</p>
768
  </div>
769 4188 daigle
770 4243 daigle
  <a name="database.webResultsetSize"></a><h1 class="property-main"> database.webResultsetSize </h1>
771
  <div class="property-description-line">
772
    <h2 class="property-inline"> Default Value: </h2>
773
    <p class="property-text">7000</p>
774
  </div>
775
  <div class="property-description-line">
776
    <h2 class="property-inline"> Set Method: </h2>
777
    <p class="property-text">Manual</p>
778
  </div>
779
  <div class="property-description-line">
780
    <h2 class="property-inline"> Description: </h2>
781
    <p class="property-text"> Determines the number of results that get sent
782
    back to a web browser from a query.</p>
783
  </div>
784
  <div class="property-description-line">
785
    <h2 class="property-inline"> Example: </h2>
786
    <p class="property-text">7000</p>
787
  </div>
788 4188 daigle
789 4243 daigle
  <a name="database.xmlReturnfieldCount"></a><h1 class="property-main"> database.xmlReturnfieldCount </h1>
790
  <div class="property-description-line">
791
    <h2 class="property-inline"> Default Value: </h2>
792
    <p class="property-text">0</p>
793
  </div>
794
  <div class="property-description-line">
795
    <h2 class="property-inline"> Set Method: </h2>
796
    <p class="property-text">Manual</p>
797
  </div>
798
  <div class="property-description-line">
799
    <h2 class="property-inline"> Description: </h2>
800
    <p class="property-text"> If the results of a query have been returned
801
    more times than database.xmlReturnfieldCount, then those results will be
802
    inserted into the xml_queryresult table in the database.</p>
803
  </div>
804
  <div class="property-description-line">
805
    <h2 class="property-inline"> Example: </h2>
806
    <p class="property-text">0</p>
807
  </div>
808
809
  <a name="database.queryresultStringLength"></a><h1 class="property-main"> database.queryresultStringLength </h1>
810
  <div class="property-description-line">
811
    <h2 class="property-inline"> Default Value: </h2>
812
    <p class="property-text">500000</p>
813
  </div>
814
  <div class="property-description-line">
815
    <h2 class="property-inline"> Set Method: </h2>
816
    <p class="property-text">Manual</p>
817
  </div>
818
  <div class="property-description-line">
819
    <h2 class="property-inline"> Description: </h2>
820
    <p class="property-text"> This is used to set the max size of
821
    the query result string in the queryresult table. This should be
822
    set to some number less than 4000 if an Oracle database is being
823
    used.</p>
824
  </div>
825
  <div class="property-description-line">
826
    <h2 class="property-inline"> Example: </h2>
827
    <p class="property-text">500000</p>
828
  </div>
829
830
  <a name="database.queryresultCacheSize"></a><h1 class="property-main"> database.queryresultCacheSize </h1>
831
  <div class="property-description-line">
832
    <h2 class="property-inline"> Default Value: </h2>
833
    <p class="property-text">500</p>
834
  </div>
835
  <div class="property-description-line">
836
    <h2 class="property-inline"> Set Method: </h2>
837
    <p class="property-text">Manual</p>
838
  </div>
839
  <div class="property-description-line">
840
    <h2 class="property-inline"> Description: </h2>
841
    <p class="property-text"> The number of query results that will be cached.</p>
842
  </div>
843
  <div class="property-description-line">
844
    <h2 class="property-inline"> Example: </h2>
845
    <p class="property-text">500</p>
846
  </div>
847
848
  <a name="database.queryCacheOn"></a><h1 class="property-main"> database.queryCacheOn </h1>
849
  <div class="property-description-line">
850
    <h2 class="property-inline"> Default Value: </h2>
851
    <p class="property-text">on</p>
852
  </div>
853
  <div class="property-description-line">
854
    <h2 class="property-inline"> Set Method: </h2>
855
    <p class="property-text">Manual</p>
856
  </div>
857
  <div class="property-description-line">
858
    <h2 class="property-inline"> Description: </h2>
859
    <p class="property-text"> Determines whether query caching is turned on.  Acceptible
860
    values are &quot;on&quot; and &quot;off&quot;</p>
861
  </div>
862
  <div class="property-description-line">
863
    <h2 class="property-inline"> Example: </h2>
864
    <p class="property-text">on</p>
865
  </div>
866
867
  <br>
868
869
  <a name="auth.class"></a><h1 class="property-main"> auth.class </h1>
870
  <div class="property-description-line">
871
    <h2 class="property-inline"> Default Value: </h2>
872
    <p class="property-text">edu.ucsb.nceas.metacat.AuthLdap</p>
873
  </div>
874
  <div class="property-description-line">
875
    <h2 class="property-inline"> Set Method: </h2>
876
    <p class="property-text">Manual</p>
877
  </div>
878
  <div class="property-description-line">
879
    <h2 class="property-inline"> Description: </h2>
880
    <p class="property-text"> The class that is used for user authentication.  Currently,
881
    only the AuthLdap class is included in the Metacat distribution, but it is possible
882
    for an admin to implement other authentication strategies by implementing a Java
883
    class that extends the AuthInterface interface and rebuilding Metacat.</p>
884
  </div>
885
  <div class="property-description-line">
886
    <h2 class="property-inline"> Example: </h2>
887
    <p class="property-text">edu.ucsb.nceas.metacat.AuthLdap</p>
888
  </div>
889
890
  <a name="auth.timeoutMinutes"></a><h1 class="property-main"> auth.timeoutMinutes </h1>
891
  <div class="property-description-line">
892
    <h2 class="property-inline"> Default Value: </h2>
893
    <p class="property-text">180</p>
894
  </div>
895
  <div class="property-description-line">
896
    <h2 class="property-inline"> Set Method: </h2>
897
    <p class="property-text">Manual</p>
898
  </div>
899
  <div class="property-description-line">
900
    <h2 class="property-inline"> Description: </h2>
901
    <p class="property-text"> The number of minutes that a user will stay logged
902
    in to Metacat without any activity.</p>
903
  </div>
904
  <div class="property-description-line">
905
    <h2 class="property-inline"> Example: </h2>
906
    <p class="property-text">180</p>
907
  </div>
908
909
  <br>
910
911
  <a name="ldap.administrators"></a><h1 class="property-main"> ldap.administrators </h1>
912
  <div class="property-description-line">
913
    <h2 class="property-inline"> Default Value: </h2>
914
    <p class="property-text">(none)</p>
915
  </div>
916
  <div class="property-description-line">
917
    <h2 class="property-inline"> Set Method: </h2>
918
    <p class="property-text">Configuration Utility</p>
919
  </div>
920
  <div class="property-description-line">
921
    <h2 class="property-inline"> Description: </h2>
922
    <p class="property-text"> A colon separated list of The ldap users
923
    or groups that have administrative privileges to Metacat.  Note that
924
    during the intial installation of Metacat, the installer will be
925
    asked to enter this value.  They must enter a user or group that
926
    they have access to, or they will not be allowed to continue with
927
    the configuration.</p>
928
  </div>
929
  <div class="property-description-line">
930
    <h2 class="property-inline"> Example: </h2> <br>
931
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p><br>
932
    <p class="property-text">cn=yourgroup,o=NCEAS,dc=ecoinformatics,dc=org</p>
933
  </div>
934
935
  <a name="ldap.url"></a><h1 class="property-main"> ldap.url </h1>
936
  <div class="property-description-line">
937
    <h2 class="property-inline"> Default Value: </h2>
938
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
939
  </div>
940
  <div class="property-description-line">
941
    <h2 class="property-inline"> Set Method: </h2>
942
    <p class="property-text">Configuration Utility</p>
943
  </div>
944
  <div class="property-description-line">
945
    <h2 class="property-inline"> Description: </h2>
946
    <p class="property-text"> The url of the ldap server that Metacat
947
    should use for authentication.</p>
948
  </div>
949
  <div class="property-description-line">
950
    <h2 class="property-inline"> Example: </h2>
951
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
952
  </div>
953
954
  <a name="ldap.surl"></a><h1 class="property-main"> ldap.surl </h1>
955
  <div class="property-description-line">
956
    <h2 class="property-inline"> Default Value: </h2>
957
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
958
  </div>
959
  <div class="property-description-line">
960
    <h2 class="property-inline"> Set Method: </h2>
961
    <p class="property-text">Configuration Utility</p>
962
  </div>
963
  <div class="property-description-line">
964
    <h2 class="property-inline"> Description: </h2>
965
    <p class="property-text"> The url of the ldap server that Metacat
966
    should use for  secure authentication.</p>
967
  </div>
968
  <div class="property-description-line">
969
    <h2 class="property-inline"> Example: </h2>
970
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
971 4275 daigle
  </div>
972 4243 daigle
973
  <a name="ldap.allowedSubmitters"></a><h1 class="property-main"> ldap.allowedSubmitters </h1>
974
  <div class="property-description-line">
975
    <h2 class="property-inline"> Default Value: </h2>
976
    <p class="property-text">(none)</p>
977
  </div>
978
  <div class="property-description-line">
979
    <h2 class="property-inline"> Set Method: </h2>
980
    <p class="property-text">Configuration Utility</p>
981
  </div>
982
  <div class="property-description-line">
983
    <h2 class="property-inline"> Description: </h2>
984
    <p class="property-text"> A colon delimited list of users who should
985
    be allowed to submit documents. If no value is specified, all users will
986
    be allowed to submit documents.</p>
987
  </div>
988
  <div class="property-description-line">
989
    <h2 class="property-inline"> Example: </h2>
990
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
991
  </div>
992
993
  <a name="ldap.deniedSubmitters"></a><h1 class="property-main"> ldap.deniedSubmitters </h1>
994
  <div class="property-description-line">
995
    <h2 class="property-inline"> Default Value: </h2>
996
    <p class="property-text">(none)</p>
997
  </div>
998
  <div class="property-description-line">
999
    <h2 class="property-inline"> Set Method: </h2>
1000
    <p class="property-text">Configuration Utility</p>
1001
  </div>
1002
  <div class="property-description-line">
1003
    <h2 class="property-inline"> Description: </h2>
1004
    <p class="property-text"> A colon delimited list of users who should not
1005
    be allowed to submit documents. If no value is specified, all users will
1006
    be allowed to submit documents.</p>
1007
  </div>
1008
  <div class="property-description-line">
1009
    <h2 class="property-inline"> Example: </h2>
1010
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1011
  </div>
1012
1013
  <a name="ldap.connectTimeLimit"></a><h1 class="property-main"> ldap.connectTimeLimit </h1>
1014
  <div class="property-description-line">
1015
    <h2 class="property-inline"> Default Value: </h2>
1016
    <p class="property-text">5000</p>
1017
  </div>
1018
  <div class="property-description-line">
1019
    <h2 class="property-inline"> Set Method: </h2>
1020
    <p class="property-text">Manual</p>
1021
  </div>
1022
  <div class="property-description-line">
1023
    <h2 class="property-inline"> Description: </h2>
1024
    <p class="property-text"> The time in milliseconds allowed for ldap
1025
    server connections.</p>
1026
  </div>
1027
  <div class="property-description-line">
1028
    <h2 class="property-inline"> Example: </h2>
1029
    <p class="property-text">5000</p>
1030
  </div>
1031
1032
  <a name="ldap.searchTimeLimit"></a><h1 class="property-main"> ldap.searchTimeLimit </h1>
1033
  <div class="property-description-line">
1034
    <h2 class="property-inline"> Default Value: </h2>
1035
    <p class="property-text">30000</p>
1036
  </div>
1037
  <div class="property-description-line">
1038
    <h2 class="property-inline"> Set Method: </h2>
1039
    <p class="property-text">Manual</p>
1040
  </div>
1041
  <div class="property-description-line">
1042
    <h2 class="property-inline"> Description: </h2>
1043
    <p class="property-text"> The time in milliseconds allowed for ldap server searches.</p>
1044
  </div>
1045
  <div class="property-description-line">
1046
    <h2 class="property-inline"> Example: </h2>
1047
    <p class="property-text">30000</p>
1048
  </div>
1049
1050
  <a name="ldap.searchCountLimit"></a><h1 class="property-main"> ldap.searchCountLimit </h1>
1051
  <div class="property-description-line">
1052
    <h2 class="property-inline"> Default Value: </h2>
1053
    <p class="property-text">30000</p>
1054
  </div>
1055
  <div class="property-description-line">
1056
    <h2 class="property-inline"> Set Method: </h2>
1057
    <p class="property-text">Manual</p>
1058
  </div>
1059
  <div class="property-description-line">
1060
    <h2 class="property-inline"> Description: </h2>
1061
    <p class="property-text"> the count of return entries allowed for ldap server searches.</p>
1062
  </div>
1063
  <div class="property-description-line">
1064
    <h2 class="property-inline"> Example: </h2>
1065
    <p class="property-text">30000</p>
1066
  </div>
1067
1068
  <a name="ldap.referral"></a><h1 class="property-main"> ldap.referral </h1>
1069
  <div class="property-description-line">
1070
    <h2 class="property-inline"> Default Value: </h2>
1071
    <p class="property-text">follow</p>
1072
  </div>
1073
  <div class="property-description-line">
1074
    <h2 class="property-inline"> Set Method: </h2>
1075
    <p class="property-text">Manual</p>
1076
  </div>
1077
  <div class="property-description-line">
1078
    <h2 class="property-inline"> Description: </h2>
1079
    <p class="property-text"> The type of ldap referrals to use. Acceptible values are
1080
    &quot;follow&quot;, &quot;throw&quot; or &quot;none&quot;. Refer to ldap documentation
1081
    for further information.</p>
1082
  </div>
1083
  <div class="property-description-line">
1084
    <h2 class="property-inline"> Example: </h2>
1085
    <p class="property-text">follow</p>
1086
  </div>
1087
1088
  <a name="ldap.onlySecureConnection"></a><h1 class="property-main"> ldap.onlySecureConnection </h1>
1089
  <div class="property-description-line">
1090
    <h2 class="property-inline"> Default Value: </h2>
1091
    <p class="property-text">false</p>
1092
  </div>
1093
  <div class="property-description-line">
1094
    <h2 class="property-inline"> Set Method: </h2>
1095
    <p class="property-text">Manual</p>
1096
  </div>
1097
  <div class="property-description-line">
1098
    <h2 class="property-inline"> Description: </h2>
1099
    <p class="property-text"> Determines whether to only use secure ldap server.
1100
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1101
  </div>
1102
  <div class="property-description-line">
1103
    <h2 class="property-inline"> Example: </h2>
1104
    <p class="property-text">false</p>
1105
  </div>
1106
1107
  <a name="ldap.onlySecureReferalsConnection"></a><h1 class="property-main"> ldap.onlySecureReferalsConnection </h1>
1108
  <div class="property-description-line">
1109
    <h2 class="property-inline"> Default Value: </h2>
1110
    <p class="property-text">false</p>
1111
  </div>
1112
  <div class="property-description-line">
1113
    <h2 class="property-inline"> Set Method: </h2>
1114
    <p class="property-text">Manual</p>
1115
  </div>
1116
  <div class="property-description-line">
1117
    <h2 class="property-inline"> Description: </h2>
1118
    <p class="property-text"> Determines whether to only use secure referral server.
1119
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1120
  </div>
1121
  <div class="property-description-line">
1122
    <h2 class="property-inline"> Example: </h2>
1123
    <p class="property-text">false</p>
1124
  </div>
1125
1126
  <br>
1127
1128
  <a name="xml.saxparser"></a><h1 class="property-main"> xml.saxparser </h1>
1129
  <div class="property-description-line">
1130
    <h2 class="property-inline"> Default Value: </h2>
1131
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1132
  </div>
1133
  <div class="property-description-line">
1134
    <h2 class="property-inline"> Set Method: </h2>
1135
    <p class="property-text">Manual</p>
1136
  </div>
1137
  <div class="property-description-line">
1138
    <h2 class="property-inline"> Description: </h2>
1139
    <p class="property-text"> The SAX parser used to parse XML documents.
1140
    See: <a href="./saxparser.html">SAX parser documentation</a>. </p>
1141
  </div>
1142
  <div class="property-description-line">
1143
    <h2 class="property-inline"> Example: </h2>
1144
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1145
  </div>
1146
1147
  <a name="xml.eml2_0_0namespace"></a><h1 class="property-main"> xml.eml2_0_0namespace </h1>
1148
  <div class="property-description-line">
1149
    <h2 class="property-inline"> Default Value: </h2>
1150
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1151
  </div>
1152
  <div class="property-description-line">
1153
    <h2 class="property-inline"> Set Method: </h2>
1154
    <p class="property-text">Manual</p>
1155
  </div>
1156
  <div class="property-description-line">
1157
    <h2 class="property-inline"> Description: </h2>
1158
    <p class="property-text"> The namespace of EML 2.0.0 documents. </p>
1159
  </div>
1160
  <div class="property-description-line">
1161
    <h2 class="property-inline"> Example: </h2>
1162
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1163
  </div>
1164
1165
  <a name="xml.eml2_0_1namespace"></a><h1 class="property-main"> xml.eml2_0_1namespace </h1>
1166
  <div class="property-description-line">
1167
    <h2 class="property-inline"> Default Value: </h2>
1168
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1169
  </div>
1170
  <div class="property-description-line">
1171
    <h2 class="property-inline"> Set Method: </h2>
1172
    <p class="property-text">Manual</p>
1173
  </div>
1174
  <div class="property-description-line">
1175
    <h2 class="property-inline"> Description: </h2>
1176
    <p class="property-text"> The namespace of EML 2.0.1 documents. </p>
1177
  </div>
1178
  <div class="property-description-line">
1179
    <h2 class="property-inline"> Example: </h2>
1180
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1181
  </div>
1182
1183
  <a name="xml.eml2_1_0namespace"></a><h1 class="property-main"> xml.eml2_1_0namespace </h1>
1184
  <div class="property-description-line">
1185
    <h2 class="property-inline"> Default Value: </h2>
1186
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1187
  </div>
1188
  <div class="property-description-line">
1189
    <h2 class="property-inline"> Set Method: </h2>
1190
    <p class="property-text">Manual</p>
1191
  </div>
1192
  <div class="property-description-line">
1193
    <h2 class="property-inline"> Description: </h2>
1194
    <p class="property-text"> The namespace of EML 2.1.0 documents. </p>
1195
  </div>
1196
  <div class="property-description-line">
1197
    <h2 class="property-inline"> Example: </h2>
1198
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1199
  </div>
1200
1201
  <a name="xml.packagedoctype"></a><h1 class="property-main"> xml.packagedoctype </h1>
1202
  <div class="property-description-line">
1203
    <h2 class="property-inline"> Default Value: </h2>
1204
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1205
  </div>
1206
  <div class="property-description-line">
1207
    <h2 class="property-inline"> Set Method: </h2>
1208
    <p class="property-text">Manual</p>
1209
  </div>
1210
  <div class="property-description-line">
1211
    <h2 class="property-inline"> Description: </h2>
1212
    <p class="property-text"> The doctype of a package file. The system will only
1213
    recognize documents of this type as package files. See:
1214
    <a href="./packages.html">package documentation</a>.</p>
1215
  </div>
1216
  <div class="property-description-line">
1217
    <h2 class="property-inline"> Example: </h2>
1218
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1219
  </div>
1220
1221
  <a name="xml.accessdoctype"></a><h1 class="property-main"> xml.accessdoctype </h1>
1222
  <div class="property-description-line">
1223
    <h2 class="property-inline"> Default Value: </h2>
1224
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1225
  </div>
1226
  <div class="property-description-line">
1227
    <h2 class="property-inline"> Set Method: </h2>
1228
    <p class="property-text">Manual</p>
1229
  </div>
1230
  <div class="property-description-line">
1231
    <h2 class="property-inline"> Description: </h2>
1232
    <p class="property-text"> The doctype of an access control list (ACL) file. The
1233 4275 daigle
    system will only recognize documents of this type as access files. See:
1234 4243 daigle
    <a href="./acontrol.html">access control documentation</a>.</p>
1235
  </div>
1236
  <div class="property-description-line">
1237
    <h2 class="property-inline"> Example: </h2>
1238
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1239
  </div>
1240
1241
1242
1243
1244
1245
  <!-- table border="1">
1246 878 berkley
    <tr>
1247
      <td><b>Property</b></td>
1248
      <td><b>Description</b></td>
1249
      <td><b>Possible or default value</b></td>
1250
    </tr>
1251
    <tr>
1252 881 berkley
      <td>config-dir</td>
1253
      <td>directory where the style-sets exist</td>
1254
      <td>/opt/tomcat/webapps/metacat/lib</td>
1255 878 berkley
    </tr>
1256
    <tr>
1257 881 berkley
      <td>default-style</td>
1258
      <td>the style-set to use if qformat is set to 'html'</td>
1259
      <td></td>
1260
    </tr>
1261
    <tr>
1262 878 berkley
      <td>xmlcatalogfile</td>
1263
      <td>The default file type catalog file location.<br>
1264
      DEPRECATED</td>
1265
      <td>/opt/tomcat/webapps/xmltodb/catalog.txt</td>
1266
    </tr>
1267
    <tr>
1268 881 berkley
      <td>siteCode</td>
1269
      <td>The code for the current site.</td>
1270 3591 costa
      <td>nceas</td>
1271 878 berkley
    </tr>
1272
    <tr>
1273
      <td>accNumSeparator</td>
1274
      <td>The separator that is used to separate the three parts
1275
          of the accession number: codename, sequence and revision number.
1276 2309 jones
           changing this parameter will likely break the application, so make
1277
           sure you know what you are doing.  It should be synchronized with
1278
           the Client application.</td>
1279 878 berkley
      <td>. (period)</td>
1280
    </tr>
1281
    <tr>
1282
      <td>saxparser</td>
1283
      <td>The SAX parser to be used to <a href="./saxparser.html">parse</a>
1284
      XML documents.</td>
1285
      <td>org.apache.xerces.parsers.SAXParser</td>
1286
    </tr>
1287
    <tr>
1288
      <td>servletpath</td>
1289
      <td>The path on the local machine to the Metacat Servlet.</td>
1290
      <td>/knb/servlet/metacat</td>
1291
    </tr>
1292
    <tr>
1293
      <td>htmlpath</td>
1294
      <td>The path to the HTML server for this Metacat context.  This is where
1295
      the Metacat web interface would be served from.</td>
1296
      <td>/knb</td>
1297
    </tr>
1298
    <tr>
1299
      <td>packagedoctype</td>
1300
      <td>The doctype of a package file.  The system will only recognize documents
1301
      of this type as a <a href="./packages.html">Package</a> files.</td>
1302
      <td>-//NCEAS//eml-dataset-2.0//EN</td>
1303
    </tr>
1304
    <tr>
1305
      <td>accessdoctype</td>
1306
      <td>The doctype of an access control list (ACL) file.  The system will
1307
          only recognize documents of this type as an <a href="./acontrol.html">Access</a>
1308
          files.</td>
1309
      <td>-//NCEAS//eml-access-2.0//EN</td>
1310
    </tr>
1311
    <tr>
1312
      <td>server</td>
1313
      <td>The server on which this Metacat server runs.</td>
1314
      <td>dev.nceas.ucsb.edu:8090</td>
1315
    </tr>
1316
    <tr>
1317
      <td>authclass</td>
1318
      <td>The authorization plugin to use.  In this example, LDAP.</td>
1319
      <td>edu.ucsb.nceas.metacat.AuthLdap</td>
1320
    </tr>
1321
    <tr>
1322
      <td>ldapurl</td>
1323
      <td>The path to your LDAP server (if LDAP authentication is being used.</td>
1324
      <td>ldap://ldap.nceas.ucsb.edu:389/</td>
1325
    </tr>
1326
    <tr>
1327
      <td>ldapsurl</td>
1328
      <td>The path to your LDAP server with SSL support.
1329
          (if LDAP authentication is being used and if your LDAT server is set
1330
          with SSL support.) 2 ports are used to listen: 389 for plain sockets
1331
          and 636 for SSL Sockect. If your LDAP server is not set to support SSL
1332
          this property should be the same as ldapurl, else Metacat will
1333
          retieve an error.</td>
1334
      <td>ldap://ldap.nceas.ucsb.edu:636/</td>
1335
    </tr>
1336
    <tr>
1337
      <td>ldapbase</td>
1338
      <td>LDAP base parameters for the LDAP server.</td>
1339
      <td>o=NCEAS,c=US</td>
1340
    </tr>
1341
    <tr>
1342 881 berkley
      <td>referral</td>
1343
      <td>The type of ldap referrals you want to use.  Eithe 'follow', 'throw' or
1344
      'none'.  See the ldap documentation for further information</td>
1345
      <td>follow</td>
1346
    </tr>
1347
    <tr>
1348 878 berkley
      <td>deltaT</td>
1349
      <td>The default delta T used for <a href="./replication.html">replication</a>.</td>
1350
      <td>60</td>
1351
    </tr>
1352
    <tr>
1353
      <td>replicationpath</td>
1354
      <td>The relative path to the replication servlet.</td>
1355
      <td>/knb/servlet/replication</td>
1356
    </tr>
1357
    <tr>
1358
      <td>replicationlog</td>
1359
      <td>Location of the replication log file.</td>
1360
      <td>/logs/Metacatreplication.log</td>
1361
    </tr>
1362
    <tr>
1363
      <td>dtdPath</td>
1364
      <td>Path to which DTDs are uploaded.</td>
1365
      <td>/opt/tomcat/webapps/knb/dtd/</td>
1366
    </tr>
1367
    <tr>
1368
      <td>dtdURL</td>
1369
      <td>The HTTP accessable URL to the DTD files specified in dtdPath.</td>
1370
      <td>http://server.domain.com/knb/dtd/</td>
1371
    </tr>
1372
    <tr>
1373
      <td>datafilepath</td>
1374
      <td>The path to which you want data files uploaded.</td>
1375
      <td>/opt/tomcat/webapps/knb/data</td>
1376
    </tr>
1377
    <tr>
1378 881 berkley
      <td>certPath</td>
1379
      <td>path to the SSL keys for secure transmissions.</td>
1380
      <td>/opt/tomcat/webapps/metacat/lib</td>
1381 878 berkley
    </tr>
1382 2309 jones
    <tr>
1383
      <td>administrators</td>
1384
      <td>The administrators parameter lists the accounts that are allowed to
1385
          perform administrative actions such as rebuilding indices for
1386
          documents. The list can can contain more than one account separated
1387
          by colons.</td>
1388
      <td>Default:&nbsp;&nbsp;
1389
          <code>uid=jones,o=NCEAS,dc=ecoinformatics,dc=org</code>
1390
      <br><br>Examples:&nbsp;&nbsp;
1391
          <code>uid=localadmin,o=ucnrs.org</code>
1392
      </td>
1393
    </tr>
1394
    <tr><td> </td></tr>
1395 3591 costa
1396
1397
    <tr><td colspan="3"><b>Additional properties that probably do not need to be changed</b></td></tr>
1398
    <tr><td>configured</td><td>Configuration flag</td><td>true</td></tr>
1399 4169 daigle
    <tr><td>configurationPage</td><td>The page to do metacat configuration<td>/configure.jsp</td></tr>
1400 3591 costa
    <tr><td>configurationSuccessPage</td><td>The page to show successful message after configuration</td><td>/configure-restart.jsp</td></tr>
1401
    <tr><td>version</td><td>Release version.</td><td>1.7.1</td></tr>
1402 2309 jones
    <tr><td>maximumConnectionAge</td><td> </td><td>120000</td></tr>
1403
    <tr><td>maximumConnectionTime</td><td> </td><td>60000</td></tr>
1404
    <tr><td>maximumUsageNumber</td><td> </td><td>100</td></tr>
1405 3591 costa
    <tr><td>numberOfIndexingThreads</td><td> </td><td>5</td></tr>
1406
    <tr><td>indexingTimerTaskTime</td><td> </td><td>604800000</td></tr>
1407
    <tr><td>indexingInitialDelay</td><td> </td><td>3600000</td></tr>
1408
    <tr><td>maximumIndexDelay</td><td> </td><td>5000</td></tr>
1409 2309 jones
    <tr><td>runDBConnectionRecycleThread</td><td> </td><td>off</td></tr>
1410
    <tr><td>cycleTimeOfDBConnection</td><td> </td><td>30000</td></tr>
1411 3591 costa
    <tr>
1412
      <td>timedreplication</td>
1413
      <td>Determines whether timed replication to other metacat servers is being used.</td>
1414
      <td>Default:&nbsp;&nbsp;
1415
          <code>false</code>
1416
      <br><br>Other possible values:&nbsp;&nbsp;
1417
          <code>true</code>
1418
      </td>
1419
    </tr>
1420
    <tr>
1421
      <td>firsttimedreplication</td>
1422
      <td>The time for starting first timed replication if timedreplication is true.
1423
          (See comments in build.properties file for additional details.)</td>
1424
      <td>Default:&nbsp;&nbsp;
1425
          <code>10:00 PM</code>
1426
          <code>&nbsp;</code>
1427
      </td>
1428
    </tr>
1429
    <tr>
1430
      <td>timedreplicationinterval</td>
1431
      <td>The interval to next timed replication if timedreplication is true.
1432
          The value is in milliseconds and default value is 48 hours.</td>
1433
      <td>Default:&nbsp;&nbsp;
1434
          <code>172800000</code>
1435
          <code>&nbsp;</code>
1436
      </td>
1437
    </tr>
1438 2309 jones
    <tr><td>forcereplicationwaitingtime</td><td> </td><td></td></tr>
1439
    <tr><td>eml2_0_0namespace</td><td>Namespace of EML 2.0.0 documents.</td><td>eml://ecoinformatics.org/eml-2.0.0</td></tr>
1440 2463 sgarg
    <tr><td>eml2_0_1namespace</td><td>Namespace of EML 2.0.1 documents.</td><td>eml://ecoinformatics.org/eml-2.0.1</td></tr>
1441 2309 jones
    <tr><td>eml2_1_0namespace</td><td>Namespace of EML 2.1.0 documents. Currently unused, reserved.</td><td>eml://ecoinformatics.org/eml-2.1.0</td></tr>
1442
    <tr><td>physicaldoctype</td><td> </td><td>-//ecoinformatics.org//eml-physical-2.0.0beta6//EN, -//ecoinformatics.org//eml-physical-2.0.0beta4//EN</td></tr>
1443
    <tr><td>entitydoctype</td><td> </td><td>-//ecoinformatics.org//eml-entity-2.0.0beta6//EN, -//ecoinformatics.org//eml-entity-2.0.0beta4//EN</td></tr>
1444
    <tr><td>packagedoctypeset</td><td> </td><td> </td></tr>
1445 3591 costa
    <tr>
1446
      <td>httpserver</td>
1447
      <td>httpserver is the plain HTTP address and port number that Metacat uses for purposes
1448
          other than replication. Since this property is usually composed of the <code>config.hosthame</code> and <code>config.port</code>
1449
          properties (described above), the default setting can be used in most cases.</td>
1450
      <td>Default:&nbsp;&nbsp;<code>${config.hostname}:${config.port}</code>
1451
      </td>
1452
    </tr>
1453 2309 jones
    <tr><td>junittesturl</td><td>The url of the test server.</td><td></td></tr>
1454
    <tr><td>replicationerrorlog</td><td> </td><td></td></tr>
1455
    <tr><td>schemaPath</td><td>Path to installed XSD schemas.</td><td></td></tr>
1456
    <tr><td>schemaURL</td><td>URL to installed XSD schemas.</td><td></td></tr>
1457
    <tr><td>inlinedatafilepath</td><td>Path for storing data that was extracted from <code>inline</code> element of EML documents.</td><td></td></tr>
1458
    <tr><td>context</td><td>The name of the servlet context</td><td></td></tr>
1459
    <tr><td>debuglevel</td><td>Verbosity of debugging messages.  Higher numbers means more debugging detail.</td><td></td></tr>
1460
    <tr><td>datafileflag</td><td> </td><td>datafile</td></tr>
1461
    <tr><td>datafilesizelimit</td><td>Limit on file size for uploaded data files.</td><td>1000</td></tr>
1462
    <tr><td>defaultcontenttype</td><td> </td><td></td></tr>
1463
    <tr><td>query.ignored.params</td><td>Parameters that are passed through to XSLT style sheets without modification.</td><td>enableediting,foo</td></tr>
1464
    <tr><td>usexmlindex</td><td>Flag indicating whether to use the traditional xml_index table or not.  This needs to be set on startup, and once set to false can not be changed back to true without significant database modifications.  Setting this option to 'false' also slows down queries significantly, but it does allow arbitrarily deep dcoument paths.  Not recommended to change this setting -- data loss may result.</td><td>true</td></tr>
1465 2463 sgarg
    <tr><td>app_resultsetsize</td><td>Used for the setting the size of resultset that is processed at a time for applications like morpho</td><td>400</td></tr>
1466
    <tr><td>web_resultsetsize</td><td>Used for the setting the size of resultset for search done using browser</td><td>900</td></tr>
1467
    <tr><td>queryresult_string_length</td><td>Used for the setting the size of queryresult_string in queryresult table</td><td>4000</td></tr>
1468 3591 costa
    <tr>
1469
      <td>queryresult_cache_size</td>
1470
      <td>The size of query result cache.</td>
1471
      <td>Default:&nbsp;&nbsp;500</td>
1472
    </tr>
1473
    <tr>
1474
      <td>query_cache_on</td>
1475
      <td>Turn the query result cache on or off</td>
1476
      <td>Default:&nbsp;&nbsp;true</td>
1477
    </tr>
1478 2463 sgarg
    <tr><td>xml_returnfield_count</td><td>Value of xml_returnfield.usage_count should be more than this value for records to be entered into xml_queryresult</td><td>0</td></tr>
1479 3591 costa
    <tr>
1480
      <td>moderators</td>
1481
      <td>Moderator accounts, in a colon-separated list. Special users who will review general user's submission.
1482
             Moderators can approve, revise and reject the submission after reviewing. This property is only used in ESA skin.</td>
1483
      <td>Default:&nbsp;&nbsp;<code>cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org</code></td>
1484
    </tr>
1485
    <tr>
1486
      <td>allowedSubmitters</td>
1487
      <td>Specifies the list of users who should be allowed to submit documents.
1488
          If no value is specified (the default setting), all users will be allowed to submit documents.
1489
      </td>
1490
      <td>Default:&nbsp;&nbsp;(no value)</td>
1491
    </tr>
1492
    <tr>
1493
      <td>deniedSubmitters</td>
1494
      <td>Specify the list of users who should not be allowed to submit documents.
1495
          If no value is specified (the default setting), all users will be allowed to submit documents.</td>
1496
      <td>Default:&nbsp;&nbsp;(no value)</td>
1497
    </tr>
1498
    <tr>
1499
      <td>indexNamespaces</td>
1500
      <td>A comma-separated list of doctypes which will be indexed</td>
1501 3780 daigle
      <td>Default:&nbsp;&nbsp;eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1</td>
1502 3591 costa
    </tr>
1503
    <tr>
1504
      <td>indexPaths</td>
1505
      <td>See <a href="./metacatinstall.html#buildProperties">description of build properties</a></td>
1506
      <td>Default:&nbsp;&nbsp;<code>organizationName,originator/individualName/surName,...</code></td>
1507
    </tr>
1508
    <tr>
1509
      <td>ldapconnecttimelimit</td>
1510
      <td>The time in milliseconds allowed for ldap server connections.</td>
1511
      <td>Default:&nbsp;&nbsp;5000</td>
1512
    </tr>
1513
    <tr>
1514
      <td>ldapsearchtimelimit</td>
1515
      <td>The time in milliseconds allowed for ldap server searches.</td>
1516
      <td>Default:&nbsp;&nbsp;30000</td>
1517
    </tr>
1518
    <tr>
1519
      <td>ldapsearchcountlimit</td>
1520
      <td>The count of return entries allowed for ldap server searches.</td>
1521
      <td>Default:&nbsp;&nbsp;30000</td>
1522
    </tr>
1523
    <tr>
1524
      <td>onlySecureLDAPConnection</td>
1525
      <td>When set to true, connects main LDAP server only by SSL</td>
1526
      <td>Default:&nbsp;&nbsp;false</td>
1527
    </tr>
1528
    <tr>
1529
      <td>onlySecureLDAPReferalsConnection</td>
1530
      <td>When set to true, connects referal LDAP server only by SSL</td>
1531
      <td>Default:&nbsp;&nbsp;false</td>
1532
    </tr>
1533
    <tr>
1534
      <td>skinconfigfiles</td>
1535
      <td>List of skins which have configure files</td>
1536
      <td>Default:&nbsp;&nbsp;esa,nceas,knb,obfs,nrs,sanparks</td>
1537
    </tr>
1538
    <tr>
1539
      <td>writeDebugToFile</td>
1540
      <td>Used for writing debug info into a another output file.</td>
1541
      <td>Default:&nbsp;&nbsp;true</td>
1542
    </tr>
1543
    <tr>
1544
      <td>debugOutputFile</td>
1545
      <td>Output file name where debug info will be written.</td>
1546
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug</td>
1547
    </tr>
1548
    <tr>
1549
      <td>delimiteredOutputFile</td>
1550
      <td>Delimited text output file name where debug info will be written.</td>
1551
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug.delimitered</td>
1552
    </tr>
1553
    <tr>
1554
      <td><em>Metacat Harvester properties</em>:<br/><br/>
1555
          connectToMetacat, delay, harvesterAdministrator,
1556
          logPeriod, maxHarvests, period, smtpServer, GetDocError, GetDocSuccess, GetHarvestListError,
1557
          GetHarvestListSuccess, HarvesterStartup, HarvesterShutdown, InsertDocError, InsertDocSuccess,
1558
          MetacatHasDoc, UpdateDocError, UpdateDocSuccess, ValidateDocError, ValidateDocSuccess,
1559
          ValidateHarvestListError, ValidateHarvestListSuccess</td>
1560
      <td>See <a href="./harvester.html">Metacat Harvester</a> documentation</td>
1561
      <td></td>
1562
    </tr>
1563
    <tr>
1564
      <td><em>Spatial properties</em>:<br/><br/>
1565
              runSpatialOption,
1566
              regenerateCacheOnRestart,
1567
              spatialDocnameList,
1568
              eml_westBoundingCoordinatePath,
1569
              eml_eastBoundingCoordinatePath,
1570
              eml_southBoundingCoordinatePath,
1571
              eml_northBoundingCoordinatePath,
1572
              fgdc_westBoundingCoordinatePath,
1573
              fgdc_eastBoundingCoordinatePath,
1574
              fgdc_southBoundingCoordinatePath,
1575
              fgdc_northBoundingCoordinatePath,
1576
              metadata_westBoundingCoordinatePath,
1577
              metadata_eastBoundingCoordinatePath,
1578
              metadata_southBoundingCoordinatePath,
1579
              metadata_northBoundingCoordinatePath,
1580
              docTitle,
1581
              metacatUrl,
1582
              baseUrl
1583
      </td>
1584
      <td>See <a href="./spatial_option.html">Metacat Spatial Option</a> documentation</td>
1585
      <td></td>
1586
    </tr>
1587
    <tr>
1588
      <td>sitemapDirectory</td>
1589
      <td>The relative directory path in which sitemap files should be written.</td>
1590 3659 barteau
      <td>Default:&nbsp;&nbsp;{tomcat_dir}/webapps/{context_name}/sitemaps</td>
1591 3591 costa
    </tr>
1592
    <tr>
1593
      <td>sitemapInterval</td>
1594
      <td>The time interval (in milliseconds) between rebuilding the sitemap.</td>
1595
      <td>Default:&nbsp;&nbsp;86400000</td>
1596
    </tr>
1597 4243 daigle
  </table -->
1598 878 berkley
1599
  <br>
1600
  <a href="./datafiles.html">Back</a> | <a href="./metacattour.html">Home</a> |
1601 2131 costa
  <a href="./harvester.html">Next</a>
1602 878 berkley
1603
1604
</BODY>
1605 3659 barteau
</HTML>