This document is archived and information here might be outdated.  Recommended version.


IServerObjectConfigurationInfo Interface (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Server > ESRI.ArcGIS.Server > Interfaces > IS > IServerObjectConfigurationInfo Interface
ArcGIS Developer Help

IServerObjectConfigurationInfo Interface

Provides access to properties of a server object configuration.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Members

Name Description
Read-only property Description Description of the server object configuration.
Read-only property IsPooled Indicates whether the server objects defined by this configuration are pooled.
Read-only property Name Name of the server object configuration.
Read-only property TypeName Type of the server object configuration (MapServer or GeocodeServer).

Classes that implement IServerObjectConfigurationInfo

Classes Description
ServerObjectConfigurationInfo The ServerObjectConfigurationInfo object which provides information about server object configurations to users without administrative privileges to the GIS server.

Remarks

The ArcGIS Server manages a set of server objects running across one or more host (container) machines. How those server objects are configured and run is defined by a set of server object configurations. Server object configurations can be added, removed, and modified by users or developers who are members of the agsadmin users group, and therfore have administrator priviliges on the ArcGIS Server.

Users and developers who are not administrators also need access to the list of server object configurations and the set of their properties that are necessary for programming applications with them. Users that are members of the agsusers user group, but are not members of the agsadmin user group, can get information about server object configurations using the GetConfigurtationInfos method on IServerObjectManager to get the IServerObjectConfigurationInfo interface. Note that GetConfigurtationInfos returns only server object configurations that are started.

IServerObjectConfigurationInfo provides read-access to a subset of the server object configuration's properties. These properties include:

Name: the name of the server object configuration

TypeName: the type of server object configuration (for example MapServer, GeocodeServer)

Description: the description of the server object configuration

IsPooled: inidicates whether the server objects described by this configuration are pooled or non-pooled

The properties listed above are those necessary for developers of server applications to use the various server objects configured on the GIS server.

See Also

IServerObjectManager Interface | GISServerConnection Class