Uploaded image for project: 'XMLGraphicsCommons'
  1. XMLGraphicsCommons
  2. XGC-72

[PATCH] Improve exception handling when loading classpath resources fails

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Resolution: Unresolved
    • 1.4
    • None
    • utilities
    • None
    • Operating System: All
      Platform: PC

    Description

      I had one invalid .jar file where signing information was not correct. When calling ClasspathResource.loadManifests(), via ClasspathResource.getInstance(), it correctly fails with a "java.lang.SecurityException: Invalid signature file digest for Manifest main attributes", however it does not tell me which actual jar-file could not be loaded.

      Please enhance exception handling in that method so that it reports which jar-file failed, e.g.

      — ClasspathResource.java 2010-07-02 14:04:28.000000000 +0200
      +++ ClasspathResource.java.new 2012-08-09 08:20:21.428843500 +0200
      @@ -138,6 +138,8 @@
      addToMapping(contentType, name, classLoader);
      }
      }
      + } catch (SecurityException se)

      { + throw new SecurityException("While handling " + u, se); }

      catch (IOException io)

      { // TODO: Log. }

      Attachments

        Activity

          People

            general@xmlgraphics.apache.org XML Graphics Project Mailing List
            dominik.stadler@gmx.at Dominik Stadler
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: