Project

General

Profile

1
<!--
2
  * properties.html
3
  *
4
  *      Authors: Chad Berkley
5
  *    Copyright: 2008 Regents of the University of California and the
6
  *               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
<TITLE>Metacat Properties Files</TITLE>
17
<link rel="stylesheet" type="text/css" href="./default.css">
18
</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
        <a href="./harvester.html">Next</a>
26
      </td>
27
    </tr>
28
  </table>
29
  <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
  </p>
57
  
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
  <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
  <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.documentfilepath"></a><h1 class="property-main"> application.documentfilepath </h1>
289
  <div class="property-description-line">
290
    <h2 class="property-inline"> Default Value: </h2> 
291
    <p class="property-text">/var/metacat/documents</p>
292
  </div>
293
  <div class="property-description-line">
294
    <h2 class="property-inline"> Set Method: </h2> 
295
    <p class="property-text">Configuration Utility</p>
296
  </div>
297
  <div class="property-description-line">
298
    <h2 class="property-inline"> Description: </h2> 
299
    <p class="property-text">This is the directory where metadata document files will 
300
      be stored.  This should be some directory outside the Metacat installation 
301
      directories so document files will not get lost when Metacat is upgraded.  For 
302
      clarity of organization, this should probably not be the same as application.datafilepath
303
      or application.inlinedatafilepath. The data file directory must be writable by the 
304
      user that starts Tomcat (and thus Metacat).</p>
305
  </div>
306
  <div class="property-description-line">
307
    <h2 class="property-inline"> Example: </h2> 
308
    <p class="property-text">/var/metacat/documents</p>
309
  </div>        
310
   
311
  <a name="application.cgiDir"></a><h1 class="property-main"> application.cgiDir </h1>
312
  <div class="property-description-line">
313
    <h2 class="property-inline"> Default Value: </h2> 
314
    <p class="property-text">/cgi</p>
315
  </div>
316
  <div class="property-description-line">
317
    <h2 class="property-inline"> Set Method: </h2> 
318
    <p class="property-text">Manual</p>
319
  </div>
320
  <div class="property-description-line">
321
    <h2 class="property-inline"> Description: </h2> 
322
    <p class="property-text">This is the directory that is configured in 
323
      Apache web server to point to Metacat cgi executables.  The directory is given 
324
      relative to the Metacat context directory since the Metacat cgi scripts
325
      are installed with the application code.  For example, if Metacat is installed
326
      in /usr/local/tomcat/knb, then an application.cgiDir of /cgi would point to <br>
327
      &nbsp;&nbsp;&nbsp;&nbsp/usr/local/tomcat/knb/cgi-dir</p>
328
  </div>
329
  <div class="property-description-line">
330
    <h2 class="property-inline"> Example: </h2> 
331
    <p class="property-text">/cgi-bin</p>
332
  </div>    
333
  
334
  <br> 
335

    
336
  <a name="database.connectionURI"></a><h1 class="property-main"> database.connectionURI </h1>
337
  <div class="property-description-line">
338
    <h2 class="property-inline"> Default Value: </h2> 
339
    <p class="property-text">jdbc:postgresql://localhost/metacat</p>
340
  </div>
341
  <div class="property-description-line">
342
    <h2 class="property-inline"> Set Method: </h2> 
343
    <p class="property-text">Configuration Utility</p>
344
  </div>
345
  <div class="property-description-line">
346
    <h2 class="property-inline"> Description: </h2> 
347
    <p class="property-text">The jdbc connection URI for the main 
348
    database instance of Metacat.  The uri is formatted like: <br>
349
    &nbsp;&nbsp;&nbsp;&nbsp;jdbc:&lt;database_type&gt;:thin@&lt;your_server_name&gt;:1521:&lt;metacat_database_name&gt;<br>
350
    An empty database must have been created prior to Metacat 
351
    configuration.</p>
352
  </div>
353
  <div class="property-description-line">
354
    <h2 class="property-inline"> Example: </h2> 
355
    <p class="property-text">jdbc:postgresql://yourserver.yourdomain.edu/metacat</p>
356
  </div>   
357
  
358
  <a name="database.user"></a><h1 class="property-main"> database.user </h1>
359
  <div class="property-description-line">
360
    <h2 class="property-inline"> Default Value: </h2> 
361
    <p class="property-text">(none)</p>
362
  </div>
363
  <div class="property-description-line">
364
    <h2 class="property-inline"> Set Method: </h2> 
365
    <p class="property-text">Configuration Utility</p>
366
  </div>
367
  <div class="property-description-line">
368
    <h2 class="property-inline"> Description: </h2> 
369
    <p class="property-text">The user for the main database instance 
370
    of Metacat.  The user must have already been created on the database.</p>
371
  </div>
372
  <div class="property-description-line">
373
    <h2 class="property-inline"> Example: </h2> 
374
    <p class="property-text">metacat-user</p>
375
  </div>     
376
  
377
  <a name="database.password"></a><h1 class="property-main"> database.password </h1>
378
  <div class="property-description-line">
379
    <h2 class="property-inline"> Default Value: </h2> 
380
    <p class="property-text">(none)</p>
381
  </div>
382
  <div class="property-description-line">
383
    <h2 class="property-inline"> Set Method: </h2> 
384
    <p class="property-text">Configuration Utility</p>
385
  </div>
386
  <div class="property-description-line">
387
    <h2 class="property-inline"> Description: </h2> 
388
    <p class="property-text">The password of the user for the main 
389
    database instance of Metacat.  The password must have already been created
390
    for the user.</p>
391
  </div>
392
  <div class="property-description-line">
393
    <h2 class="property-inline"> Example: </h2> 
394
    <p class="property-text">securepassword4843</p>
395
  </div>   
396

    
397
  <a name="database.type"></a><h1 class="property-main"> database.type </h1>
398
  <div class="property-description-line">
399
    <h2 class="property-inline"> Default Value: </h2> 
400
    <p class="property-text">(none)</p>
401
  </div>
402
  <div class="property-description-line">
403
    <h2 class="property-inline"> Set Method: </h2> 
404
    <p class="property-text">Configuration Utility</p>
405
  </div>
406
  <div class="property-description-line">
407
    <h2 class="property-inline"> Description: </h2> 
408
    <p class="property-text">The type of database you are running.  Currently, 
409
    there are two supported types, Oracle and Postgres.</p>
410
  </div>
411
  <div class="property-description-line">
412
    <h2 class="property-inline"> Example: </h2> 
413
    <p class="property-text">postgres</p>
414
  </div>   
415
  
416
  <a name="database.driver"></a><h1 class="property-main"> database.driver </h1>
417
  <div class="property-description-line">
418
    <h2 class="property-inline"> Default Value: </h2> 
419
    <p class="property-text">(none)</p>
420
  </div>
421
  <div class="property-description-line">
422
    <h2 class="property-inline"> Set Method: </h2> 
423
    <p class="property-text">Configuration Utility</p>
424
  </div>
425
  <div class="property-description-line">
426
    <h2 class="property-inline"> Description: </h2> 
427
    <p class="property-text">The JDBC driver to be used to access the main 
428
    database instance of Metacat.  There is one of these associated with each
429
    type of database.</p>
430
  </div>
431
  <div class="property-description-line">
432
    <h2 class="property-inline"> Example: </h2> 
433
    <p class="property-text">org.postgresql.Driver</p>
434
  </div> 
435
  
436
  <a name="database.adapter"></a><h1 class="property-main"> database.adapter </h1>
437
  <div class="property-description-line">
438
    <h2 class="property-inline"> Default Value: </h2> 
439
    <p class="property-text">(none)</p>
440
  </div>
441
  <div class="property-description-line">
442
    <h2 class="property-inline"> Set Method: </h2> 
443
    <p class="property-text">Configuration Utility</p>
444
  </div>
445
  <div class="property-description-line">
