2.2.5.28 ServiceList Element

The ServiceList XML element is used to specify services that are registered with the server. It is the root element of XML documents that are used in WSRM method parameters.

 <xs:element name="ServiceList">
   <xs:complexType>
     <xs:sequence>
       <xs:element name="Service"
         maxOccurs="unbounded"
       >
         <xs:complexType name="Service">
           <xs:sequence>
             <xs:element name="Name"
               type="xs:string"
              />
             <xs:element name="StartName"
               type="xs:string"
              />
             <xs:element name="Path"
               type="xs:string"
              />
             <xs:element name="Description"
               type="xs:string"
              />
           </xs:sequence>
         </xs:complexType>
       </xs:element>
     </xs:sequence>
   </xs:complexType>
 </xs:element>

Child Elements

Element

Type

Description

Service

Service

A specification of a service.

Name

xs:string

The name of the service.

StartName

xs:string

The name of the user account in which the service is started.

Path

xs:string

The path to the service executable binary, along with the command line for invoking the service.

Description

xs:string

A text description of the service.

Additional XML data formats are specified in section 2.2.5.