Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/03/15 16:35:17 (9 years ago)
Author:
dglaser
Message:

#2388: Changed all files to connect to localhost / sqlexpress

HeuristicLab.Services.Hive-3.3:

  • Added Converter.cs and NewHiveService.cs, both will be integrated into existing HiveService.cs and Convert.cs when all methods are successfully implemented

HeuristicLab.Services.Hive.Web.Hive-3.3:

  • Added publish profiles

HeuristicLab.Services.WebApp.Statistics-3.3:

  • Added functionality to download TaskData as .hl file
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlParser.cs

    r12467 r12584  
    193193      try {
    194194        using (FileStream fs = new FileStream(filename, FileMode.Open, FileAccess.Read)) {
    195           using (ZipArchive zip = new ZipArchive(fs)) {
    196             return Deserialize(zip);
     195          try {
     196            using (ZipArchive zip = new ZipArchive(fs)) {
     197              return Deserialize(zip);
     198            }
     199          }
     200          catch (Exception) {
     201            return DeserializeWithGZip(fs);
    197202          }
    198203        }
Note: See TracChangeset for help on using the changeset viewer.