CHANGE_METADATA_ACCESS

Used in

REQUEST  

Servers

Metadata (Publish)  

Parent elements

PUBLISH_METADATA 

Syntax

<CHANGE_METADATA_ACCESSAttribute Description Table
     (r)docid="string"
     (r)private="true | false"
>

     No Child Elements
</CHANGE_METADATA_ACCESS >
(r): Attribute or child element is required.

Description

Changes the access of a metadata document.

Restrictions


Notes


Attribute Descriptions for CHANGE_METADATA_ACCESS

AttributeUsage
docidString used to uniquely identify a document. The client used to publish the metadata is responsible for creating the document ID. This ID is automatically assigned when using ArcCatalog. If another client is used, GET_UUID can be used to request a valid ID. The format for an ID is the following:
{HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH}
where H is a hexadecimal digit (0-9,a-f,A-F). The ID is limited to 38 characters.
privateDetermines if the document is viewable for all users. Use "false" if the document should be viewable by all users. Use "true" when the document should be viewable only by the document owner.
Back to top 

Examples for CHANGE_METADATA_ACCESS

<?xml version="1.0" encoding="UTF-8" ?>
<ARCXML version="1.1">
  <REQUEST>
    <PUBLISH_METADATA>
      <CHANGE_METADATA_ACCESS docid="{C64D8F38-82B4-11D5-99C2-000086460FA0}" private="true" />
    </PUBLISH_METADATA>
  </REQUEST>
</ARCXML>

Back to top