Adds a server object configuration (created with CreateConfiguration) to the GIS server.
[Visual Basic 6.0] Sub AddConfiguration(
ByVal config As IServerObjectConfiguration _
)
[Visual Basic .NET] Public Sub AddConfiguration ( _ ByVal config As IServerObjectConfiguration _ )
[C#] public void AddConfiguration ( IServerObjectConfiguration config );
[Java] public void addConfiguration ( IServerObjectConfiguration config ) throws IOException, AutomationException
[C++] HRESULT AddConfiguration( IServerObjectConfiguration* config );
The AddConfiguration method will add a ServerObjectConfiguration to your ArcGIS Server. A new ServerObjectConfiguration can be created using the CreateConfiguration method. Use the IServerObjectConfiguration interface to set the various properties of the configuration, then use the AddConfiguration method on IServerObjectAdmin to add the new configuration to the ArcGIS Server.
Once a configuration is added to the server, you can use StartConfiguration to make it available for applications to use.