DSS的Java类TLValidationJob说onlineLoader未定义,但我做到了

nimxete2  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(211)

我正在尝试DSS数字签名库5.12.1(https://ec.europa.eu/digital-building-blocks/sites/display/DIGITAL/Digital+Signature+Service+-++DSS)使用类TLValidationJob在本地存储欧盟信任的X509证书。运行onlineRefresh方法时,我遇到了意外异常“java.lang.NullPointerException:The onlineLoader must be defined!”
我已经正确运行了TLValidationJob.setOnlineDataLoader,并在运行了onlineRefresh方法后不久。它应该将源/证书信息放在我的缓存中,但onlineRefresh引发了异常“Unable to retrieve the content for url 'https://ec.europa.eu/tools/lotl/eu-lotl.xml'”,原因:“java.lang.NullPointerException:The onlineLoader must be defined!",怎么回事?这是我的准系统代码(有些是分开的):

  1. private static File tlCacheDirectory() {
  2. return new File("./myLOTLcache");
  3. }
  4. public static DSSFileLoader onlineLoader() {
  5. FileCacheDataLoader onlineFileLoader = new FileCacheDataLoader();
  6. onlineFileLoader.setCacheExpirationTime(-1); // negative value means cache never expires
  7. onlineFileLoader.setFileCacheDirectory(tlCacheDirectory());
  8. return onlineFileLoader;
  9. }
  10. public static CacheCleaner cacheCleaner() {
  11. CacheCleaner cacheCleaner = new CacheCleaner();
  12. cacheCleaner.setCleanMemory(true); // free the space in memory
  13. cacheCleaner.setCleanFileSystem(true); // and the filesystem
  14. cacheCleaner.setDSSFileLoader(onlineLoader());
  15. return cacheCleaner;
  16. }
  17. public static LOTLSource europeanLOTLSource() {
  18. LOTLSource lotlSource = new LOTLSource();
  19. lotlSource.setUrl("https://ec.europa.eu/tools/lotl/eu-lotl.xml");
  20. // I know what "pivot" is here, but "pivot support"?
  21. lotlSource.setPivotSupport(true);
  22. lotlSource.setLotlPredicate(TLPredicateFactory.createEULOTLPredicate());
  23. lotlSource.setTlPredicate(TLPredicateFactory.createEUTLPredicate());
  24. return lotlSource;
  25. }
  26. public static void main(String[] args) {
  27. TrustedListsCertificateSource myTLcertSource = new TrustedListsCertificateSource();
  28. TLValidationJob tlValidationJob = new TLValidationJob();
  29. LOTLSource mylotl = europeanLOTLSource();
  30. tlValidationJob.setListOfTrustedListSources(mylotl);
  31. // set the TrustedListsCertificateSource to be filled with the job results,
  32. // i.e. the list[s] should go into myTLcertSource
  33. tlValidationJob.setTrustedListCertificateSource(myTLcertSource);
  34. tlValidationJob.setOnlineDataLoader(onlineLoader());
  35. tlValidationJob.onlineRefresh();
  36. }

字符串

byqmnocz

byqmnocz1#

我解决了。我从onlineLoader切换到数字签名EU库(DSS)的offlineLoader解决方案,但最重要的是我添加了setDataLoader的正确调用。代码片段是:

  1. public static DSSFileLoader offlineLoader() {
  2. FileCacheDataLoader offlineFileLoader = new FileCacheDataLoader();
  3. offlineFileLoader.setCacheExpirationTime(-1); // negative value means cache never expires
  4. offlineFileLoader.setDataLoader(new NativeHTTPDataLoader());
  5. offlineFileLoader.setFileCacheDirectory(tlCacheDirectory());
  6. return offlineFileLoader;
  7. }

字符串
在主方法中:

  1. tlValidationJob.setOfflineDataLoader(offlineLoader());
  2. tlValidationJob.offlineRefresh();

展开查看全部

相关问题