Project

General

Profile

1
Accessing and Submitting Metadata and Data
2
==========================================
3

    
4
.. contents::
5

    
6
The Metacat repository can be accessed and updated using a number of tools, 
7
including: 
8

    
9
* the Registry, Metacat's optional Web interface
10
* user-created HTML forms 
11
* Metacat's EarthGrid API
12
* existing clients, such as KNB's Morpho application, designed to help 
13
  scientists create, edit, and manage metadata
14
* user-created desktop clients that take advantage of Metacat's Java API.
15

    
16
In this section, we will look at how to take advantage of these tools to 
17
customize Metacat for your user-base.
18

    
19
A Brief Note about How Information is Stored
20
--------------------------------------------
21
Metacat stores XML files as a hierarchy of nodes, where each node is stored as 
22
records in database tables. Because many XML data schemas are broken up into 
23
multiple DTDs requiring multiple XML files that are related but stored 
24
separately in the system, the system uses "packages" to link related but 
25
separate documents. Packaged documents contain information that shows how they 
26
are related to eachother, essentially stating that file A has a relationship 
27
to file B, etc. A package file also allows users to link metadata files to the 
28
data files they describe. For more information about the structure of data 
29
packages and how XML documents and data are stored in Metacat, please see the 
30
developer's documentation.
31

    
32
Using the Registry
33
------------------
34
Metacat's optional Registry provides a simple Web-based interface for creating, 
35
editing, and submitting metadata to the Metacat repository (Figure 4.1). The 
36
interface includes help documentation, and can be customized using Metacat's 
37
configuration settings. The Registry also includes an administrative interface 
38
for managing LDAP user accounts, which is useful if you are using LDAP as your 
39
Metacat authentication system. Note that you must be running your own LDAP 
40
server if you wish to use the LDAP Web interface. If you do not have your own 
41
LDAP server, you can create and manage new accounts on the KNB website 
42
(http://knb.ecoinformatics.org/). Please note that at this time, the Registry 
43
interface has only been tested on Linux systems.
44

    
45
.. figure:: images/screenshots/image033.jpg
46
   :align: center
47

    
48
   An example installation of the Register's web interface. Customize the 
49
   displayed and required modules with the Skins Configuration settings.
50
   
51
You can customize which modules (e.g., "Name of Submitter" or "Temporal 
52
Coverage of Data") are displayed and which are required using the Skins 
53
Configuration settings
54

    
55
Installing the Registry
56
~~~~~~~~~~~~~~~~~~~~~~~
57
In order to install and run the Registry, you must have Metacat installed and 
58
Tomcat must be running behind an Apache Web server (see previous sections for 
59
information about installing and configuring Apache to run with Tomcat).
60

    
61
To install and run the Registry:
62

    
63
1. Build the Metacat Perl client library:
64

    
65
  ::
66

    
67
    cd $METACAT/src/perl/Metacat
68
    perl Makefile.PL
69
    sudo make
70
    sudo make install
71

    
72
.. sidebar:: Instructions for Red Hat (Alternate Step 2)
73

    
74
  * Install the libraries
75

    
76
    ::
77
    
78
      sudo yum install gcc libxml2-devel libxslt-devel ant –y
79

    
80
  * Install CPAN, which allows us to install the Perl dependencies for the 
81
    registry and account management parts of Metacat. If asked to manually 
82
    configure cpan, type 'no' and CPAN will be setup with its default values.
83

    
84
    ::
85
    
86
      sudo yum install perl-CPAN
87
      sudo cpan
88

    
89
  * You should now see a prompt which looks like:
90

    
91
    ::
92
    
93
      cpan>
94

    
95
  * The rest of the commands assume you're inside of CPAN. Let's get the most 
96
    recent version of the CPAN software. Just press return after any prompts 
97
    you receive during this process.
98
    
99
    ::
100
    
101
      install Bundle::CPAN
102
      reload cpan
103

    
104
  * Install the required modules. Here we're installing an old LibXSLT, as the 
105
    current one requires a newer libxslt than is available on Redhat 4 & 5. 
106
    Again, just answer 'yes' to any questions.
107

    
108
    ::
109

    
110
      install AutoLoader
111
      install CGI
112
      install CGI::SEssion
113
      install LWP::UserAgent
114
      install Net::LDAP
115
      install Template 
116
      install URI
117
      install MSERGEANT/XML-LibXSLT-1.58.tar.gz
118

    
119
2. Install the required system libraries using Ubuntu/Debian (instructions 
120
   Red Hat in sidebar)
121
         
122
  * Install the libraries
123

    
124
    ::
125

    
126
      sudo apt-get install ant libappconfig-perl libxml-libxml-perl libxml-libxslt-perl libtemplate-perl libcgi-session-perl libdigest-sha1-perl libnet-ldap-perl libterm-readkey-perl libxml-dom-perl libsoap-lite-perl -y
127

    
128
  * Install two more package using cpan 
129

    
130
    ::
131
    
132
      sudo cpan -i Config::Properties
133
      sudo cpan -i Scalar::Util
134

    
135

    
136
3. Double-check that Metacat's temporary folder, application.tempDir, is 
137
   writable by the apache user, usually www-data or apache. 
138

    
139
4. Make sure that the following scripts (found in ``<tomcat-home>/webapps/knb/cgi-bin``) 
140
   are executable: register-dataset.cgi and ldapweb.cgi.
141

    
142
  ::
143
  
144
    sudo chmod +x <tomcat-home>/webapps/knb/cgi-bin/*.cgi
145

    
146
5. Restart Apache.
147

    
148
  ::
149
  
150
    sudo /etc/init.d/apache2 restart
151

    
152
6. Visit the resulting URL: 
153
   http://<your_context_url>/cgi-bin/register-dataset.cgi?cfg=default
154
   Where ``<your_context_url>`` is the URL of the server hosting the Metacat 
155
   followed by the name of the WAR file (i.e., the application context) that 
156
   you installed. For instance, the context URL for the KNB Metacat is: 
157
   http://knb.ecoinformatics.org/knb.
158

    
159
If everything worked correctly, the registry home page will open (see figure).
160

    
161
.. figure:: images/screenshots/image035.jpg
162
   :align: center
163

    
164
   An example of the Registry home page (with the default skin).
165
   
166
Customizing the Registry
167
~~~~~~~~~~~~~~~~~~~~~~~~
168
Before using the registry, you may wish to customize the interface using the 
169
Skins Configuration settings. If you are using the default skin, you must 
170
disable the 'show site list' setting before you can submit the form without 
171
errors. You may also wish to remove (or modify) the list of NCEAS-specific 
172
projects that appear in the default registry. To remove these form fields, 
173
open Metacat's administrative interface (http://<your.context.url>/knb/admin) 
174
and select the Skins Specific Properties Configuration option. On the skins 
175
configuration page, uncheck the boxes beside any form elements that you do not 
176
wish to appear in the registry.
177

    
178
Once you have saved your changes, you must restart Tomcat for them to come 
179
into effect. To restart Tomcat, type: ``sudo /etc/init.d/tomcat6 restart`` or an 
180
equivalent command appropriate to your operating system. 
181

    
182
.. figure:: images/screenshots/image037.jpg
183
   :align: center
184

    
185
   Uncheck the box beside any setting to remove it from the Registry form. In 
186
   the example, the "Show Site List" and "Show Work Group" form fields, 
187
   corresponding to the "Station Name" and "NCEAS Project" drop-down lists in 
188
   the registry form, have been removed.
189
   
190
Using HTML Forms (the HTTP Interface)
191
-------------------------------------
192
Metacat's HTTP interface supports Get and Post requests and a variety of actions (Table 4.1) that facilitate information retrieval and storage. HTTP requests can be sent from any client application that communicates using the Web's HTTP protocol. 
193

    
194
* Supported Actions (API)
195
* Logging in
196
* Inserting, Updating, and Deleting XML and Data Documents
197
* Searching Metacat
198
* Paged Query Return
199
* Reading Data and Metadata
200

    
201
Supported Actions
202
~~~~~~~~~~~~~~~~~
203
Metacat supports get and post requests as well as actions for writing, querying, 
204
and reading stored XML. In addition, the HTTP interface includes functions for 
205
validating and transforming XML documents (see table). 
206

    
207
Note that if Replication is enabled, Metacat recognizes several additional 
208
actions, included in Table 4.2. For more information about replication, 
209
please see :doc:`replication`.
210

    
211
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
212
| Action                   | Description and Parameters                                                                                                                                                                                                                                         |
213
+==========================+====================================================================================================================================================================================================================================================================+
214
| delete                   | Delete the specified document from the database. For an                                                                                                                                                                                                            |
215
|                          | example, please see Inserting, Updating, and                                                                                                                                                                                                                       |
216
|                          | Deleting XML and Data Documents.                                                                                                                                                                                                                                   |
217
|                          |                                                                                                                                                                                                                                                                    |
218
|                          | ``docid`` - the docid of the document to delete                                                                                                                                                                                                                    |
219
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
220
| export                   | Export a data package in a zip file.                                                                                                                                                                                                                               |
221
|                          |                                                                                                                                                                                                                                                                    |
222
|                          | ``docid`` - the docid of the document to delete                                                                                                                                                                                                                    |
223
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
224
| getaccesscontrol         | Get the access control list (ACL) for the                                                                                                                                                                                                                          |
225
|                          | specified document.                                                                                                                                                                                                                                                |
226
|                          |                                                                                                                                                                                                                                                                    |
227
|                          | ``docid`` - the docid of the document to delete                                                                                                                                                                                                                    |
228
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
229
| getalldocids             | Retrieve a list of all docids registered with the system.                                                                                                                                                                                                          |
230
|                          |                                                                                                                                                                                                                                                                    |
231
|                          | ``scope`` - a string used to match a range of docids in a SQL LIKE statement                                                                                                                                                                                       |
232
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
233
| getdataguide             | Read a data guide for the specified document type                                                                                                                                                                                                                  |
234
| DEPRECATED               |                                                                                                                                                                                                                                                                    |
235
| Use getdtdschema instead | ``doctype`` - the doctype for which to get the data guide                                                                                                                                                                                                          |
236
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
237
| getdoctypes              | Get all doctypes currently available in the Metacat Catalog System. No parameters.                                                                                                                                                                                 |
238
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
239
| getdtdschema             | Read the DTD or XMLSchema file for the specified doctype.                                                                                                                                                                                                          |
240
|                          |                                                                                                                                                                                                                                                                    |
241
|                          | ``doctype`` - the doctype for which DTD or XMLSchema files to read                                                                                                                                                                                                 |
242
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
243
| getlastdocid             | Get the latest docid with revision number used by user.                                                                                                                                                                                                            |
244
|                          |                                                                                                                                                                                                                                                                    |
245
|                          | ``username`` - the user's log-in name                                                                                                                                                                                                                              |
246
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
247
| getlog                   | Get the latest docid with revision number used by user.                                                                                                                                                                                                            |
248
|                          |                                                                                                                                                                                                                                                                    |
249
|                          | ``ipaddress`` - the internet protocol address for the event                                                                                                                                                                                                        |
250
|                          | ``principal`` - the principal for the event (a username, etc)                                                                                                                                                                                                      |
251
|                          | ``docid`` - the identifier of the document to which the event applies                                                                                                                                                                                              |
252
|                          | ``event`` - the string code for the event                                                                                                                                                                                                                          |
253
|                          | ``start`` - beginning of date-range for query                                                                                                                                                                                                                      |
254
|                          | ``end`` - end of date-range for query                                                                                                                                                                                                                              |
255
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
256
| getloggedinuserinfo      | Get user info for the currently logged in user. No parameters.                                                                                                                                                                                                     |
257
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
258
| getpricipals             | Get all users and groups in the current authentication schema. No parameters.                                                                                                                                                                                      |
259
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
260
| getrevisionanddoctype    | Return the revision and doctype of a document.                                                                                                                                                                                                                     |
261
|                          | The output is String that looks like "rev;doctype"                                                                                                                                                                                                                 |
262
|                          |                                                                                                                                                                                                                                                                    |
263
|                          | ``docid`` - the docid of the document                                                                                                                                                                                                                              |
264
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
265
| getversion               | Get Metacat version.   Return the current version of Metacat as XML. No parameters.                                                                                                                                                                                |
266
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
267
| insert                   | Insert an XML document into the database. For an example, please see                                                                                                                                                                                               |
268
|                          | Inserting, Updating, and Deleting XML and Data Documents                                                                                                                                                                                                           |
269
|                          |                                                                                                                                                                                                                                                                    |
270
|                          | ``docid`` - the user-defined docid to assign to the new XML document                                                                                                                                                                                               |
271
|                          | ``doctext`` - the text of the XML document to insert                                                                                                                                                                                                               |
272
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
273
| insertmultipart          | Insert an XML document using multipart encoding into the database.                                                                                                                                                                                                 |
274
|                          |                                                                                                                                                                                                                                                                    |
275
|                          | ``docid`` - the user-defined docid to assign to the new XML document                                                                                                                                                                                               |
276
|                          | ``doctext`` - the text of the XML document to insert                                                                                                                                                                                                               |
277
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
278
| isregistered             | Check if an individual document exists in either the xml_documents or xml_revisions tables.                                                                                                                                                                        |
279
|                          | For more information about Metacat's database schema, please see the developer documentation.                                                                                                                                                                      |
280
|                          |                                                                                                                                                                                                                                                                    |
281
|                          | ``docid`` - the docid of the document                                                                                                                                                                                                                              |
282
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
283
| login                    | Log the user in. You must log in using this action before you can perform                                                                                                                                                                                          |
284
|                          | many of the actions. For an example of the login action, see Logging In.                                                                                                                                                                                           |
285
|                          |                                                                                                                                                                                                                                                                    |
286
|                          | ``username`` - the user's login name                                                                                                                                                                                                                               |
287
|                          | ``password`` - the user's password                                                                                                                                                                                                                                 |
288
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
289
| logout                   | Log the current user out and destroy the associated session. No parameters.                                                                                                                                                                                        |
290
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
291
| query                    | Perform a free text query. For an example, please see Searching Metacat.                                                                                                                                                                                           |
292
|                          |                                                                                                                                                                                                                                                                    |
293
|                          | ``returndoctype`` - the doctype to use for your Package View. For more information about packages, see http://knb.ecoinformatics.org/software/metacat/packages.html                                                                                                |
294
|                          | ``qformat`` - the format of the returned result set. Possible values are html or xml or the name of your servlet's Metacat skin.                                                                                                                                   |
295
|                          | ``querytitle`` - OPTIONAL - the title of the query                                                                                                                                                                                                                 |
296
|                          | ``doctype`` - OPTIONAL - if doctype is specified, the search is limited only to the specified doctype(s). (e.g., eml://ecoinformatics.org/eml-2.0.1 and/or eml://ecoinformatics.org/eml-2.0.0) If no doctype element is specified, all document types are returned |
297
|                          | ``returnfield`` - a custom field to be returned by any hit document.                                                                                                                                                                                               |
298
|                          | ``operator`` - the Boolean operator to apply to the query. Possible values are: union or intersect                                                                                                                                                                 |
299
|                          | ``searchmode`` - the type of search to be performed. Possible values are: contains, starts-with, ends-with, equals, isnot-equal, greater-than, less-than, greater-than-equals, less-than-equals.                                                                   |
300
|                          | ``anyfield`` - a free-text search variable. The value placed in this parameter will be searched for in any document in any node.                                                                                                                                   |
301
|                          | ``pagesize`` – the number of search results to display on each search results page (e.g., 10). Used with pagestart. See section 4.3.4 for an example.                                                                                                              |
302
|                          | ``pagestart`` – the displayed search results page (e.g, 1). Used with pagesize. See section 4.3.4 for an example.                                                                                                                                                  |
303
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
304
| read                     | Get a document from the database and return it in the specified format. See Searching Metacat for an example.                                                                                                                                                      |
305
|                          |                                                                                                                                                                                                                                                                    |
306
|                          | ``docid`` - the docid of the document to return                                                                                                                                                                                                                    |
307
|                          | ``qformat`` - the format to return the document in. Possible values are: ``html``, ``xml``,or, if your Metacat uses a skin, the name of the skin.                                                                                                                  |
308
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
309
| readinlinedata           | Read inline data only.                                                                                                                                                                                                                                             |
310
|                          |                                                                                                                                                                                                                                                                    |
311
|                          | ``inlinedataid`` - the id of the inline data to read                                                                                                                                                                                                               |
312
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
313
| setaccess                | Change access permissions for a user on a specified document.                                                                                                                                                                                                      |
314
|                          |                                                                                                                                                                                                                                                                    |
315
|                          | ``docid`` - the docid of the document to be modified.                                                                                                                                                                                                              |
316
|                          | ``principal`` - the user or group whose permissions will be modified                                                                                                                                                                                               |
317
|                          | ``permission`` - the permission  to set (read, write, all)                                                                                                                                                                                                         |
318
|                          | ``permType`` - the type of permission to set (allow, deny)                                                                                                                                                                                                         |
319
|                          | ``permOrder`` - the order in which to apply the permission (allowFirst, denyFirst)                                                                                                                                                                                 |
320
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
321
| spatial_query            | Perform a spatial query. These queries may include any of the queries supported by the                                                                                                                                                                             |
322
|                          | WFS / WMS standards. For more information, see Spatial Queries.                                                                                                                                                                                                    |
323
|                          |                                                                                                                                                                                                                                                                    |
324
|                          | ``xmax`` - max x spatial coordinate                                                                                                                                                                                                                                |
325
|                          | ``ymax`` - max y spatial coordinate                                                                                                                                                                                                                                |
326
|                          | ``xmin`` - min x spatial coordinate                                                                                                                                                                                                                                |
327
|                          | ``ymin`` - min y spatial coordinate                                                                                                                                                                                                                                |
328
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
329
| squery                   | Perform a structured query. For an example, please see Searching Metacat.                                                                                                                                                                                          |
330
|                          |                                                                                                                                                                                                                                                                    |
331
|                          | ``query`` - the text of the pathquery document sent to the server                                                                                                                                                                                                  |
332
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
333
| update                   | Overwrite an XML document with a new one and give the new one the same docid but with                                                                                                                                                                              |
334
|                          | the next revision number. For an example, please see Inserting, Updating, and                                                                                                                                                                                      |
335
|                          | Deleting XML and Data Documents.                                                                                                                                                                                                                                   |
336
|                          |                                                                                                                                                                                                                                                                    |
337
|                          | ``docid`` - the docid of the document to update                                                                                                                                                                                                                    |
338
|                          | ``doctext`` - the text with which to update the XML document                                                                                                                                                                                                       |
339
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
340
| upload                   | Upload (insert or update) a data file into Metacat. Data files are stored on Metacat and may be in any                                                                                                                                                             |
341
|                          | format (binary or text), but they are all treated as if they were binary.                                                                                                                                                                                          |
342
|                          |                                                                                                                                                                                                                                                                    |
343
|                          | ``docid`` - the docid of the data file to upload                                                                                                                                                                                                                   |
344
|                          | ``datafile`` - the data file to upload                                                                                                                                                                                                                             |
345
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
346
| validate                 | Validate a specified document against its DTD.                                                                                                                                                                                                                     |
347
|                          |                                                                                                                                                                                                                                                                    |
348
|                          | ``docid`` - the docid of the document to validate                                                                                                                                                                                                                  |
349
|                          | ``valtext`` - the DTD by which to validate this document                                                                                                                                                                                                           |
350
+--------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
351

    
352

    
353
Metacat Replication Parameters
354

    
355
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
356
| Action         | Description and Parameters                                                                                                                                      |
357
+================+=================================================================================================================================================================+
358
| forcereplicate | Force the local server to get the specified document from the remote host.                                                                                      |
359
|                |                                                                                                                                                                 |
360
|                | ``server`` - The server to which this document is being sent                                                                                                    |
361
|                | ``docid`` - The docid of the document to send                                                                                                                   |
362
|                | ``dbaction`` - The action to perform on the document: insert or update (the default)                                                                            |
363
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
364
| getall         | Force the local server to check all known servers for updated documents. No parameters.                                                                         |
365
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
366
| getcatalog     | Send the contents of the xml_catalog table encoded in XML. No parameters.                                                                                       |
367
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
368
| getlock        | Request a lock on the specified document.                                                                                                                       |
369
|                |                                                                                                                                                                 |
370
|                | ``docid`` - the docid of the document                                                                                                                           |
371
|                | ``updaterev`` - the revision number of docid                                                                                                                    |
372
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
373
| gettime        | Return the local time on this server. No parameters.                                                                                                            |
374
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
375
| servercontrol  | Perform the specified replication control on the Replication daemon.                                                                                            |
376
|                |                                                                                                                                                                 |
377
|                | ``add`` - add a new server to the replication list                                                                                                              |
378
|                | ``delete`` - remove a server from the replication list                                                                                                          |
379
|                | ``list`` - list all of the servers currently in the server list                                                                                                 |
380
|                | ``replicate`` - a Boolean flag (1 or 0) which determines if this server should copy files from the newly added server.                                          |
381
|                | ``server`` - the server to add/delete                                                                                                                           |
382
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
383
| read           | Sends docid to the remote host.                                                                                                                                 |
384
|                |                                                                                                                                                                 |
385
|                | ``docid`` - the docid of the document to read                                                                                                                   |
386
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
387
| start          | Start the Replication daemon with a time interval of deltaT.                                                                                                    |
388
|                |                                                                                                                                                                 |
389
|                | ``rate`` - The rate (in seconds) at which you want the replication daemon to check for updated documents. The value cannot be less than 30. The default is 1000 |
390
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
391
| stop           | Stop the Replication daemon. No parameters.                                                                                                                     |
392
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
393
| update         | Send a list of all documents on the local server along with their revision numbers. No parameters.                                                              |
394
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
395

    
396
Logging In
397
~~~~~~~~~~
398
To log in to Metacat, use the ``login`` action.
399

    
400
The following is an example of a Web form (see figure) that logs a user into 
401
Metact. Example HTML code is included below the screenshot.
402

    
403
.. figure:: images/screenshots/image039.jpg
404
   :align: center
405
   
406
   Logging into Metacat using an HTML form.
407

    
408
::
409

    
410
  <html>
411
  <body>
412
  <form name="loginform" method="post"action="http://yourserver.com/yourcontext/servlet/metacat" 
413
  target="_top" onsubmit="return submitform(this);" id="loginform">
414
    <input type="hidden" name="action" value="login"> <input type=
415
    "hidden" name="username" value=""> <input type="hidden" name=
416
    "qformat" value="xml"> <input type="hidden" name=
417
    "enableediting" value="false">
418

    
419
    <table>
420
      <tr valign="middle">
421
        <td align="left" valign="middle" class="text_plain">
422
        username:</td>
423

    
424
        <td width="173" align="left" class="text_plain" style=
425
        "padding-top: 2px; padding-bottom: 2px;"><input name="uid"
426
        type="text" style="width: 140px;" value=""></td>
427
      </tr>
428

    
429
      <tr valign="middle">
430
        <td height="28" align="left" valign="middle" class=
431
        "text_plain">organization:</td>
432

    
433
        <td align="left" class="text_plain" style=
434
        "padding-top: 2px; padding-bottom: 2px;"><select name=
435
        "organization" style="width:140px;">
436
          <option value=""    selected>&#8212; choose one &#8212;</option>
437
          <option value="NCEAS">NCEAS</option>
438
          <option value="LTER">LTER</option>
439
          <option value="UCNRS">UCNRS</option>
440
          <option value="PISCO">PISCO</option>
441
          <option value="OBFS">OBFS</option>
442
          <option value="OSUBS">OSUBS</option>
443
          <option value="SAEON">SAEON</option>
444
          <option value="SANParks">SANParks</option>
445
          <option value="SDSC">SDSC</option>
446
          <option value="KU">KU</option>
447
          <option value="unaffiliated">unaffiliated</option>
448
        </select></td>
449
      </tr>
450

    
451
      <tr valign="middle">
452
        <td width="85" align="left" valign="middle" class=
453
        "text_plain">password:</td>
454

    
455
        <td colspan="2" align="left" class="text_plain" style=
456
        "padding-top: 2px; padding-bottom: 2px;">
457
          <table width="100%" border="0" cellpadding="0"
458
          cellspacing="0">
459
            <tr>
460
              <td width="150" align="left"><input name="password"
461
              type="password" maxlength="50" style="width:140px;"
462
              value=""></td>
463

    
464
              <td align="center" class="buttonBG_login">
465
              <input type="submit" name="loginAction" value="Login"
466
              class="button_login"></td>
467

    
468
              <td align="left">&nbsp;</td>
469
            </tr>
470
          </table>
471
        </td>
472
      </tr>
473
    </table>
474
  </form>
475
  </body>
476
  </html>
477

    
478
Inserting, Updating, and Deleting XML and Data Documents
479
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
480
Adding, editing, and deleting XML documents in Metacat can be accomplished 
481
using the insert, update, and delete actions, respectively. Before you can 
482
insert, delete, or update documents, you must log in to Metacat using the 
483
login action. See Logging in for an example.
484

    
485
``insert``
486
   Insert a new XML or data document into Metacat. You must specify a document ID.
487
   
488
``update``
489
   Update an existing Metacat document. The original document is archived, 
490
   then overwritten.
491

    
492
``delete``
493
   Archive a document and move the pointer in xml_documents to xml_revisions, 
494
   effectively "deleting" the document from public view, but preserving the 
495
   revision for the revision history.
496

    
497
The following is an example of a Web form (see figure) that can perform all 
498
three tasks. Example HTML code is included in the sidebar.
499

    
500
.. figure:: images/screenshots/image041.jpg
501
   :align: center
502
   
503
   An example of a Web form used to insert, delete, or update XML documents in Metacat.
504

    
505
::
506

    
507
  <html>
508
    <head>
509
    <title>MetaCat</title>
510
    </head>
511
    <body class="emlbody">
512
    <b>MetaCat XML Loader</b>
513
    <p>
514
    Upload, Change, or Delete an XML document using this form.
515
    </p>
516
    <form action="http://yourserver.com/yourcontext/servlet/metacat" method="POST">
517
      <strong>1. Choose an action: </strong>
518
      <input type="radio" name="action" value="insert" checked> Insert
519
      <input type="radio" name="action" value="update"> Update
520
      <input type="radio" name="action" value="delete"> Delete
521
      <input type="submit" value="Process Action">
522
      <br />
523
      <strong>2. Provide a Document ID </strong>
524
      <input type="text" name="docid"> (optional for Insert)
525
         <input type="checkbox" name="public" value="yes" checked><strong>Public Document</strong>
526
      <br />
527
      <strong>3. Provide XML text </strong> (not needed for Delete)<br/>
528
      <textarea name="doctext" cols="65" rows="15"></textarea><br/>
529
      <strong>4. Provide DTD text for upload </strong> (optional; not needed for Delete)
530
      <textarea name="dtdtext" cols="65" rows="15"></textarea>
531
    </form>
532
    </body>
533
  </html>
534

    
535
Searching Metacat
536
~~~~~~~~~~~~~~~~~
537
To search Metacat use the ``query`` or ``squery`` actions. 
538

    
539
``query``:   
540
   Perform a free text query. Specify the returndoctype, qformat, returnfield, 
541
   operator, searchmode, anyfield, and (optionally) a querytitle and doctype. 
542

    
543
``squery``:
544
   Perform a structured query by submitting an XML pathquery document to the 
545
   Metacat server.
546
 
547

    
548
When Metacat receives a query via HTTP (Figure 4.8), the server creates a 
549
"pathquery" document, which is an XML document populated with the specified 
550
search criteria (Figure 4.10). The pathquery document is then translated into 
551
SQL statements that are executed against the data base. Results are translated 
552
into an XML "resultset" document, which can be returned as XML or transformed 
553
into HTML and returned (specify which you would prefer with the returnfield 
554
parameter). You can also opt to submit a pathquery document directly, 
555
using an squery action.
556

    
557
.. figure:: images/screenshots/image043.jpg
558
   :align: center
559
   
560
   Example of a basic search form using a query action. 
561

    
562
::
563

    
564
  <html>
565
  <head>
566
  <title>Search</title>
567
  </head>
568
  <body>
569
  <form method="POST" action="http://panucci.nceas.ucsb.edu/knb/servlet/metacat">
570

    
571
  Search for:
572

    
573
  <input name="action" value="query" type="hidden">
574
  <input name="operator" value="INTERSECT" type="hidden">
575
  <input name="anyfield" type="text" value=" " size="40">
576
  <input name="qformat" value="html" type="hidden">
577
  
578
  <input name="returnfield" value="creator/individualName/surName" type="hidden">
579
  <input name="returnfield" value="creator/individualName/givenName" type="hidden">
580
  <input name="returnfield" value="creator/organizationName" type="hidden">
581
  <input name="returnfield" value="dataset/title" type="hidden">
582
  <input name="returnfield" value="keyword" type="hidden">
583

    
584
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
585

    
586
  <input value="Start Search" type="submit">
587

    
588
  </form>
589
  </body>
590
  </html>
591
  
592
Metacat's pathquery document can query specific fields of any XML document. 
593
The pathquery can also be used to specify which fields from each hit are 
594
returned and displayed in the search result set.
595

    
596
::
597

    
598
  <pathquery version="1.0">
599
      <meta_file_id>unspecified</meta_file_id>
600
      <querytitle>unspecified</querytitle>
601
      <returnfield>dataset/title</returnfield>
602
      <returnfield>keyword</returnfield>
603
      <returnfield>originator/individualName/surName</returnfield>
604
      <returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>
605
      <returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>
606
      <querygroup operator="UNION">
607
        <queryterm casesensitive="false" searchmode="contains">
608
          <value>Plant</value>
609
          <pathexpr>dataset/title</pathexpr>
610
        </queryterm>
611
        <queryterm casesensitive="false" searchmode="contains">
612
          <value>plant</value>
613
          <pathexpr>keyword</pathexpr>
614
        </queryterm>
615
      </querygroup>
616
  </pathquery>
617
  
618
Each ``<returnfield>`` parameter specifies a field that the data base will 
619
return (in addition to the fields Metacat returns by default) for each search 
620
result. 
621

    
622
The ``<returndoctype>`` field limits the type of returned documents 
623
(eg, eml://ecoinformatics.org/eml-2.0.1 and/or eml://ecoinformatics.org/eml-2.0.0). 
624
If no returndoctype element is specified, all document types are returned. 
625

    
626
A ``<querygroup>`` creates an AND or an OR statement that applies to the 
627
nested ``<queryterm>`` tags. The querygroup operator can be UNION or INTERSECT. 
628
A ``<queryterm>`` defines the actual field (contained in ``<pathexpr>`` tags) 
629
against which the query (contained in the ``<value>`` tags) is being performed. 
630

    
631
The ``<pathexpr>`` can also contain a document type keyword contained in 
632
``<returndoc>`` tags. The specified document type applies only to documents 
633
that are packaged together (e.g., a data set and its corresponding metadata file). 
634
If Metacat identifies the search term in a packaged document, the servlet will 
635
check to see if that document's type matches the specified one. If not, 
636
Metacat will check if one of the other documents in the package matches. If so, 
637
Metacat will return the matching document. For more information about packages, 
638
please see the developer documentation.
639

    
640
After Metacat has processed a Pathquery document, it returns a resultset document.
641

    
642
::
643

    
644
  <resultset>
645
        <query>
646
          <pathquery version="1.0">
647
            <meta_file_id>unspecified</meta_file_id>
648
            <querytitle>unspecified</querytitle>
649
            <returnfield>dataset/title</returnfield>
650
            <returnfield>keyword</returnfield>
651
            <returnfield>originator/individualName/surName</returnfield>
652
            <returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>
653
            <returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>
654
            <querygroup operator="UNION">
655
                  <queryterm casesensitive="false" searchmode="contains">
656
                      <value>Datos</value>
657
                      <pathexpr>dataset/title</pathexpr>
658
                  </queryterm>
659
                  <queryterm casesensitive="false" searchmode="contains">
660
                     <value>plant</value>
661
                     <pathexpr>keyword</pathexpr>
662
                  </queryterm>
663
           </querygroup>
664
         </pathquery>
665
        </query>  
666
      
667
        <document>
668
          <docid>nceas.44.1</docid>
669
          <docname>resource</docname>
670
          <doctype>eml://ecoinformatics.org/eml-2.0.1</doctype>
671
          <createdate>2001-01-12 16:12:06.0</createdate>
672
          <updatedate>2001-01-12 16:12:06.0</updatedate>
673
          <param name="dataset/title">Datos Meteorologicos</param>
674
          <param name="keyword">intertidal</param>
675
          <param name="originator/individualName/surName">Smith</param>
676
        </document>  
677
        
678
        <document>
679
          <docid>nceas.42.1</docid>
680
          <docname>resource</docname>
681
          <doctype>eml://ecoinformatics.org/eml-2.0.1</doctype>
682
          <createdate>2001-01-12 16:11:31.0</createdate>
683
          <updatedate>2001-01-12 16:11:31.0</updatedate>
684
          <param name="dataset/title">Ocean Surface Temperature</param>
685
          <param name="keyword">Plant</param>
686
          <param name="originator/individualName/surName">Henry</param>   
687
       </document>
688
      .....  
689
  </resultset>
690

    
691
When Metacat returns a resultset document, the servlet always includes the 
692
pathquery used to create it. The pathquery XML is contained in the <query> tag, 
693
the first element in the resultset.
694

    
695
Each XML document returned by the query is represented by a ``<document>`` tag. By 
696
default, Metacat will return the docid, docname, doctype, doctitle, createdate 
697
and updatedate for each search result. If the user specified additional return 
698
fields in the pathquery using ``<returnfield>`` tags (e.g., dataset/title to return 
699
the document title), the additional fields are returned in ``<param>`` tags. 
700

    
701
Metacat can return the XML resultset to your client as either XML or HTML.
702

    
703
Paged Query Returns
704
~~~~~~~~~~~~~~~~~~~
705
Dividing large search result sets over a number of pages speeds load-time and 
706
makes the result sets more readable to users (Figure 4.12). To break your search 
707
results into pages, use the query action's optional pagestart and pagesize 
708
parameters. The pagesize parameter indicates how many results should be 
709
returned for a given page. The pagestart parameter indicates which page you 
710
are currently viewing.
711

    
712
.. figure:: images/screenshots/image045.jpg
713
   :align: center
714
   
715
   An example of paged search results. 
716

    
717
When a paged query is performed, the query's resultset contains four extra 
718
fields: pagestart, pagesize, nextpage, and previouspage (Figure 4.13).  The 
719
nextpage and previouspage fields help Metacat generate navigational links in 
720
the rendered resultset using XSLT to transform the XML to HTML. 
721

    
722
:: 
723

    
724
  <!-- An example of an XML resultset that include support for page breaks. 
725
       The pagestart parameter will always indicate the page you are currently viewing.
726
  -->
727
  <resultset>
728
      <pagestart>1</pagestart>
729
      <pagesize>10</pagesize>
730
      <nextpage>2</nextpage>
731
      <previouspage>0</previouspage>
732
      <query> ...</query>
733
      <document>...</document>
734
      <document>...</document>
735
    </resultset>
736

    
737
The HTML search results displayed in the figure were rendered using Kepler's XSLT, 
738
which can be found in lib/style/skins/kepler. Kepler's XSLT uses the four extra 
739
resultset fields to render the "Next" and "Previous" links.
740

    
741
::
742
  
743
  <a href="metacat?action=query&operator=INTERSECT&enableediting=false&anyfield=actor&qformat=kepler&pagestart=0&pagesize=10">Previous Page</a>
744
  <a href="metacat?action=query&operator=INTERSECT&enableediting=false&anyfield=actor&qformat=kepler&pagestart=2&pagesize=10">Next Page</a>
745
  
746
In the example above, the current page is 1, and the previous page (page 0) and next page (page 2) pages are indicated by the values of the pagestart parameters.
747

    
748
Reading Data and Metadata
749
~~~~~~~~~~~~~~~~~~~~~~~~~
750
To read data or metadata from Metacat, use the ``read`` action. The ``read`` action 
751
takes two parameters: ``docid``, which specifies the document ID of the document 
752
to return, and ``qformat``, which specifies the return format for the document 
753
(``html`` or ``xml`` or the name of a configured style-set, e.g., ``default``). If ``qformat`` 
754
is set to ``xml``, Metacat will return the XML document untransformed. If the 
755
return format is set to ``html``, Metacat will transform the XML document into 
756
HTML using the default XSLT style sheet (specified in the Metacat 
757
configuration). If the name of a style-set is specified, Metacat will use the 
758
XSLT styles specified in the set to transform the XML.
759

    
760
.. figure:: images/screenshots/image047.jpg
761
   :align: center
762
   
763
   The same document displayed using different qformat parameters (from left 
764
   to right: the default style-set, XML, and HTML). 
765

    
766
Note that the ``read`` action can be used to read both data files and metadata files. 
767
To read a data file, you could use the following request::
768

    
769
  http://yourserver.com/yourcontext/metacat?action=read&docid=nceas.55&qformat=default
770

    
771
Where ``nceas.55`` is the docid of the data file stored in the Metacat and 
772
``default`` is the name of the style (you could also use "html" or "xml" or the 
773
name of a customized skin).
774

    
775
::
776
  
777
  <html>
778
  <head>
779
    <title>Read Document</title>
780
  </head>
781
  <body>
782
    <form method="POST" action="http://your.server/your.context/servlet/metacat">
783
      <input name="action" value="read" type="hidden">
784
      <input name="docid" type="text" value="" size="40">
785
      <input name="qformat" value="default" type="hidden">
786
      <input value="Read" type="submit">
787
    </form>
788
  </body>
789
  </html>
790
  
791
Using the EarthGrid API (aka EcoGrid)
792
-------------------------------------
793

    
794
.. Note::
795

    
796
  The EarthGrid/EcoGrid web service API is *deprecated* as of Metacat 2.0.0 and 
797
  will be removed from a future version of Metacat.  Its functionality is being 
798
  replaced by the standardized DataONE REST service interface. The EarthGrid API
799
  will be completely removed by the end of 2013.
800
   
801
The EarthGrid (aka EcoGrid) provides access to disparate data on different 
802
networks (e.g., KNB, GBIF, GEON) and storage systems (e.g., Metacat and SRB), 
803
allowing scientists access to a wide variety of data and analytic resources 
804
(e.g., data, metadata, analytic workflows and processors) networked at different 
805
sites and at different organizations via the internet. 
806

    
807
Because Metacat supports the EarthGrid API (see table), it can query the 
808
distributed EarthGrid, retrieve metadata and data results, and write new and 
809
updated metadata and data back to the grid nodes.
810

    
811
For more information about each EarthGrid service and its WSDL file, navigate 
812
to the "services" page on your Metacat server 
813
(e.g., http://knb.ecoinformatics.org/knb/services). 
814
Note that the AdminService and Version service that appear on this page are 
815
not part of EarthGrid.
816

    
817
EarthGrid/EcoGrid API Summary
818

    
819
+----------------------------+-----------------------------------------------------------------------------------------------------+
820
| Service                    | Description                                                                                         |
821
+============================+=====================================================================================================+
822
| AuthenticationQueryService | Search for and retrieve protected metadata and data from the EarthGrid as an authenticated user.    |
823
|                            |                                                                                                     |
824
|                            | Methods: ``query``, ``get``                                                                         |
825
+----------------------------+-----------------------------------------------------------------------------------------------------+
826
| AuthenticationService      | Log in and out of the EarthGrid                                                                     |
827
|                            |                                                                                                     |
828
|                            | Methods: ``login``, ``logout``                                                                      |
829
+----------------------------+-----------------------------------------------------------------------------------------------------+
830
| IdentifierService          | List, lookup, validate, and add Life Science Identifiers (LSIDs) to the EarthGrid                   |
831
|                            |                                                                                                     |
832
|                            | Methods: ``isRegistered``, ``addLSID``, ``getNextRevision``, ``getNextObject``, ``getAllIds``       |
833
+----------------------------+-----------------------------------------------------------------------------------------------------+
834
| PutService                 | Write metadata to the EarthGrid                                                                     |
835
|                            |                                                                                                     |
836
|                            | Methods: ``put``                                                                                    |
837
+----------------------------+-----------------------------------------------------------------------------------------------------+
838
| QueryService               | Search for and retrieve metadata from the EarthGrid                                                 |
839
|                            |                                                                                                     |
840
|                            | Methods: ``query``, ``get``                                                                         |
841
+----------------------------+-----------------------------------------------------------------------------------------------------+
842
| RegistryService            | Add, update, remove, and search for registered EarthGrid services.                                  |
843
|                            | Note: The WSDL for this  service is found under http://ecogrid.ecoinformatics.org/registry/services |
844
|                            |                                                                                                     |
845
|                            | Methods: ``add``, ``update``, ``remove``, ``list``, ``query``                                       |
846
+----------------------------+-----------------------------------------------------------------------------------------------------+
847

    
848
Using Morpho
849
------------
850
Morpho is a desktop tool created to facilitate the creation, storage, and 
851
retrieval of metadata. Morpho interfaces with any Metacat server, allowing 
852
users to upload, download, store, query and view relevant metadata and data 
853
using the network. Users can authorize the public or only selected colleagues 
854
to view their data files. 
855

    
856
Morpho is part of the Knowledge Network for Biocomplexity (KNB), a national 
857
network intended to facilitate ecological and environmental research on 
858
biocomplexity. To use Morpho with your Metacat, set the Metacat URL in the 
859
Morpho Preferences to point to your Metacat server.
860

    
861
.. figure:: images/screenshots/image049.png
862
   :align: center
863
   
864
   Set the Metacat URL in the Morpho preferences to point to your Metacat.
865

    
866
For more information about Morpho, please see: http://knb.ecoinformatics.org/morphoportal.jsp
867

    
868
Creating Your Own Client
869
------------------------
870

    
871
.. Note::
872

    
873
  NOTE: The Client API (and underlying servlet implementation) has been 
874
  deprecated as of Metacat 2.0.0. Future development should utilize the DataONE 
875
  REST service methods. The Client API will be completely removed by the end of 2013.
876
  
877
Metacat's client API is available in Java and Perl (the Java interface is 
878
described in this section and further detailed in the appendix). Some of the 
879
API is also available in Python and Ruby. The API allows client applications 
880
to easily authenticate users and perform basic Metacat operations such as 
881
reading metadata and data files; inserting, updating, and deleting files; and 
882
searching for packages based on metadata matches. 
883

    
884
The Client API is defined by the interface edu.ucsb.nceas.metacat.client.Metacat, 
885
and all operations are fully defined in the javadoc_ documentation. To use the 
886
client API, include the ``metacat-client.jar``, ``utilities.jar``, ``commons-io-2.0.jar``, and 
887
``httpclient.jar`` in your classpath. After including these classes, you can 
888
begin using the API methods (see the next table). 
889

    
890
.. _javadoc: http://knb.ecoinformatics.org/software/metacat/dev/api/index.html
891

    
892
The following code block displays a typical session for reading a document 
893
from Metacat using the Java client API.
894

    
895
::
896
  
897
  String metacatUrl = "http://foo.com/context/metacat";
898
  String username = "uid=jones,o=NCEAS,dc=ecoinformatics,dc=org";
899
  String password = "neverHarcodeAPasswordInCode";
900
  try {
901
      Metacat m = MetacatFactory.createMetacatConnection(metacatUrl);
902
      m.login(username, password);
903
      Reader r = m.read("testdocument.1.1");
904
      // Do whatever you want with Reader r
905
  } catch (MetacatAuthException mae) {
906
      handleError("Authorization failed:\n" + mae.getMessage());
907
  } catch (MetacatInaccessibleException mie) {
908
      handleError("Metacat Inaccessible:\n" + mie.getMessage());
909
  } catch (Exception e) {
910
      handleError("General exception:\n" + e.getMessage());
911
  }
912
  
913
  Operations provided by Client API  (Metacat.java class)
914
  
915
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
916
| Method               | Parameters and Throws                                                                                                                                                                                       | Description                                                                                                                               |
917
+======================+=============================================================================================================================================================================================================+===========================================================================================================================================+
918
| delete               | ``public String delete(String docid) throws InsufficientKarmaException, MetacatException, MetacatInaccessibleException;``                                                                                   | Delete an XML document in the repository.                                                                                                 |
919
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
920
| getAllDocids         | ``public Vector getAllDocids(String scope) throws MetacatException;``                                                                                                                                       | Return a list of all docids that match a given scope. If scope is null, return all docids registered in the system.                       |
921
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
922
| getLastDocid         | ``public String getLastDocid(String scope) throws MetacatException;``                                                                                                                                       | Return the highest document ID for a given scope.  Used by clients to determine the next free identifier in a sequence for a given scope. |
923
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
924
| getloggedinuserinfo  | ``public String getloggedinuserinfo() throws MetacatInaccessibleException;``                                                                                                                                | Return the logged in user for this session.                                                                                               |
925
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
926
| getNewestDocRevision | ``public int getNewestDocRevision(String docId) throws MetacatException;``                                                                                                                                  | Return the latest revision of specified the document from Metacat                                                                         |
927
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
928
| getSessonId          | ``public String getSessionId();``                                                                                                                                                                           | Return the session identifier for this session.                                                                                           |
929
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
930
| insert               | ``public String insert(String docid, Reader xmlDocument, Reader schema) throws InsufficientKarmaException, MetacatException, IOException, MetacatInaccessibleException;``                                   | Insert an XML document into the repository.                                                                                               |
931
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
932
| isRegistered         | ``public boolean isRegistered(String docid) throws MetacatException;``                                                                                                                                      | Return true if given docid is registered; false if not.                                                                                   |
933
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
934
| login                | ``public String login(String username, String password) throws MetacatAuthException, MetacatInaccessibleException;``                                                                                        | Log in to a Metacat server.                                                                                                               |
935
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
936
| logout               | ``public String logout() throws MetacatInaccessibleException, MetacatException;``                                                                                                                           | Log out of a Metacat server.                                                                                                              |
937
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
938
| query                | ``public Reader query(Reader xmlQuery) throws MetacatInaccessibleException, IOException;``                                                                                                                  | Query the Metacat repository and return the result set as a Reader.                                                                       |
939
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
940
| query                | ``public Reader query(Reader xmlQuery, String qformat) throws MetacatInaccessibleException, IOException;``                                                                                                  | Query the Metacat repository with the given metacat-compatible query format and return the result set as a Reader.                        |
941
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
942
| read                 | ``public Reader read(String docid) throws InsufficientKarmaException, MetacatInaccessibleException, DocumentNotFoundException, MetacatException;``                                                          | Read an XML document from the Metacat server.                                                                                             |
943
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
944
| readInlineData       | ``public Reader readInlineData(String inlinedataid) throws InsufficientKarmaException, MetacatInaccessibleException, MetacatException;``                                                                    | Read inline data from the Metacat server session.                                                                                         |
945
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
946
| setAccess            | ``public String setAccess(String _docid, String _principal, String _permission, String _permType, String _permOrder ); throws InsufficientKarmaException, MetacatException, MetacatInaccessibleException;`` | Set permissions for an XML document in the Metacat repository.                                                                            |
947
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
948
| setMetacatUrl        | ``public void setMetacatUrl(String metacatUrl);``                                                                                                                                                           | Set the MetacatUrl to which connections should be made.                                                                                   |
949
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
950
| setSessionId         | ``public void setSessionId(String sessionId);``                                                                                                                                                             | Set the session identifier for this session.                                                                                              |
951
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
952
| update               | ``public String update(String docid, Reader xmlDocument, Reader schema) throws InsufficientKarmaException, MetacatException, IOException, MetacatInaccessibleException;``                                   | Update an XML document in the repository by providing a new version of the XML document.                                                  |
953
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
954
| upload               | ``public String upload(String docid, File file) throws InsufficientKarmaException, MetacatException, IOException, MetacatInaccessibleException;``                                                           | Upload a data document into the repository.                                                                                               |
955
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
956
| upload               | ``public String publicupload(String docid, String fileName, InputStream fileData, int size) throws InsufficientKarmaException, MetacatException, IOException, MetacatInaccessibleException;``               | Upload a data document into the repository.                                                                                               |
957
+----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
958
  
(20-20/20)