Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device.
Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
The list of server you would like to send the extension configuration to. If left out then the extension configuration will be sent to all available servers in the Verba System.
returnSuccessfulStatuses
boolean
If true we show all success and failure response states. If false we show only failure responses.
forceEvenIfNotRegistered
boolean
If true we send to all servers regardless of their current extension configuration. If false we only send the extension configuration to those servers that have different extension configuration than in the central database.
Example ApplyExtensionConfiguration to unavailable servers. Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v2="http://v2.provisioning.ws.web.verba.com/">
<soapenv:Header/>
<soapenv:Body>
<v2:applyExtensionConfiguration>
<token>piyyOvWeg64IXskLzVMutqxikakzLV5D</token>
<!--Zero or more repetitions:-->
<theseServersOnly>
<eid>0000</eid>
<location>DEV-RS1</location>
</theseServersOnly>
<theseServersOnly>
<eid>0000</eid>
<location>DEV-RS2</location>
</theseServersOnly>
<returnSuccessfulStatuses>1</returnSuccessfulStatuses>
<forceEvenIfNotRegistered>1</forceEvenIfNotRegistered>
</v2:applyExtensionConfiguration>
</soapenv:Body>
</soapenv:Envelope>
Response:
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:applyExtensionConfigurationResponse xmlns:ns2="http://v2.provisioning.ws.web.verba.com/">
<return>
<status>
<message>2 server(s) failed</message>
<statusCode>ERROR_GENERAL</statusCode>
</status>
<statuses>
<server>
<eid>0000</eid>
<location>DEV-RS1</location>
</server>
<status>
<message>Could not apply extension configuration on 0000:DEV-RS1: java.lang.Exception: Could not connect to Verba Node Manager Agent at host DEV-RS1.
Please check if the service is in running state.</message>
<statusCode>ERROR_GENERAL</statusCode>
</status>
</statuses>
<statuses>
<server>
<eid>0000</eid>
<location>DEV-RS2</location>
</server>
<status>
<message>Could not apply extension configuration on 0000:DEV-RS2: java.lang.Exception: Could not connect to Verba Node Manager Agent at host DEV-RS2.
Please check if the service is in running state.</message>
<statusCode>ERROR_GENERAL</statusCode>
</status>
</statuses>
</return>
</ns2:applyExtensionConfigurationResponse>
</S:Body>
</S:Envelope>