446
    <h2 class="property-inline"> Description: </h2> 
447
    <p class="property-text">The adapter class that allows Metacat to access your 
448
    database type.  There is one of these associated with each type of database.</p>
449
  </div>
450
  <div class="property-description-line">
451
    <h2 class="property-inline"> Example: </h2> 
452
    <p class="property-text">edu.ucsb.nceas.dbadapter.PostgresqlAdapter</p>
453
  </div>   
454
  
455
  <a name="database.scriptsuffix"></a><h1 class="property-main"> database.scriptsuffix.&lt;database_type&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.scriptsuffix.postgres=postgres.sql<br>
460
      &nbsp;&nbsp;&nbsp;&nbsp;database.scriptsuffix.oracle=oracle.sql
461
    </p>
462
  </div>
463
  <div class="property-description-line">
464
    <h2 class="property-inline"> Set Method: </h2> 
465
    <p class="property-text">Configuration Utility</p>
466
  </div>
467
  <div class="property-description-line">
468
    <h2 class="property-inline"> Description: </h2> 
469
    <p class="property-text">There is a database.scriptsuffix entry for every
470
      supported type of database.  These tell the system which database scripts
471
      to run when installing or updating database schema.</p>
472
  </div>
473
  <div class="property-description-line">
474
    <h2 class="property-inline"> Example: </h2> 
475
    <p class="property-text">postgres.sql</p>
476
  </div>   
477
  
478
  <a name="database.upgradeVersion"></a><h1 class="property-main"> database.upgradeVersion.&lt;database_version&gt; </h1>
479
  <div class="property-description-line">
480
    <h2 class="property-inline"> Default Value: </h2> 
481
    <p class="property-text">
482
      <br>&nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.0.0.0=xmltables,loaddtdschema<br>
483
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.2.0=upgrade-db-to-1.2<br>
484
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.3.0=upgrade-db-to-1.3<br>
485
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.4.0=upgrade-db-to-1.4<br>
486
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.5.0=upgrade-db-to-1.5<br>
487
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.6.0=upgrade-db-to-1.6<br>
488
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.7.0=upgrade-db-to-1.7<br>
489
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.8.0=upgrade-db-to-1.8<br>
490
          &nbsp;&nbsp;&nbsp;&nbsp;database.upgradeVersion.1.9.0=upgrade-db-to-1.9
491
    </p>
492
  </div>
493
  <div class="property-description-line">
494
    <h2 class="property-inline"> Set Method: </h2> 
495
    <p class="property-text">Configuration Utility</p>
496
  </div>
497
  <div class="property-description-line">
498
    <h2 class="property-inline"> Description: </h2> 
499
    <p class="property-text">There is a database.scriptsuffix entry for every
500
      metacat database schema version. (Note that a schema version corresponds
501
      to an application version.) These tell the system which database scripts
502
      to run when installing or updating database schema.</p>
503
  </div>
504
  <div class="property-description-line">
505
    <h2 class="property-inline"> Example: </h2> 
506
    <p class="property-text">upgrade-db-to-1.2</p>
507
  </div>   
508
  
509
  <a name="database.initialConnections"></a><h1 class="property-main"> database.initialConnections </h1>
510
  <div class="property-description-line">
511
    <h2 class="property-inline"> Default Value: </h2> 
512
    <p class="property-text">5</p>
513
  </div>
514
  <div class="property-description-line">
515
    <h2 class="property-inline"> Set Method: </h2> 
516
    <p class="property-text">Manual</p>
517
  </div>
518
  <div class="property-description-line">
519
    <h2 class="property-inline"> Description: </h2> 
520
    <p class="property-text"> The number of initial connection that 
521
      Metacat creates to the database.</p>
522
  </div>
523
  <div class="property-description-line">
524
    <h2 class="property-inline"> Example: </h2> 
525
    <p class="property-text">5</p>
526
  </div>   
527
  
528
  <a name="database.incrementConnections"></a><h1 class="property-main"> database.incrementConnections </h1>
529
  <div class="property-description-line">
530
    <h2 class="property-inline"> Default Value: </h2> 
531
    <p class="property-text">5</p>
532
  </div>
533
  <div class="property-description-line">
534
    <h2 class="property-inline"> Set Method: </h2> 
535
    <p class="property-text">Manual</p>
536
  </div>
537
  <div class="property-description-line">
538
    <h2 class="property-inline"> Description: </h2> 
539
    <p class="property-text"> The number of connections that are created 
540
      when Metacat needs more connections.</p>
541
  </div>
542
  <div class="property-description-line">
543
    <h2 class="property-inline"> Example: </h2> 
544
    <p class="property-text">5</p>
545
  </div>   
546
  
547
  <a name="database.maximumConnections"></a><h1 class="property-main"> database.maximumConnections </h1>
548
  <div class="property-description-line">
549
    <h2 class="property-inline"> Default Value: </h2> 
550
    <p class="property-text">25</p>
551
  </div>
552
  <div class="property-description-line">
553
    <h2 class="property-inline"> Set Method: </h2> 
554
    <p class="property-text">Manual</p>
555
  </div>
556
  <div class="property-description-line">
557
    <h2 class="property-inline"> Description: </h2> 
558
    <p class="property-text"> The maximum number of database connections 
559
      Metacat can make.</p>
560
  </div>
561
  <div class="property-description-line">
562
    <h2 class="property-inline"> Example: </h2> 
563
    <p class="property-text">25</p>
564
  </div>   
565

    
566
  <a name="database.maximumConnectionAge"></a><h1 class="property-main"> database.maximumConnectionAge </h1>
567
  <div class="property-description-line">
568
    <h2 class="property-inline"> Default Value: </h2> 
569
    <p class="property-text">120000</p>
570
  </div>
571
  <div class="property-description-line">
572
    <h2 class="property-inline"> Set Method: </h2> 
573
    <p class="property-text">Manual</p>
574
  </div>
575
  <div class="property-description-line">
576
    <h2 class="property-inline"> Description: </h2> 
577
    <p class="property-text"> The maximum time in milliseconds that a database
578
      connection can live.</p>
579
  </div>
580
  <div class="property-description-line">
581
    <h2 class="property-inline"> Example: </h2> 
582
    <p class="property-text">120000</p>
583
  </div>   
584
  
585
  <a name="database.maximumConnectionTime"></a><h1 class="property-main"> database.maximumConnectionTime </h1>
586
  <div class="property-description-line">
587
    <h2 class="property-inline"> Default Value: </h2> 
588
    <p class="property-text">60000</p>
589
  </div>
590
  <div class="property-description-line">
591
    <h2 class="property-inline"> Set Method: </h2> 
592
    <p class="property-text">Manual</p>
593
  </div>
594
  <div class="property-description-line">
595
    <h2 class="property-inline"> Description: </h2> 
596
    <p class="property-text"> The maximum time in milliseconds that a database
597
      connection can accumulate in actual connection time.</p>
598
  </div>
599
  <div class="property-description-line">
600
    <h2 class="property-inline"> Example: </h2> 
601
    <p class="property-text">60000</p>
602
  </div>   
603

    
604
  <a name="database.maximumUsageNumber"></a><h1 class="property-main"> database.maximumUsageNumber </h1>
605
  <div class="property-description-line">
606
    <h2 class="property-inline"> Default Value: </h2> 
607
    <p class="property-text">100</p>
608
  </div>
609
  <div class="property-description-line">
610
    <h2 class="property-inline"> Set Method: </h2> 
611
    <p class="property-text">Manual</p>
612
  </div>
613
  <div class="property-description-line">
614
    <h2 class="property-inline"> Description: </h2> 
615
    <p class="property-text"> The maximum number of times a single connection
616
      can be used.</p>
617
  </div>
618
  <div class="property-description-line">
619
    <h2 class="property-inline"> Example: </h2> 
620
    <p class="property-text">100</p>
621
  </div>   
