FEATURESERVERWORKSPACE  Examples
 
Used in:  CONFIG   MARKUP
Parent elements: 
WORKSPACES  
<FEATURESERVERWORKSPACE Attribute Description Table
     name ="string"
     service ="string"

     url ="string"

>


     No Child Elements
</FEATURESERVERWORKSPACE >
Bold: Attribute or child element is required.
 
 

Description:

    Specifies a workspace for an ArcIMS Feature Service.
 

Restrictions:

 

Notes:

    None
 

Attribute Descriptions for FEATURESERVERWORKSPACE:

Attribute Usage Back to Top
name 1 Workspace name. Must be unique among all data sources.
service 2 ArcIMS service name.
url 3 URL points to location of ArcIMS servlet connector (servlet/com.esri.esrimap.Esrimap).
 

Examples for FEATURESERVERWORKSPACE:

Example 1: When in a viewer configuration file. Back to Top
<?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" />
      <SCREEN dpi="96" />
    </ENVIRONMENT>
    <MAP>
      <PROPERTIES>
      <ENVELOPE minx="-178.215027" miny="18.924782" maxx="-66.969849" maxy="71.406647" name="Initial_Extent" />
      <MAPUNITS units="decimal_degrees" />
      </PROPERTIES>
      <WORKSPACES>
         <FEATURESERVERWORKSPACE name="ifs_ws-0" url="http://myserver.domain.com/servlet/com.esri.esrimap.Esrimap" service="world" />
      </WORKSPACES>
      <LAYER type="featureclass" name="STATES" visible="true" id="0">
      <DATASET name="0" type="polygon" workspace="ifs_ws-0" />
      </LAYER>
      <LAYER type="featureclass" name="ROADS" visible="true" id="1">
      <DATASET name="3" type="line" workspace="ifs_ws-0" />
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>