SERVICES

Used in

Application Server RESPONSE  Application Server Administration  

Parent elements

ADMINCMD  Application Server RESPONSE  

Syntax

<SERVICES >
     No Attributes

     (m)<SERVICE... />

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

Description

Provides details about ArcIMS services in a SERVICES application server RESPONSE or is used to manage services from the command line.

Notes

 

Examples for SERVICES

Example 1: When in ADMINCMD.
<?xml version="1.0"?>
<ADMINCMD version="1.0">
  <SERVICES>
    <SERVICE type="stop" name="world_image" />
    <SERVICE type="remove" name="world_image" />
  </SERVICES>
</ADMINCMD>

Example 2: When in an application server RESPONSE to GETCLIENTSERVICES.
<?xml version="1.0"?>
<ARCXML version="1.1">
<RESPONSE>
  <SERVICES>
    <SERVICE name="world_image" servicegroup="ImageServer1" access="PUBLIC" type="ImageServer" version=""  status="ENABLED" >
      <ENVIRONMENT>
        <LOCALE country="US" language="en" />
        <UIFONT name="Arial" />
      </ENVIRONMENT>
      <CLEANUP interval="20" />
    </SERVICE>
  </SERVICES>
</RESPONSE>
</ARCXML>

Back to top