GetServerInfo Action


Description

This action returns the versions of Oracle Determinations Server and Determinations Engine that are currently running as well as the Determination Engine's time zone. This can be used for things such as reporting, diagnostics, and compatibility guarantees.

Request

The Call is a simple SOAP Request with no parameters:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
   xmlns:typ="http://oracle.com/determinations/server/10.0/server/types">
        <soapenv:Header/>
        <soapenv:Body>
                <typ:get-version-request/>
        </soapenv:Body>
</soapenv:Envelope>

Response

The response contains three elements:

Example Response:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
   xmlns:i18n="http://www.w3.org/2005/09/ws-i18n"
   xmlns:typ="http://oracle.com/determinations/server/10.0/server/types">
        <SOAP-ENV:Header>
                <i18n:international>
                        <i18n:locale>en_US</i18n:locale>
                        <i18n:tz>GMT+1000</i18n:tz>
                </i18n:international>
        </SOAP-ENV:Header>
        <SOAP-ENV:Body>
                <typ:get-version-response>
                        <typ:determinations-server-version>10.2.0.1</typ:determinations-server-version>
                        <typ:determinations-engine-version>10.2.0.1</typ:determinations-engine-version>
                        <typ:determinations-engine-timezone>Eastern Standard Time (New South Wales)</typ:determinations-
                                   engine-timezone>
                </typ:get-version-response>
        </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Remarks

Both the Determinations Server and Determinations Engine version string will be formatted as:

<major number>.<minor number>.<patch number>.<revision number>