AVIMSWORKSPACE

Used in

CONFIG  

Parent elements

WORKSPACES 

Syntax

<AVIMSWORKSPACEAttribute Description Table
     (r)map="string"
     (r)name="string"
     (r)url="string"
     (r)view="string"
>

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

Description

Specifies a workspace for a map served in ArcView IMS.

Note: this element has been deprecated and may be removed in a future release of ArcIMS.

Restrictions


Notes


Attribute Descriptions for AVIMSWORKSPACE

AttributeUsage
mapArcView IMS MapName.
nameWorkspace name. Must be unique among all data sources.
urlServer URL points to the location of the Esrimap version used with ArcView IMS. This is either the ArcIMS servlet connector (/servlet/com.esri.esrimap.Esrimap) or the ArcView IMS esrimap.dll or esrimapn.dll (/scripts/esrimap.dll, /scripts/esrimapn.dll).
viewArcView IMS ViewName.
Back to top 

Examples for AVIMSWORKSPACE

Example 1: When in a viewer configuration file.
<?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="-176.0837748424188" miny="18.9247817993164" maxx="-52.62028121948239" maxy="83.10832214355472" name="Initial_Extent" />
      <MAPUNITS units="decimal_degrees" />
      </PROPERTIES>
      <WORKSPACES>
      <AVIMSWORKSPACE name="av_ws-4" url="http://mycomputer.domain.com/servlet/com.esri.esrimap.Esrimap" view="view1" map="washoe21204240" />
      </WORKSPACES>
      <LAYER type="image" name="mycomputer.domain.com:washoe21204240:view1" visible="true" id="0">
      <DATASET name="mycomputer.domain.com:washoe21204240:view1" type="image" workspace="av_ws-4" />
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>

Back to top