/**
   * Returns the list of Certificates issued
   *
   * @return Certificate File List
   * @throws AxisFault
   */
  public CertificateMetaInfo[] getPubCertList() throws AxisFault {

    try {
      return stub.getAllCerts();

    } catch (Exception e) {
      String message = e.getMessage();
      handleException(e.getMessage(), e);
    }
    return null;
  }