-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb.config
31 lines (31 loc) · 1.13 KB
/
Web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="mexBehavior">
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="mexBehavior" name="testWcf.Service1">
<endpoint address="testWcf" binding="basicHttpBinding" contract="testWcf.ITestWcf" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8090" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
<system.web>
<compilation debug="true" />
</system.web>
<connectionStrings>
<add name="BookDbContext" providerName="System.Data.SqlClient" connectionString="Data Source=DESKTOP-MNCSP62\SQLEXPRESS;Initial Catalog=bookShop;Integrated Security=True" />
</connectionStrings>
</configuration>