622

    
623
  <a name="database.numberOfIndexingThreads"></a><h1 class="property-main"> database.numberOfIndexingThreads </h1>
624
  <div class="property-description-line">
625
    <h2 class="property-inline"> Default Value: </h2> 
626
    <p class="property-text">5</p>
627
  </div>
628
  <div class="property-description-line">
629
    <h2 class="property-inline"> Set Method: </h2> 
630
    <p class="property-text">Manual</p>
631
  </div>
632
  <div class="property-description-line">
633
    <h2 class="property-inline"> Description: </h2> 
634
    <p class="property-text"> The number of threads available for indexing.</p>
635
  </div>
636
  <div class="property-description-line">
637
    <h2 class="property-inline"> Example: </h2> 
638
    <p class="property-text">5</p>
639
  </div>   
640
  
641
  <a name="database.indexingTimerTaskTime"></a><h1 class="property-main"> database.indexingTimerTaskTime </h1>
642
  <div class="property-description-line">
643
    <h2 class="property-inline"> Default Value: </h2> 
644
    <p class="property-text">604800000</p>
645
  </div>
646
  <div class="property-description-line">
647
    <h2 class="property-inline"> Set Method: </h2> 
648
    <p class="property-text">Manual</p>
649
  </div>
650
  <div class="property-description-line">
651
    <h2 class="property-inline"> Description: </h2> 
652
    <p class="property-text"> The time in milliseconds between indexing.</p>
653
  </div>
654
  <div class="property-description-line">
655
    <h2 class="property-inline"> Example: </h2> 
656
    <p class="property-text">604800000</p>
657
  </div>    
658
  
659
  <a name="database.indexingInitialDelay"></a><h1 class="property-main"> database.indexingInitialDelay </h1>
660
  <div class="property-description-line">
661
    <h2 class="property-inline"> Default Value: </h2> 
662
    <p class="property-text">3600000</p>
663
  </div>
664
  <div class="property-description-line">
665
    <h2 class="property-inline"> Set Method: </h2> 
666
    <p class="property-text">Manual</p>
667
  </div>
668
  <div class="property-description-line">
669
    <h2 class="property-inline"> Description: </h2> 
670
    <p class="property-text"> The delay in milliseconds before first indexing is executed.</p>
671
  </div>
672
  <div class="property-description-line">
673
    <h2 class="property-inline"> Example: </h2> 
674
    <p class="property-text">3600000</p>
675
  </div>  
676
 
677
  <a name="database.maximumIndexDelay"></a><h1 class="property-main"> database.maximumIndexDelay </h1>
678
  <div class="property-description-line">
679
    <h2 class="property-inline"> Default Value: </h2> 
680
    <p class="property-text">5000</p>
681
  </div>
682
  <div class="property-description-line">
683
    <h2 class="property-inline"> Set Method: </h2> 
684
    <p class="property-text">Manual</p>
685
  </div>
686
  <div class="property-description-line">
687
    <h2 class="property-inline"> Description: </h2> 
688
    <p class="property-text"> The time in milliseconds that an indexing thread
689
      will wait when it can't get a doc id before retrying the indexing.</p>
690
  </div>
691
  <div class="property-description-line">
692
    <h2 class="property-inline"> Example: </h2> 
693
    <p class="property-text">5000</p>
694
  </div>   
695
 
696
  <a name="database.runDBConnectionRecycleThread"></a><h1 class="property-main"> database.runDBConnectionRecycleThread </h1>
697
  <div class="property-description-line">
698
    <h2 class="property-inline"> Default Value: </h2> 
699
    <p class="property-text">off</p>
700
  </div>
701
  <div class="property-description-line">
702
    <h2 class="property-inline"> Set Method: </h2> 
703
    <p class="property-text">Manual</p>
704
  </div>
705
  <div class="property-description-line">
706
    <h2 class="property-inline"> Description: </h2> 
707
    <p class="property-text"> Determines whether the database connection
708
      pool should run a thread to recycle connections.  Possible values are
709
      "on" and "off"</p>
710
  </div>
711
  <div class="property-description-line">
712
    <h2 class="property-inline"> Example: </h2> 
713
    <p class="property-text">off</p>
714
  </div>  
715
  
716
  <a name="database.cycleTimeOfDBConnection"></a><h1 class="property-main"> database.cycleTimeOfDBConnection </h1>
717
  <div class="property-description-line">
718
    <h2 class="property-inline"> Default Value: </h2> 
719
    <p class="property-text">30000</p>
720
  </div>
721
  <div class="property-description-line">
722
    <h2 class="property-inline"> Set Method: </h2> 
723
    <p class="property-text">Manual</p>
724
  </div>
725
  <div class="property-description-line">
726
    <h2 class="property-inline"> Description: </h2> 
727
    <p class="property-text"> The time in milliseconds between connection
728
      recycling runs.</p>
729
  </div>
730
  <div class="property-description-line">
731
    <h2 class="property-inline"> Example: </h2> 
732
    <p class="property-text">30000</p>
733
  </div>   
734
  
735
  <a name="database.queryignoredparams"></a><h1 class="property-main"> database.queryignoredparams </h1>
736
  <div class="property-description-line">
737
    <h2 class="property-inline"> Default Value: </h2> 
738
    <p class="property-text">enableediting,foo</p>
739
  </div>
740
  <div class="property-description-line">
741
    <h2 class="property-inline"> Set Method: </h2> 
742
    <p class="property-text">Manual</p>
743
  </div>
744
  <div class="property-description-line">
745
    <h2 class="property-inline"> Description: </h2> 
746
    <p class="property-text"> Parameters to ignore in a structured
747
      xml query.</p>
748
  </div>
749
  <div class="property-description-line">
750
    <h2 class="property-inline"> Example: </h2> 
751
    <p class="property-text">enableediting</p>
752
  </div> 
753
  
754
  <a name="database.usexmlindex"></a><h1 class="property-main"> database.usexmlindex </h1>
755
  <div class="property-description-line">
756
    <h2 class="property-inline"> Default Value: </h2> 
757
    <p class="property-text">true</p>
758
  </div>
759
  <div class="property-description-line">
760
    <h2 class="property-inline"> Set Method: </h2> 
761
    <p class="property-text">Manual</p>
762
  </div>
763
  <div class="property-description-line">
764
    <h2 class="property-inline"> Description: </h2> 
765
    <p class="property-text"> Determines whether to use xml 
766
      indexes when finding documents.  Possible values are true
767
      and false.</p>
768
  </div>
769
  <div class="property-description-line">
770
    <h2 class="property-inline"> Example: </h2> 
771
    <p class="property-text">true</p>
772
  </div>
773
  
774
  <a name="database.appResultsetSize"></a><h1 class="property-main"> database.appResultsetSize </h1>
775
  <div class="property-description-line">
776
    <h2 class="property-inline"> Default Value: </h2> 
777
    <p class="property-text">7000</p>
778
  </div>
779
  <div class="property-description-line">
780
    <h2 class="property-inline"> Set Method: </h2> 
781
    <p class="property-text">Manual</p>
782
  </div>
783
  <div class="property-description-line">
784
    <h2 class="property-inline"> Description: </h2> 
785
    <p class="property-text"> Determines the number of results that get sent
786
    back to an application from a query.</p>
787
  </div>
788
  <div class="property-description-line">
789
    <h2 class="property-inline"> Example: </h2> 
790
    <p class="property-text">7000</p>
791
  </div>  
792
     
793
  <a name="database.webResultsetSize"></a><h1 class="property-main"> database.webResultsetSize </h1>
794
  <div class="property-description-line">
795
    <h2 class="property-inline"> Default Value: </h2> 
796
    <p class="property-text">7000</p>
797
  </div>
798
  <div class="property-description-line">
799
    <h2 class="property-inline"> Set Method: </h2> 
800
    <p class="property-text">Manual</p>
801
  </div>
802
  <div class="property-description-line">
