GetVersion

 

GetVersion

Initial Build 2007.01
xWeb Web Method
Response Type String

 

This method returns the version of xWeb, the database server name and database name. If you are reporting issues with the xWeb site to Abila, include this information for diagnostics purposes. Another useful diagnostic web method is GetDateTime, which does require authentication.

If this method is not operating properly, then there are issues with the xWeb service's configuration that should be addressed.

See XWeb Build for more.

Parameters

No parameters are required.

Response

This method returns string data in the following format:


        Automatically generated from build 2007.1.0.20762, 
            Timestamp=9/14/2007 1:56:18 PM.  Database Server: netforum. 
            Database Name: netforum.

Sample Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<ns:Token>e2696ea8-21a0-495f-ad77-8d50072a5fc1</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:GetVersion/>
</soapenv:Body>
</soapenv:Envelope>

Sample Response

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Header>
<AuthorizationToken xmlns="http://www.avectra.com/2005/">
<Token>379c50fa-3aa7-4c2a-afec-26d4ffb74397</Token>
</AuthorizationToken>
</soap:Header>
<soap:Body>
<GetVersionResponse xmlns="http://www.avectra.com/2005/">
<GetVersionResult>Automatically generated from build 2007.1.0.20762, 
            Timestamp=9/14/2007 1:56:18 PM.  Database Server: netforum. 
            Database Name: netforum.</GetVersionResult>
</GetVersionResponse>
</soap:Body>
</soap:Envelope>

 

JSON Method

GET /xWeb/JSON/GetVersion

POST/xWeb/JSON/GetVersion

DATA: JSON
{
    "GetVersion": null
}

 

SAMPLE RESULT
HTTP STATUS: 200
DATA: JSON
{
    "Build": "netFORUM Enterprise, 2017.1.23.0",
    "Version": {
        "MajorVersion": "netFORUM Enterprise",
        "MinorVersion": "2017.1.23.0"
    },
    "Server": "netforumenterpriseclouddb-svr",
    "Database": "nfec-develop01"
}

 

 

Was this article helpful?
0 out of 0 found this helpful