CHANGE_OWNER

Used in

REQUEST  

Servers

Metadata (Publish)  

Parent elements

PUBLISH_METADATA 

Syntax

<CHANGE_OWNERAttribute Description Table
     (r)docid="string"
     (r)newowner="string"
>

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

Description

Allows a new owner to be assigned to a document. A document can only be edited by its owner.

Restrictions


Notes


Attribute Descriptions for CHANGE_OWNER

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.
newownerNew owner name. Must be a value that has already been used when logging in. The administrator must make the change, but the administrator does not have to themselves log in as the other user.
Back to top 

Examples for CHANGE_OWNER

<?xml version="1.0" encoding="UTF-8" ?>
<ARCXML version="1.1">
  <REQUEST>
    <PUBLISH_METADATA>
      <CHANGE_OWNER docid="{5289D9C3-55BD-4D58-A9DD-24B40427F943}" newowner="publish" />
    </PUBLISH_METADATA>
  </REQUEST>
</ARCXML>

Back to top