803
    <h2 class="property-inline"> Description: </h2> 
804
    <p class="property-text"> Determines the number of results that get sent
805
    back to a web browser from a query.</p>
806
  </div>
807
  <div class="property-description-line">
808
    <h2 class="property-inline"> Example: </h2> 
809
    <p class="property-text">7000</p>
810
  </div>  
811

    
812
  <a name="database.xmlReturnfieldCount"></a><h1 class="property-main"> database.xmlReturnfieldCount </h1>
813
  <div class="property-description-line">
814
    <h2 class="property-inline"> Default Value: </h2> 
815
    <p class="property-text">0</p>
816
  </div>
817
  <div class="property-description-line">
818
    <h2 class="property-inline"> Set Method: </h2> 
819
    <p class="property-text">Manual</p>
820
  </div>
821
  <div class="property-description-line">
822
    <h2 class="property-inline"> Description: </h2> 
823
    <p class="property-text"> If the results of a query have been returned
824
    more times than database.xmlReturnfieldCount, then those results will be
825
    inserted into the xml_queryresult table in the database.</p>
826
  </div>
827
  <div class="property-description-line">
828
    <h2 class="property-inline"> Example: </h2> 
829
    <p class="property-text">0</p>
830
  </div>  
831

    
832
  <a name="database.queryresultStringLength"></a><h1 class="property-main"> database.queryresultStringLength </h1>
833
  <div class="property-description-line">
834
    <h2 class="property-inline"> Default Value: </h2> 
835
    <p class="property-text">500000</p>
836
  </div>
837
  <div class="property-description-line">
838
    <h2 class="property-inline"> Set Method: </h2> 
839
    <p class="property-text">Manual</p>
840
  </div>
841
  <div class="property-description-line">
842
    <h2 class="property-inline"> Description: </h2> 
843
    <p class="property-text"> This is used to set the max size of 
844
    the query result string in the queryresult table. This should be
845
    set to some number less than 4000 if an Oracle database is being 
846
    used.</p>
847
  </div>
848
  <div class="property-description-line">
849
    <h2 class="property-inline"> Example: </h2> 
850
    <p class="property-text">500000</p>
851
  </div>  
852

    
853
  <a name="database.queryresultCacheSize"></a><h1 class="property-main"> database.queryresultCacheSize </h1>
854
  <div class="property-description-line">
855
    <h2 class="property-inline"> Default Value: </h2> 
856
    <p class="property-text">500</p>
857
  </div>
858
  <div class="property-description-line">
859
    <h2 class="property-inline"> Set Method: </h2> 
860
    <p class="property-text">Manual</p>
861
  </div>
862
  <div class="property-description-line">
863
    <h2 class="property-inline"> Description: </h2> 
864
    <p class="property-text"> The number of query results that will be cached.</p>
865
  </div>
866
  <div class="property-description-line">
867
    <h2 class="property-inline"> Example: </h2> 
868
    <p class="property-text">500</p>
869
  </div>  
870

    
871
  <a name="database.queryCacheOn"></a><h1 class="property-main"> database.queryCacheOn </h1>
872
  <div class="property-description-line">
873
    <h2 class="property-inline"> Default Value: </h2> 
874
    <p class="property-text">on</p>
875
  </div>
876
  <div class="property-description-line">
877
    <h2 class="property-inline"> Set Method: </h2> 
878
    <p class="property-text">Manual</p>
879
  </div>
880
  <div class="property-description-line">
881
    <h2 class="property-inline"> Description: </h2> 
882
    <p class="property-text"> Determines whether query caching is turned on.  Acceptible
883
    values are &quot;on&quot; and &quot;off&quot;</p>
884
  </div>
885
  <div class="property-description-line">
886
    <h2 class="property-inline"> Example: </h2> 
887
    <p class="property-text">on</p>
888
  </div>  
889
  
890
  <br>
891
  
892
  <a name="auth.class"></a><h1 class="property-main"> auth.class </h1>
893
  <div class="property-description-line">
894
    <h2 class="property-inline"> Default Value: </h2> 
895
    <p class="property-text">edu.ucsb.nceas.metacat.AuthLdap</p>
896
  </div>
897
  <div class="property-description-line">
898
    <h2 class="property-inline"> Set Method: </h2> 
899
    <p class="property-text">Manual</p>
900
  </div>
901
  <div class="property-description-line">
902
    <h2 class="property-inline"> Description: </h2> 
903
    <p class="property-text"> The class that is used for user authentication.  Currently,
904
    only the AuthLdap class is included in the Metacat distribution, but it is possible
905
    for an admin to implement other authentication strategies by implementing a Java
906
    class that extends the AuthInterface interface and rebuilding Metacat.</p>
907
  </div>
908
  <div class="property-description-line">
909
    <h2 class="property-inline"> Example: </h2> 
910
    <p class="property-text">edu.ucsb.nceas.metacat.AuthLdap</p>
911
  </div>  
912

    
913
  <a name="auth.timeoutMinutes"></a><h1 class="property-main"> auth.timeoutMinutes </h1>
914
  <div class="property-description-line">
915
    <h2 class="property-inline"> Default Value: </h2> 
916
    <p class="property-text">180</p>
917
  </div>
918
  <div class="property-description-line">
919
    <h2 class="property-inline"> Set Method: </h2> 
920
    <p class="property-text">Manual</p>
921
  </div>
922
  <div class="property-description-line">
923
    <h2 class="property-inline"> Description: </h2> 
924
    <p class="property-text"> The number of minutes that a user will stay logged
925
    in to Metacat without any activity.</p>
926
  </div>
927
  <div class="property-description-line">
928
    <h2 class="property-inline"> Example: </h2> 
929
    <p class="property-text">180</p>
930
  </div>  
931
  
932
  <br>
933

    
934
  <a name="ldap.administrators"></a><h1 class="property-main"> ldap.administrators </h1>
935
  <div class="property-description-line">
936
    <h2 class="property-inline"> Default Value: </h2> 
937
    <p class="property-text">(none)</p>
938
  </div>
939
  <div class="property-description-line">
940
    <h2 class="property-inline"> Set Method: </h2> 
941
    <p class="property-text">Configuration Utility</p>
942
  </div>
943
  <div class="property-description-line">
944
    <h2 class="property-inline"> Description: </h2> 
945
    <p class="property-text"> A colon separated list of The ldap users
946
    or groups that have administrative privileges to Metacat.  Note that 
947
    during the intial installation of Metacat, the installer will be 
948
    asked to enter this value.  They must enter a user or group that 
949
    they have access to, or they will not be allowed to continue with 
950
    the configuration.</p>
951
  </div>
952
  <div class="property-description-line">
953
    <h2 class="property-inline"> Example: </h2> <br>
954
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p><br>
955
    <p class="property-text">cn=yourgroup,o=NCEAS,dc=ecoinformatics,dc=org</p>
956
  </div>  
957
  
958
  <a name="ldap.url"></a><h1 class="property-main"> ldap.url </h1>
959
  <div class="property-description-line">
960
    <h2 class="property-inline"> Default Value: </h2> 
961
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
962
  </div>
963
  <div class="property-description-line">
964
    <h2 class="property-inline"> Set Method: </h2> 
965
    <p class="property-text">Configuration Utility</p>
966
  </div>
967
  <div class="property-description-line">
968
    <h2 class="property-inline"> Description: </h2> 
969
    <p class="property-text"> The url of the ldap server that Metacat
970
    should use for authentication.</p>
971
  </div>
972
  <div class="property-description-line">
973
    <h2 class="property-inline"> Example: </h2> 
974
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
975
  </div> 
976
  
977
  <a name="ldap.surl"></a><h1 class="property-main"> ldap.surl </h1>
978
  <div class="property-description-line">
979
    <h2 class="property-inline"> Default Value: </h2> 
980
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
981
  </div>
982
  <div class="property-description-line">
