Finding the installed version of SecuSign SDK
The web service allows you to find the numeric code for the currently installed version of SecuSign SDK and its components, check that the license certificate is in order and find the maximum size of a request the web service will accept (configurable in IIS).
Method name: GetVersionInfo
Service description including WSDL schema, and an example request and response for SOAP 1.1 and SOAP 1.2 are located at https://localhost/secusign/default.asmx?op=GetVersionInfo.
Localhost is the name used for the local computer; write the SDK server name/IP address instead (according to the settings in IIS). |
Request in SOAP 1.1 interface
POST /secusign/default.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://software602.com/secusign/GetVersionInfo"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetVersionInfo xmlns="http://software602.com/secusign/" />
</soap:Body>
</soap:Envelope>
Response structure
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetVersionInfoResponse xmlns="http://software602.com/longtermdocs/">
<GetVersionInfoResult>string</GetVersionInfoResult>
</GetVersionInfoResponse>
</soap:Body>
</soap:Envelope>
Output parameters of the method
Return value | Description |
---|---|
String |
The method result containing the SecuSign designation and version number, license check result and the maximum request size. If the response contains the error message “Certificate file specified by LicCert configuration key/parameter not found !!!”, the license certificate must be set as described in chapter Installing a license certificate. |