/**
  * Returns the list of CSR Files queried from a given status
  *
  * @param status
  * @return CSR File list with a given status
  * @throws AxisFault
  */
 public CsrMetaInfo[] getCSRsFromType(String status) throws AxisFault {
   try {
     return stub.getCsrListWithStatus(status);
   } catch (Exception e) {
     String message = e.getMessage();
     handleException(e.getMessage(), e);
   }
   return null;
 }