983
    <h2 class="property-inline"> Set Method: </h2> 
984
    <p class="property-text">Configuration Utility</p>
985
  </div>
986
  <div class="property-description-line">
987
    <h2 class="property-inline"> Description: </h2> 
988
    <p class="property-text"> The url of the ldap server that Metacat
989
    should use for  secure authentication.</p>
990
  </div>
991
  <div class="property-description-line">
992
    <h2 class="property-inline"> Example: </h2> 
993
    <p class="property-text">ldap://ldap.ecoinformatics.org:389/</p>
994
  </div>   
995
 
996
  <a name="ldap.allowedSubmitters"></a><h1 class="property-main"> ldap.allowedSubmitters </h1>
997
  <div class="property-description-line">
998
    <h2 class="property-inline"> Default Value: </h2> 
999
    <p class="property-text">(none)</p>
1000
  </div>
1001
  <div class="property-description-line">
1002
    <h2 class="property-inline"> Set Method: </h2> 
1003
    <p class="property-text">Configuration Utility</p>
1004
  </div>
1005
  <div class="property-description-line">
1006
    <h2 class="property-inline"> Description: </h2> 
1007
    <p class="property-text"> A colon delimited list of users who should 
1008
    be allowed to submit documents. If no value is specified, all users will 
1009
    be allowed to submit documents.</p>
1010
  </div>
1011
  <div class="property-description-line">
1012
    <h2 class="property-inline"> Example: </h2> 
1013
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1014
  </div>   
1015
  
1016
  <a name="ldap.deniedSubmitters"></a><h1 class="property-main"> ldap.deniedSubmitters </h1>
1017
  <div class="property-description-line">
1018
    <h2 class="property-inline"> Default Value: </h2> 
1019
    <p class="property-text">(none)</p>
1020
  </div>
1021
  <div class="property-description-line">
1022
    <h2 class="property-inline"> Set Method: </h2> 
1023
    <p class="property-text">Configuration Utility</p>
1024
  </div>
1025
  <div class="property-description-line">
1026
    <h2 class="property-inline"> Description: </h2> 
1027
    <p class="property-text"> A colon delimited list of users who should not
1028
    be allowed to submit documents. If no value is specified, all users will 
1029
    be allowed to submit documents.</p>
1030
  </div>
1031
  <div class="property-description-line">
1032
    <h2 class="property-inline"> Example: </h2> 
1033
    <p class="property-text">uid=youruser,o=NCEAS,dc=ecoinformatics,dc=org</p>
1034
  </div> 
1035

    
1036
  <a name="ldap.connectTimeLimit"></a><h1 class="property-main"> ldap.connectTimeLimit </h1>
1037
  <div class="property-description-line">
1038
    <h2 class="property-inline"> Default Value: </h2> 
1039
    <p class="property-text">5000</p>
1040
  </div>
1041
  <div class="property-description-line">
1042
    <h2 class="property-inline"> Set Method: </h2> 
1043
    <p class="property-text">Manual</p>
1044
  </div>
1045
  <div class="property-description-line">
1046
    <h2 class="property-inline"> Description: </h2> 
1047
    <p class="property-text"> The time in milliseconds allowed for ldap 
1048
    server connections.</p>
1049
  </div>
1050
  <div class="property-description-line">
1051
    <h2 class="property-inline"> Example: </h2> 
1052
    <p class="property-text">5000</p>
1053
  </div> 
1054
  
1055
  <a name="ldap.searchTimeLimit"></a><h1 class="property-main"> ldap.searchTimeLimit </h1>
1056
  <div class="property-description-line">
1057
    <h2 class="property-inline"> Default Value: </h2> 
1058
    <p class="property-text">30000</p>
1059
  </div>
1060
  <div class="property-description-line">
1061
    <h2 class="property-inline"> Set Method: </h2> 
1062
    <p class="property-text">Manual</p>
1063
  </div>
1064
  <div class="property-description-line">
1065
    <h2 class="property-inline"> Description: </h2> 
1066
    <p class="property-text"> The time in milliseconds allowed for ldap server searches.</p>
1067
  </div>
1068
  <div class="property-description-line">
1069
    <h2 class="property-inline"> Example: </h2> 
1070
    <p class="property-text">30000</p>
1071
  </div>   
1072
  
1073
  <a name="ldap.searchCountLimit"></a><h1 class="property-main"> ldap.searchCountLimit </h1>
1074
  <div class="property-description-line">
1075
    <h2 class="property-inline"> Default Value: </h2> 
1076
    <p class="property-text">30000</p>
1077
  </div>
1078
  <div class="property-description-line">
1079
    <h2 class="property-inline"> Set Method: </h2> 
1080
    <p class="property-text">Manual</p>
1081
  </div>
1082
  <div class="property-description-line">
1083
    <h2 class="property-inline"> Description: </h2> 
1084
    <p class="property-text"> the count of return entries allowed for ldap server searches.</p>
1085
  </div>
1086
  <div class="property-description-line">
1087
    <h2 class="property-inline"> Example: </h2> 
1088
    <p class="property-text">30000</p>
1089
  </div>     
1090
 
1091
  <a name="ldap.referral"></a><h1 class="property-main"> ldap.referral </h1>
1092
  <div class="property-description-line">
1093
    <h2 class="property-inline"> Default Value: </h2> 
1094
    <p class="property-text">follow</p>
1095
  </div>
1096
  <div class="property-description-line">
1097
    <h2 class="property-inline"> Set Method: </h2> 
1098
    <p class="property-text">Manual</p>
1099
  </div>
1100
  <div class="property-description-line">
1101
    <h2 class="property-inline"> Description: </h2> 
1102
    <p class="property-text"> The type of ldap referrals to use. Acceptible values are
1103
    &quot;follow&quot;, &quot;throw&quot; or &quot;none&quot;. Refer to ldap documentation 
1104
    for further information.</p>
1105
  </div>
1106
  <div class="property-description-line">
1107
    <h2 class="property-inline"> Example: </h2> 
1108
    <p class="property-text">follow</p>
1109
  </div>         
1110

    
1111
  <a name="ldap.onlySecureConnection"></a><h1 class="property-main"> ldap.onlySecureConnection </h1>
1112
  <div class="property-description-line">
1113
    <h2 class="property-inline"> Default Value: </h2> 
1114
    <p class="property-text">false</p>
1115
  </div>
1116
  <div class="property-description-line">
1117
    <h2 class="property-inline"> Set Method: </h2> 
1118
    <p class="property-text">Manual</p>
1119
  </div>
1120
  <div class="property-description-line">
1121
    <h2 class="property-inline"> Description: </h2> 
1122
    <p class="property-text"> Determines whether to only use secure ldap server.
1123
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1124
  </div>
1125
  <div class="property-description-line">
1126
    <h2 class="property-inline"> Example: </h2> 
1127
    <p class="property-text">false</p>
1128
  </div>   
1129

    
1130
  <a name="ldap.onlySecureReferalsConnection"></a><h1 class="property-main"> ldap.onlySecureReferalsConnection </h1>
1131
  <div class="property-description-line">
1132
    <h2 class="property-inline"> Default Value: </h2> 
1133
    <p class="property-text">false</p>
1134
  </div>
1135
  <div class="property-description-line">
1136
    <h2 class="property-inline"> Set Method: </h2> 
1137
    <p class="property-text">Manual</p>
1138
  </div>
1139
  <div class="property-description-line">
1140
    <h2 class="property-inline"> Description: </h2> 
1141
    <p class="property-text"> Determines whether to only use secure referral server.
1142
    Acceptible values are &quot;true&quot; and &quot;false&quot;.</p>
1143
  </div>
1144
  <div class="property-description-line">
1145
    <h2 class="property-inline"> Example: </h2> 
1146
    <p class="property-text">false</p>
1147
  </div>   
1148

    
1149
  <br>
1150

    
1151
  <a name="xml.saxparser"></a><h1 class="property-main"> xml.saxparser </h1>
