RENAME_METADATA

Used in

REQUEST  

Servers

Metadata (Publish)  

Parent elements

PUBLISH_METADATA 

Syntax

<RENAME_METADATAAttribute Description Table
     (r)docid="string"
     (r)newname="string"
>

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

Description

Changes the name of a metadata document.

Restrictions


Notes


Attribute Descriptions for RENAME_METADATA

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.
newnameNew name that identifies the dataset.
Back to top 

Examples for RENAME_METADATA

<?xml version="1.0" encoding="UTF-8" ?>
<ARCXML version="1.1">
  <REQUEST>
    <PUBLISH_METADATA>
      <RENAME_METADATA docid="{B597AB56-8B47-11D5-99D1-000086460FA0}" newname="World_Countries" />
    </PUBLISH_METADATA>
  </REQUEST>
</ARCXML>

Back to top