METADATA_CONTENT

Used in

CONFIG  

Parent elements

METADATA_CONFIG 

Syntax

<METADATA_CONTENTAttribute Description Table
     index_words="automatic | manual" [automatic]
     private="true | false" [false]
     validate="true | false" [true]
>

     No Child Elements
</METADATA_CONTENT >

Description

Specifies whether attribute validation is required for the service.

Notes


Attribute Descriptions for METADATA_CONTENT

AttributeUsage
index_wordsIn order to do a text search on a document, the document must be indexed. By default, a document is indexed when it is published through ArcCatalog. Set index_words to "automatic" for automatic indexing. Indexing can also take place offline using a standalone indexer. Set index_words to "manual" for manual indexing offline. Note that if a document is not indexed, only spatial searches are valid and no text searches can be made.
privateDetermines whether document is available to all viewers or is a private document. By default, documents are public.
validateValidation is set to "true" by default. If set to "false", clients do not validate which items of content are available.
Back to top 

Examples for METADATA_CONTENT

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <CONFIG>
    <ENVIRONMENT>
      <LOCALE country="US" language="en" variant="" />
      <UIFONT color="0,0,0" name="Arial" size="12" style="regular" />
    </ENVIRONMENT>
    <METADATA_CONFIG>
      <WORKSPACES>
        <SDEWORKSPACE name="unique_name" server="server_name" instance="port:5151" database="optional_database_name" user="user_name" password="user_password" />
      </WORKSPACES>
      <METADATA_CONTENT validate="true" index_words="automatic" />
      <TABLE_NAME prefix="imsmetadata" />
    </METADATA_CONFIG>
  </CONFIG>
</ARCXML>

Back to top