Package org.infoglue.deliver.util

Examples of org.infoglue.deliver.util.HttpHelper.downloadFile()


     
      String cmsBaseUrl = CmsPropertyHandler.getCmsFullBaseUrl();
      if(CmsPropertyHandler.getEnableDiskAssets().equals("true"))
      {
        HttpHelper httpHelper = new HttpHelper();
        httpHelper.downloadFile("" + cmsBaseUrl + "/DownloadProtectedAsset.action?digitalAssetId=" + digitalAssetVO.getId(), tmpOutputFile);
      }
     
      if(tmpOutputFile.exists())
      {
        if(logger.isInfoEnabled())
View Full Code Here


          logger.warn("There was no asset blob in the database - checking the cms-disk - could be a mistake:" + digitalAssetVO.getDigitalAssetId());
         
          try
          {
            HttpHelper httpHelper = new HttpHelper();
            httpHelper.downloadFile("" + cmsBaseUrl + "/DownloadProtectedAsset.action?digitalAssetId=" + digitalAssetVO.getId(), tmpOutputFile);
         
            if(tmpOutputFile.exists())
            {
              if(logger.isInfoEnabled())
              {
View Full Code Here

          logger.info("Was a deliver request and no asset was found on " + tmpOutputFile.getName() + " so let's get it from the cms.");
          String cmsBaseUrl = CmsPropertyHandler.getCmsFullBaseUrl();
          if(CmsPropertyHandler.getEnableDiskAssets().equals("true"))
          {
            HttpHelper httpHelper = new HttpHelper();
            httpHelper.downloadFile("" + cmsBaseUrl + "/DownloadProtectedAsset.action?digitalAssetId=" + digitalAssetVO.getId(), outputFile);
          }
        }
      }
      logger.info("end");
     
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.