Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6922 was 6780, checked in by abeham, 13 years ago

#1619

  • restructured files
File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3  <system.web>
4    <compilation debug="true" targetFramework="4.0">
5      <assemblies>
6        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
7      </assemblies>
8    </compilation>
9  </system.web>
10  <system.serviceModel>
11    <behaviors>
12      <serviceBehaviors>
13        <behavior>
14          <dataContractSerializer maxItemsInObjectGraph="2147483647" />
15          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
16          <serviceMetadata httpGetEnabled="true" />
17          <!-- 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 -->
18          <serviceDebug includeExceptionDetailInFaults="true" />
19        </behavior>
20      </serviceBehaviors>
21    </behaviors>
22    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
23  </system.serviceModel>
24  <system.webServer>
25    <modules runAllManagedModulesForAllRequests="true" />
26  </system.webServer>
27  <connectionStrings>
28    <add name="ProblemInstancesEntities" connectionString="metadata=res://*/ProblemInstancesModel.csdl|res://*/ProblemInstancesModel.ssdl|res://*/ProblemInstancesModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=LOCALHOST\SQLEXPRESS;Initial Catalog=HeuristicLab.ProblemInstances;Integrated Security=True;Pooling=False;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient" />
29  </connectionStrings>
30</configuration>
Note: See TracBrowser for help on using the repository browser.