PSERVERS

Used in

Application Server Administration  

Parent elements

ADMINCMD 

Syntax

<PSERVERS >
     No Attributes

     (m)<PSERVER... />

</PSERVERS >
(m):  Child element can be used multiple times.

Description

Main element for administering ArcIMS Spatial Servers (PSERVERS) from the command line. 

Examples for PSERVERS

Example 1: When adding a new Spatial Server (PSERVER) or to associate one or more Spatial Servers with a Virtual Server (VSERVER)
<?xml version="1.0"?>
<ADMINCMD version="1.0">
  <PSERVERS>
    <PSERVER type="add" machine="mymachine.domain.com"/>
  </PSERVERS>
  <VSERVERS>
    <VSERVER type="add"
             name="ImageServerArcMap2"
             access="Public"
             description="ImageServer ArcMap Example"
             servicetype="ImageServer"
             version="ArcMap"
             referencehour="1"
             referenceminute="0"
             frequency="2"
    >

      <PSERVER id="mymachine.domain.com_4" threads="1"/>  
      <PSERVER id="mymachine.domain.com_5" threads="1"/>
    </VSERVER>
  </VSERVERS>      
</ADMINCMD>

Back to top