This action returns the build information of ExtraView. The build information identifies the specific build and version number of the ExtraView server.
Class |
Name |
Type |
Required |
Details |
GetVersionRequest |
userId |
String |
Yes |
The callers user name |
GetVersionRequest |
password |
String |
Yes |
The callers password |
Class |
Name |
Type |
Required |
Details |
GetVersionResponse |
success |
boolean |
Yes |
True is succeeded False if failed |
GetVersionResponse |
returnCode |
String |
No |
See Appendix for details |
GetVersionResponse |
returnMessage |
String |
No |
Human readable message |
GetVersionResponse |
revision |
String |
Yes |
The revision of ExtraView |
GetVersionResponse |
modificationData |
String |
Yes |
The last modification date of the ExtraView code base. |
public static void testGetVersion(EVSystemServiceStub stub){
try{ // first we build the request... GetVersionDocument reqEnvelope = GetVersionDocument.Factory.newInstance(); GetVersionRequest request = reqEnvelope.addNewGetVersion().addNewParam0(); request.setUserId( ServiceClientHelper.ADMIN_USER_ID); request.setPassword( ServiceClientHelper.ADMIN_PASSWORD); GetVersionResponseDocument resEnvelope = if (response.getSuccess()) { } catch (Exception e) { |