Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1619

  • experimented with a first locally working version
File size: 1.5 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          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
12          <serviceMetadata httpGetEnabled="true" />
13          <!-- 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 -->
14          <serviceDebug includeExceptionDetailInFaults="false" />
15        </behavior>
16      </serviceBehaviors>
17    </behaviors>
18    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
19  </system.serviceModel>
20 <system.webServer>
21    <modules runAllManagedModulesForAllRequests="true" />
22  </system.webServer>
23 
24<connectionStrings><add name="ProblemInstancesEntities" connectionString="metadata=res://*/ProblemInstancesModel.csdl|res://*/ProblemInstancesModel.ssdl|res://*/ProblemInstancesModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=MRPINK\SQLEXPRESS;Initial Catalog=ProblemInstances;Integrated Security=True;Pooling=False;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient" /></connectionStrings></configuration>
Note: See TracBrowser for help on using the repository browser.