1152
  <div class="property-description-line">
1153
    <h2 class="property-inline"> Default Value: </h2> 
1154
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1155
  </div>
1156
  <div class="property-description-line">
1157
    <h2 class="property-inline"> Set Method: </h2> 
1158
    <p class="property-text">Manual</p>
1159
  </div>
1160
  <div class="property-description-line">
1161
    <h2 class="property-inline"> Description: </h2> 
1162
    <p class="property-text"> The SAX parser used to parse XML documents. 
1163
    See: <a href="./saxparser.html">SAX parser documentation</a>. </p>
1164
  </div>
1165
  <div class="property-description-line">
1166
    <h2 class="property-inline"> Example: </h2> 
1167
    <p class="property-text">org.apache.xerces.parsers.SAXParser</p>
1168
  </div>   
1169

    
1170
  <a name="xml.eml2_0_0namespace"></a><h1 class="property-main"> xml.eml2_0_0namespace </h1>
1171
  <div class="property-description-line">
1172
    <h2 class="property-inline"> Default Value: </h2> 
1173
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1174
  </div>
1175
  <div class="property-description-line">
1176
    <h2 class="property-inline"> Set Method: </h2> 
1177
    <p class="property-text">Manual</p>
1178
  </div>
1179
  <div class="property-description-line">
1180
    <h2 class="property-inline"> Description: </h2> 
1181
    <p class="property-text"> The namespace of EML 2.0.0 documents. </p>
1182
  </div>
1183
  <div class="property-description-line">
1184
    <h2 class="property-inline"> Example: </h2> 
1185
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.0</p>
1186
  </div>
1187
  
1188
  <a name="xml.eml2_0_1namespace"></a><h1 class="property-main"> xml.eml2_0_1namespace </h1>
1189
  <div class="property-description-line">
1190
    <h2 class="property-inline"> Default Value: </h2> 
1191
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1192
  </div>
1193
  <div class="property-description-line">
1194
    <h2 class="property-inline"> Set Method: </h2> 
1195
    <p class="property-text">Manual</p>
1196
  </div>
1197
  <div class="property-description-line">
1198
    <h2 class="property-inline"> Description: </h2> 
1199
    <p class="property-text"> The namespace of EML 2.0.1 documents. </p>
1200
  </div>
1201
  <div class="property-description-line">
1202
    <h2 class="property-inline"> Example: </h2> 
1203
    <p class="property-text">eml://ecoinformatics.org/eml-2.0.1</p>
1204
  </div>
1205

    
1206
  <a name="xml.eml2_1_0namespace"></a><h1 class="property-main"> xml.eml2_1_0namespace </h1>
1207
  <div class="property-description-line">
1208
    <h2 class="property-inline"> Default Value: </h2> 
1209
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1210
  </div>
1211
  <div class="property-description-line">
1212
    <h2 class="property-inline"> Set Method: </h2> 
1213
    <p class="property-text">Manual</p>
1214
  </div>
1215
  <div class="property-description-line">
1216
    <h2 class="property-inline"> Description: </h2> 
1217
    <p class="property-text"> The namespace of EML 2.1.0 documents. </p>
1218
  </div>
1219
  <div class="property-description-line">
1220
    <h2 class="property-inline"> Example: </h2> 
1221
    <p class="property-text">eml://ecoinformatics.org/eml-2.1.0</p>
1222
  </div>
1223

    
1224
  <a name="xml.packagedoctype"></a><h1 class="property-main"> xml.packagedoctype </h1>
1225
  <div class="property-description-line">
1226
    <h2 class="property-inline"> Default Value: </h2> 
1227
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1228
  </div>
1229
  <div class="property-description-line">
1230
    <h2 class="property-inline"> Set Method: </h2> 
1231
    <p class="property-text">Manual</p>
1232
  </div>
1233
  <div class="property-description-line">
1234
    <h2 class="property-inline"> Description: </h2> 
1235
    <p class="property-text"> The doctype of a package file. The system will only 
1236
    recognize documents of this type as package files. See: 
1237
    <a href="./packages.html">package documentation</a>.</p>
1238
  </div>
1239
  <div class="property-description-line">
1240
    <h2 class="property-inline"> Example: </h2> 
1241
    <p class="property-text">-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</p>
1242
  </div>
1243

    
1244
  <a name="xml.accessdoctype"></a><h1 class="property-main"> xml.accessdoctype </h1>
1245
  <div class="property-description-line">
1246
    <h2 class="property-inline"> Default Value: </h2> 
1247
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1248
  </div>
1249
  <div class="property-description-line">
1250
    <h2 class="property-inline"> Set Method: </h2> 
1251
    <p class="property-text">Manual</p>
1252
  </div>
1253
  <div class="property-description-line">
1254
    <h2 class="property-inline"> Description: </h2> 
1255
    <p class="property-text"> The doctype of an access control list (ACL) file. The 
1256
    system will only recognize documents of this type as access files. See: 
1257
    <a href="./acontrol.html">access control documentation</a>.</p>
1258
  </div>
1259
  <div class="property-description-line">
1260
    <h2 class="property-inline"> Example: </h2> 
1261
    <p class="property-text">-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN</p>
1262
  </div>
1263

    
1264

    
1265

    
1266

    
1267

    
1268
  <!-- table border="1">
1269
    <tr>
1270
      <td><b>Property</b></td>
1271
      <td><b>Description</b></td>
1272
      <td><b>Possible or default value</b></td>
1273
    </tr>
1274
    <tr>
1275
      <td>config-dir</td>
1276
      <td>directory where the style-sets exist</td>
1277
      <td>/opt/tomcat/webapps/metacat/lib</td>
1278
    </tr>
1279
    <tr>
1280
      <td>default-style</td>
1281
      <td>the style-set to use if qformat is set to 'html'</td>
1282
      <td></td>
1283
    </tr>
1284
    <tr>
1285
      <td>xmlcatalogfile</td>
1286
      <td>The default file type catalog file location.<br>
1287
      DEPRECATED</td>
1288
      <td>/opt/tomcat/webapps/xmltodb/catalog.txt</td>
1289
    </tr>
1290
    <tr>
1291
      <td>siteCode</td>
1292
      <td>The code for the current site.</td>
1293
      <td>nceas</td>
1294
    </tr>
1295
    <tr>
1296
      <td>accNumSeparator</td>
1297
      <td>The separator that is used to separate the three parts 
1298
          of the accession number: codename, sequence and revision number.
1299
           changing this parameter will likely break the application, so make
1300
           sure you know what you are doing.  It should be synchronized with 
1301
           the Client application.</td>
1302
      <td>. (period)</td>
1303
    </tr>
1304
    <tr>
1305
      <td>saxparser</td>
1306
      <td>The SAX parser to be used to <a href="./saxparser.html">parse</a> 
1307
      XML documents.</td>
1308
      <td>org.apache.xerces.parsers.SAXParser</td>
1309
    </tr>
1310
    <tr>
1311
      <td>servletpath</td>
1312
      <td>The path on the local machine to the Metacat Servlet.</td>
1313
      <td>/knb/servlet/metacat</td>
1314
    </tr>
1315
    <tr>
1316
      <td>htmlpath</td>
1317
      <td>The path to the HTML server for this Metacat context.  This is where
1318
      the Metacat web interface would be served from.</td>
1319
      <td>/knb</td>
1320
    </tr>
1321
    <tr>
1322
      <td>packagedoctype</td>
1323
      <td>The doctype of a package file.  The system will only recognize documents
1324
      of this type as a <a href="./packages.html">Package</a> files.</td>
1325
      <td>-//NCEAS//eml-dataset-2.0//EN</td>
1326
    </tr>
1327
    <tr>
1328
      <td>accessdoctype</td>
1329
      <td>The doctype of an access control list (ACL) file.  The system will 
1330
          only recognize documents of this type as an <a href="./acontrol.html">Access</a> 
1331
          files.</td>
1332
      <td>-//NCEAS//eml-access-2.0//EN</td>
1333
    </tr>
1334
    <tr>
1335
      <td>server</td>
1336
      <td>The server on which this Metacat server runs.</td>
1337
      <td>dev.nceas.ucsb.edu:8090</td>
1338
    </tr>
1339
    <tr>
1340
      <td>authclass</td>
1341
      <td>The authorization plugin to use.  In this example, LDAP.</td>
1342
      <td>edu.ucsb.nceas.metacat.AuthLdap</td>
1343
    </tr>
1344
    <tr>
1345
      <td>ldapurl</td>
1346
      <td>The path to your LDAP server (if LDAP authentication is being used.</td>
1347
      <td>ldap://ldap.nceas.ucsb.edu:389/</td>
1348
    </tr>
1349
    <tr>
1350
      <td>ldapsurl</td>
1351
      <td>The path to your LDAP server with SSL support.
1352
          (if LDAP authentication is being used and if your LDAT server is set
1353
          with SSL support.) 2 ports are used to listen: 389 for plain sockets 
1354
          and 636 for SSL Sockect. If your LDAP server is not set to support SSL
1355
          this property should be the same as ldapurl, else Metacat will
1356
          retieve an error.</td>
1357
      <td>ldap://ldap.nceas.ucsb.edu:636/</td>
1358
    </tr>
1359
    <tr>
1360
      <td>ldapbase</td>
1361
      <td>LDAP base parameters for the LDAP server.</td>
1362
      <td>o=NCEAS,c=US</td>
1363
    </tr>
1364
    <tr>
1365
      <td>referral</td>
1366
      <td>The type of ldap referrals you want to use.  Eithe 'follow', 'throw' or 
1367
      'none'.  See the ldap documentation for further information</td>
1368
      <td>follow</td>
1369
    </tr>
1370
    <tr>
1371
      <td>deltaT</td>
1372
      <td>The default delta T used for <a href="./replication.html">replication</a>.</td>
1373
      <td>60</td>
1374
    </tr>
1375
    <tr>
1376
      <td>replicationpath</td>
1377
      <td>The relative path to the replication servlet.</td>
1378
      <td>/knb/servlet/replication</td>
1379
    </tr>
1380
    <tr>
1381
      <td>replicationlog</td>
1382
      <td>Location of the replication log file.</td>
1383
      <td>/logs/Metacatreplication.log</td>
1384
    </tr>
1385
    <tr>
1386
      <td>dtdPath</td>
1387
      <td>Path to which DTDs are uploaded.</td>
1388
      <td>/opt/tomcat/webapps/knb/dtd/</td>
1389
    </tr>
1390
    <tr>
1391
      <td>dtdURL</td>
1392
      <td>The HTTP accessable URL to the DTD files specified in dtdPath.</td>
1393
      <td>http://server.domain.com/knb/dtd/</td>
1394
    </tr>
1395
    <tr>
1396
      <td>datafilepath</td>
1397
      <td>The path to which you want data files uploaded.</td>
1398
      <td>/opt/tomcat/webapps/knb/data</td>
1399
    </tr>
1400
    <tr>
1401
      <td>certPath</td>
1402
      <td>path to the SSL keys for secure transmissions.</td>
1403
      <td>/opt/tomcat/webapps/metacat/lib</td>
1404
    </tr>
1405
    <tr>
1406
      <td>administrators</td>
1407
      <td>The administrators parameter lists the accounts that are allowed to
1408
          perform administrative actions such as rebuilding indices for 
1409
          documents. The list can can contain more than one account separated
1410
          by colons.</td>
1411
      <td>Default:&nbsp;&nbsp;
1412
          <code>uid=jones,o=NCEAS,dc=ecoinformatics,dc=org</code>
1413
      <br><br>Examples:&nbsp;&nbsp;
1414
          <code>uid=localadmin,o=ucnrs.org</code>
1415
      </td>
1416
    </tr>
1417
    <tr><td> </td></tr>
1418

    
1419

    
1420
    <tr><td colspan="3"><b>Additional properties that probably do not need to be changed</b></td></tr>
1421
    <tr><td>configured</td><td>Configuration flag</td><td>true</td></tr>
1422
    <tr><td>configurationPage</td><td>The page to do metacat configuration<td>/configure.jsp</td></tr>
1423
    <tr><td>configurationSuccessPage</td><td>The page to show successful message after configuration</td><td>/configure-restart.jsp</td></tr>
1424
    <tr><td>version</td><td>Release version.</td><td>1.7.1</td></tr>
1425
    <tr><td>maximumConnectionAge</td><td> </td><td>120000</td></tr>
1426
    <tr><td>maximumConnectionTime</td><td> </td><td>60000</td></tr>
1427
    <tr><td>maximumUsageNumber</td><td> </td><td>100</td></tr>
1428
    <tr><td>numberOfIndexingThreads</td><td> </td><td>5</td></tr>
1429
    <tr><td>indexingTimerTaskTime</td><td> </td><td>604800000</td></tr>
1430
    <tr><td>indexingInitialDelay</td><td> </td><td>3600000</td></tr>
1431
    <tr><td>maximumIndexDelay</td><td> </td><td>5000</td></tr>
1432
    <tr><td>runDBConnectionRecycleThread</td><td> </td><td>off</td></tr>
1433
    <tr><td>cycleTimeOfDBConnection</td><td> </td><td>30000</td></tr>
1434
    <tr>
1435
      <td>timedreplication</td>
1436
      <td>Determines whether timed replication to other metacat servers is being used.</td>
1437
      <td>Default:&nbsp;&nbsp;
1438
          <code>false</code>
1439
      <br><br>Other possible values:&nbsp;&nbsp;
1440
          <code>true</code>
1441
      </td>
1442
    </tr>
1443
    <tr>
1444
      <td>firsttimedreplication</td>
1445
      <td>The time for starting first timed replication if timedreplication is true.
1446
          (See comments in build.properties file for additional details.)</td>
1447
      <td>Default:&nbsp;&nbsp;
1448
          <code>10:00 PM</code>
1449
          <code>&nbsp;</code>
1450
      </td>
1451
    </tr>
1452
    <tr>
1453
      <td>timedreplicationinterval</td>
1454
      <td>The interval to next timed replication if timedreplication is true.
1455
          The value is in milliseconds and default value is 48 hours.</td>
1456
      <td>Default:&nbsp;&nbsp;
1457
          <code>172800000</code>
1458
          <code>&nbsp;</code>
1459
      </td>
1460
    </tr>
1461
    <tr><td>forcereplicationwaitingtime</td><td> </td><td></td></tr>
1462
    <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>
1463
    <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>
1464
    <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>
1465
    <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>
1466
    <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>
1467
    <tr><td>packagedoctypeset</td><td> </td><td> </td></tr>
1468
    <tr>
1469
      <td>httpserver</td>
1470
      <td>httpserver is the plain HTTP address and port number that Metacat uses for purposes
1471
          other than replication. Since this property is usually composed of the <code>config.hosthame</code> and <code>config.port</code>
1472
          properties (described above), the default setting can be used in most cases.</td>
1473
      <td>Default:&nbsp;&nbsp;<code>${config.hostname}:${config.port}</code>
1474
      </td>
1475
    </tr>
1476
    <tr><td>junittesturl</td><td>The url of the test server.</td><td></td></tr>
1477
    <tr><td>replicationerrorlog</td><td> </td><td></td></tr>
1478
    <tr><td>schemaPath</td><td>Path to installed XSD schemas.</td><td></td></tr>
1479
    <tr><td>schemaURL</td><td>URL to installed XSD schemas.</td><td></td></tr>
1480
    <tr><td>inlinedatafilepath</td><td>Path for storing data that was extracted from <code>inline</code> element of EML documents.</td><td></td></tr>
1481
    <tr><td>context</td><td>The name of the servlet context</td><td></td></tr>
1482
    <tr><td>debuglevel</td><td>Verbosity of debugging messages.  Higher numbers means more debugging detail.</td><td></td></tr>
1483
    <tr><td>datafileflag</td><td> </td><td>datafile</td></tr>
1484
    <tr><td>datafilesizelimit</td><td>Limit on file size for uploaded data files.</td><td>1000</td></tr>
1485
    <tr><td>defaultcontenttype</td><td> </td><td></td></tr>
1486
    <tr><td>query.ignored.params</td><td>Parameters that are passed through to XSLT style sheets without modification.</td><td>enableediting,foo</td></tr>
1487
    <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>
1488
    <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>
1489
    <tr><td>web_resultsetsize</td><td>Used for the setting the size of resultset for search done using browser</td><td>900</td></tr>
1490
    <tr><td>queryresult_string_length</td><td>Used for the setting the size of queryresult_string in queryresult table</td><td>4000</td></tr>
1491
    <tr>
1492
      <td>queryresult_cache_size</td>
1493
      <td>The size of query result cache.</td>
1494
      <td>Default:&nbsp;&nbsp;500</td>
1495
    </tr>
1496
    <tr>
1497
      <td>query_cache_on</td>
1498
      <td>Turn the query result cache on or off</td>
1499
      <td>Default:&nbsp;&nbsp;true</td>
1500
    </tr>
1501
    <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>
1502
    <tr>
1503
      <td>moderators</td>
1504
      <td>Moderator accounts, in a colon-separated list. Special users who will review general user's submission. 
1505
             Moderators can approve, revise and reject the submission after reviewing. This property is only used in ESA skin.</td>
1506
      <td>Default:&nbsp;&nbsp;<code>cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org</code></td>
1507
    </tr>
1508
    <tr>
1509
      <td>allowedSubmitters</td>
1510
      <td>Specifies the list of users who should be allowed to submit documents. 
1511
          If no value is specified (the default setting), all users will be allowed to submit documents.
1512
      </td>
1513
      <td>Default:&nbsp;&nbsp;(no value)</td>
1514
    </tr>
1515
    <tr>
1516
      <td>deniedSubmitters</td>
1517
      <td>Specify the list of users who should not be allowed to submit documents. 
1518
          If no value is specified (the default setting), all users will be allowed to submit documents.</td>
1519
      <td>Default:&nbsp;&nbsp;(no value)</td>
1520
    </tr>
1521
    <tr>
1522
      <td>indexNamespaces</td>
1523
      <td>A comma-separated list of doctypes which will be indexed</td>
1524
      <td>Default:&nbsp;&nbsp;eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1</td>
1525
    </tr>
1526
    <tr>
1527
      <td>indexPaths</td>
1528
      <td>See <a href="./metacatinstall.html#buildProperties">description of build properties</a></td>
1529
      <td>Default:&nbsp;&nbsp;<code>organizationName,originator/individualName/surName,...</code></td>
1530
    </tr>
1531
    <tr>
1532
      <td>ldapconnecttimelimit</td>
1533
      <td>The time in milliseconds allowed for ldap server connections.</td>
1534
      <td>Default:&nbsp;&nbsp;5000</td>
1535
    </tr>
1536
    <tr>
1537
      <td>ldapsearchtimelimit</td>
1538
      <td>The time in milliseconds allowed for ldap server searches.</td>
1539
      <td>Default:&nbsp;&nbsp;30000</td>
1540
    </tr>
1541
    <tr>
1542
      <td>ldapsearchcountlimit</td>
1543
      <td>The count of return entries allowed for ldap server searches.</td>
1544
      <td>Default:&nbsp;&nbsp;30000</td>
1545
    </tr>
1546
    <tr>
1547
      <td>onlySecureLDAPConnection</td>
1548
      <td>When set to true, connects main LDAP server only by SSL</td>
1549
      <td>Default:&nbsp;&nbsp;false</td>
1550
    </tr>
1551
    <tr>
1552
      <td>onlySecureLDAPReferalsConnection</td>
1553
      <td>When set to true, connects referal LDAP server only by SSL</td>
1554
      <td>Default:&nbsp;&nbsp;false</td>
1555
    </tr>
1556
    <tr>
1557
      <td>skinconfigfiles</td>
1558
      <td>List of skins which have configure files</td>
1559
      <td>Default:&nbsp;&nbsp;esa,nceas,knb,obfs,nrs,sanparks</td>
1560
    </tr>
1561
    <tr>
1562
      <td>writeDebugToFile</td>
1563
      <td>Used for writing debug info into a another output file.</td>
1564
      <td>Default:&nbsp;&nbsp;true</td>
1565
    </tr>
1566
    <tr>
1567
      <td>debugOutputFile</td>
1568
      <td>Output file name where debug info will be written.</td>
1569
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug</td>
1570
    </tr>
1571
    <tr>
1572
      <td>delimiteredOutputFile</td>
1573
      <td>Delimited text output file name where debug info will be written.</td>
1574
      <td>Default:&nbsp;&nbsp;/tmp/metacat.debug.delimitered</td>
1575
    </tr>
1576
    <tr>
1577
      <td><em>Metacat Harvester properties</em>:<br/><br/>
1578
          connectToMetacat, delay, harvesterAdministrator, 
1579
          logPeriod, maxHarvests, period, smtpServer, GetDocError, GetDocSuccess, GetHarvestListError,
1580
          GetHarvestListSuccess, HarvesterStartup, HarvesterShutdown, InsertDocError, InsertDocSuccess,
1581
          MetacatHasDoc, UpdateDocError, UpdateDocSuccess, ValidateDocError, ValidateDocSuccess,
1582
          ValidateHarvestListError, ValidateHarvestListSuccess</td>
1583
      <td>See <a href="./harvester.html">Metacat Harvester</a> documentation</td>
1584
      <td></td>
1585
    </tr>
1586
    <tr>
1587
      <td><em>Spatial properties</em>:<br/><br/>
1588
              runSpatialOption,
1589
              regenerateCacheOnRestart,
1590
              spatialDocnameList,
1591
              eml_westBoundingCoordinatePath,
1592
              eml_eastBoundingCoordinatePath,
1593
              eml_southBoundingCoordinatePath,
1594
              eml_northBoundingCoordinatePath,
1595
              fgdc_westBoundingCoordinatePath,
1596
              fgdc_eastBoundingCoordinatePath,
1597
              fgdc_southBoundingCoordinatePath,
1598
              fgdc_northBoundingCoordinatePath,
1599
              metadata_westBoundingCoordinatePath,
1600
              metadata_eastBoundingCoordinatePath,
1601
              metadata_southBoundingCoordinatePath,
1602
              metadata_northBoundingCoordinatePath,
1603
              docTitle,
1604
              metacatUrl,
1605
              baseUrl
1606
      </td>
1607
      <td>See <a href="./spatial_option.html">Metacat Spatial Option</a> documentation</td>
1608
      <td></td>
1609
    </tr>
1610
    <tr>
1611
      <td>sitemapDirectory</td>
1612
      <td>The relative directory path in which sitemap files should be written.</td>
1613
      <td>Default:&nbsp;&nbsp;{tomcat_dir}/webapps/{context_name}/sitemaps</td>
1614
    </tr>
1615
    <tr>
1616
      <td>sitemapInterval</td>
1617
      <td>The time interval (in milliseconds) between rebuilding the sitemap.</td>
1618
      <td>Default:&nbsp;&nbsp;86400000</td>
1619
    </tr>
1620
  </table -->
1621
  
1622
  <br>
1623
  <a href="./datafiles.html">Back</a> | <a href="./metacattour.html">Home</a> | 
1624
  <a href="./harvester.html">Next</a>
1625
  
1626

    
1627
</BODY>
1628
</HTML>
(44-44/57)