getPing

This action returns a web services status independent of the ExtraView application.

Input

There are no inputs for this action.

Output

There are no outputs for this action. Independent of any user ID, password or any other parameter, this action confirms that a connection to the server exists and is functioning.

Example

http://SERVER_NAME/EV_NAME/services/EVSystemService/getPing?

or

public static void systemStatus(EVSystemServiceStub stub) {
    try {
        GetPingResponseDocument response = stub.getPing();
        System.out.println(response.getGetPingResponse().getReturn());
    } catch (Exception e) {
        e.printStackTrace();
        System.out.println("nnn");
    }
}