public String ping() {
   try {
     if (isPipelined()) {
       pipeline(pipeline.ping());
       return null;
     }
     return client.ping().data();
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }