MOIMSWORKSPACE

Used in

CONFIG  

Parent elements

WORKSPACES 

Syntax

<MOIMSWORKSPACEAttribute Description Table
     (r)name="string"
     (r)service="string"
     (r)url="string"
>

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

Description

Specifies a workspace for an ArcExplorer-enabled MapObjects IMS application.

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

Restrictions


Attribute Descriptions for MOIMSWORKSPACE

AttributeUsage
nameWorkspace name. Must be unique among all data sources.
serviceArcIMS service name.
urlPoint to the location of esrimap.dll or esrimapn.dll.
Back to top 

Examples for MOIMSWORKSPACE

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="-117.0" miny="12.2" maxx="-86.7" maxy="35.0" name="Initial_Extent" />
        <MAPUNITS units="decimal_degrees" />
      </PROPERTIES>
      <WORKSPACES>
        <MOIMSWORKSPACE name="mo_ws-4" url="http://mycomputer.domain.com/scripts/esrimap.dll" service="Mexico" />
      </WORKSPACES>
      <LAYER type="image" name="arcims2:tahoe" visible="true" id="0">
        <DATASET name="arcims2:tahoe" type="image" workspace="mo_ws-4" />
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>

Back to top