| <aims:adminServer | Attribute Description Table |
| Attributes that set values: (r)action="addContainer | removeContainer" (r)name="string" removeId="string" Attributes that pass objects: (r)connectionId="object" Attributes that return values: (r)error="string" addedId="string" > No nested tags </aims:adminServer > | |
| (r): Attribute or nested tag is required. | |
| Attribute | Usage |
|---|---|
| action | Defines whether to add or remove an ArcIMS Spatial Server. |
| addedId | Returns a string identifying the new ArcIMS Spatial Server name. |
| connectionId | Holds information about the connection. The connection is created using aims:httpConnection or aims:tcpConnection. |
| error | Returns an error string if any occurred. Returns "Success" if no error. |
| name | The name of the server machine to administer. |
| removeId | The name of the ArcIMS Spatial Server to remove. |
| <aims:httpConnection id="myhttpConnection" url="http://mymachine" role="admin" username="admin" password="admin" /> <aims:adminServer name="mymachine" action="addContainer" addedId="myId" connectionId="<%=myhttpConnection%>" error="addError" /> <%=myId%> <aims:adminServer name="mymachine" action="removeContainer" removeId="<%=myId%>" connectionId="<%=myhttpConnection%>" error="removeError" /> |