Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Services.ProblemInstances/Web.config @ 6755

Last change on this file since 6755 was 6733, checked in by abeham, 13 years ago

#1619

  • Updated the model slightly
  • Deployed the service
  • Updated the GUI to perform asynchronous calls to the service
File size: 1.1 KB
Line 
1<?xml version="1.0"?>
2<configuration>
3
4  <system.web>
5    <compilation debug="true" targetFramework="4.0"><assemblies><add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /></assemblies></compilation>
6  </system.web>
7  <system.serviceModel>
8    <behaviors>
9      <serviceBehaviors>
10        <behavior>
11          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
12          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
13          <serviceMetadata httpGetEnabled="true" />
14          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
15          <serviceDebug includeExceptionDetailInFaults="true" />
16        </behavior>
17      </serviceBehaviors>
18    </behaviors>
19    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
20  </system.serviceModel>
21 <system.webServer>
22    <modules runAllManagedModulesForAllRequests="true" />
23  </system.webServer>
24 
25</configuration>
Note: See TracBrowser for help on using the repository browser.