0
|
1 <?xml version="1.0"?>
|
|
2 <configuration>
|
|
3 <system.web>
|
|
4 <compilation debug="true" targetFramework="4.0" />
|
|
5 </system.web>
|
|
6
|
|
7 <system.serviceModel>
|
|
8 <behaviors>
|
|
9 <serviceBehaviors>
|
|
10 <behavior name="">
|
|
11 <serviceMetadata httpGetEnabled="true" />
|
|
12 <serviceDebug includeExceptionDetailInFaults="true" />
|
|
13 </behavior>
|
|
14 </serviceBehaviors>
|
|
15 </behaviors>
|
|
16 <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
|
|
17 </system.serviceModel>
|
|
18
|
|
19 <connectionStrings>
|
|
20 <add name="Northwind" connectionString="Server=.;Database=Northwind;Integrated Security=SSPI" providerName="System.Data.SqlClient" />
|
|
21 </connectionStrings>
|
|
22 </configuration> |