Metacat High Level API

Back | Home | Next

Multiple client interface
Since Metacat Servlet is a subclass of HttpServlet, this allows any client to communicate with Metacat by essentially passing a URL with embedded servlet parameters. Metacat Servlet provides an HTTP Interface and can handle GET and POST requests. HTTP requests are sent from the the Client application and contain a number of parameters. These parameters, in form of name/value pairs, provide input data for the Servlet and also provide the Servlet any extra information it needs to handle the request.

Extensions of HttpServlet
Metacat Server adds the functionality for writing, quering, and reading of XML stored in the Metacat Database as well functions for validating and transforming XML documents.

MetacatServlet Parameters
Action Supplemental Parameters Description
login
  • username - the user's login name
  • password - the user's password
Log the user in.
logout none Log the current user out and destroy the associated session.
query
  • returndoctype - the doctype that you wish to use for your Package View
  • qformat - the format that you wish to return the resultset in. Possible values are 'html' or 'xml'.
  • querytitle - OPTIONAL - the title of the query
  • doctype - OPTIONAL - if doctype is specified, the search is limited only to the doctype(s) specified.
  • returnfield - a custom field to be returned by any hit document. This is explained in more detail in Queries and Results.
  • operator - the boolean operator to apply to the query - Possible values are: UNION or INTERSECT
  • 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.
  • anyfield - a freetext search variable. A value placed in this parameter will be searched for in any document in any node.
Perform a free text query.
squery
  • query - the text of the pathquery document that is being sent to the server
Perform a structured query.
spatial_query
  • xmax - max x spacial coordinate
  • ymax - max y spacial coordinate
  • xmin - min x spacial coordinate
  • ymin - min y spacial coordinate
Perform a spatial query. These queries may include any of the queries supported by the WFS / WMS standards.
read
  • docid - the docid of the document to read
  • qformat - the format to return the document in. Possible values are: html, xml
Get docid from the database and return it in qformat form.
readinlinedata
  • inlinedataid - the id of the inline data to read
Read inline data only.
insert
  • docid - the user defined docid to assign to the new XML document.
  • doctext - the text of the XML document to insert
Insert an XML document into the database.
insertmultipart
  • docid - the user defined docid to assign to the new XML document.
  • doctext - the text of the XML document to insert
insert an xml document into the database using multipart encoding.
update
  • docid - the docid of the document to update
  • doctext - the text with which to update the XML document
Overwrite an XML document with a new one and give the new one the same docid but with next revision number.
upload
  • docid - the docid of the data document to upload
  • datafile - the data document to upload
Upload (insert or update) a data document into metacat. Data files are stored on metacat and may be in any format (binary or text), but they are all treated as if they were binary.
delete
  • docid - the docid of the document to delete
Delete the specified docid from the database.
setaccess
  • docid - the docid of the document whose access we want to change
  • principal - the user or group whose permissions want to change
  • permission - the permission we want to set (read, write, all)
  • permType - the type of permission to set (allow, deny)
  • permOrder - the order to apply the permission (allowFirst, denyFirst)
Change access permissions for a user on a document.
validate
  • docid - the docid of the document to validate
  • valtext - the DTD by which to validate this document
Validate docid against its DTD.
getaccesscontrol
  • docid - the docid of the document to get the ACL for
Get ACL for document with that docid
getprincipals none Get all users and groups in the current authentication schema
getdoctypes none Get all doctypes currently available in Metacat Catalog System.
getdtdschema
  • doctype - the doctype which DTD or XMLSchema file to read.
Read DTD or XMLSchema file for the specified doctype.
getdataguide
  • doctype - the doctype for which to get the data guide

  • Deprecated. Use getdtdschema action instead.
Read a dataguide for doctype.
getlastdocid
  • username - the user's login name which last docid to get.
Get the latest docid with rev number used by user.
getalldocids
  • scope - a string used to match a range of docids in a SQL LIKE statement.
retrieves a list of all docids registered with the system.
isregistered
  • docid - the docid of the document to check for.
checks if an individual document exists in either the xml_documents or xml_revisions tables.
getrevisionanddoctype
  • docid - the docid of the document to check for.
Return the revision and doctype of a document. The output is String that looks like "rev;doctype"
getversion - get Metacat version. none Returns the current version of Metacat as XML.
protocoltest
  • url - the url to test against the protocol handler
Test the protocol handlers installed for metacat:// URLs.
export
  • docid - the docid of the package you wish to export
Exports a data package in a zip file.
getlog
  • ipaddress - the internet protocol address for the event
  • principal - the principal for the event (a username, etc)
  • docid - the identifier of the document to which the event applies
  • event - the string code for the event
  • start - beginning of date range for query
  • end - end of date range for query
Print a report from the Metacat event log.
getloggedinuserinfo none Get user info for the currently logged in user.

MetacatReplication Parameters
Action Supplemental Parameters Description
forcereplicate
  • server - The server to which this document is being sent
  • docid - The docid of the document to send
  • dbaction - DEFAULTS TO UPDATE - The action to perform on the document. INSERT or UPDATE.
Force this server to get docid from the remote host.
getall none Forces the local server to check all known servers for updated documents.
getcatalog none Sends the contents of the xml_catalog table encoded in XML.
getlock
  • docid - the docid to get the lock for
  • updaterev - the revision number of docid
Request a lock on docid.
gettime none Return the local time on this server.
servercontrol
  • subaction - The replication control to be performed. Possible values:
    • add - add a new server to the replication list
    • delete - remove a server from the replication list
    • list - list all of the servers currently in the server list
  • replicate - a boolean flag (1 or 0) which determines if this server is to copy files from the newly added server.
  • server - the server to add/delete
Perform subaction on the Replication daemon.
read
  • docid - the docid to read
Sends docid to the remote host.
start
  • rate - DEFAULTS TO 1000 - The rate (in seconds) at which you want the replication daemon to check for updated documents. The value cannot be less than 30.
Start the Replication daemon with a time interval of deltaT.
stop none Stop the Replication daemon.
update none Send a list of all documents on the local server along with their revision numbers.

Back | Home | Next