markus / ConvertService / ServiceBase / ServiceUnitTest / app.config @ 48e1ab34
이력 | 보기 | 이력해설 | 다운로드 (1.2 KB)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
<configuration> |
3 |
<configSections> |
4 |
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> |
5 |
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
6 |
</configSections> |
7 |
<system.serviceModel> |
8 |
<bindings> |
9 |
<basicHttpBinding> |
10 |
<binding name="BasicHttpBinding_IConvertService" /> |
11 |
</basicHttpBinding> |
12 |
</bindings> |
13 |
<client> |
14 |
<endpoint address="http://localhost:9001/ConvertService" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IConvertService" contract="ConvertService.IConvertService" name="BasicHttpBinding_IConvertService" /> |
15 |
</client> |
16 |
</system.serviceModel> |
17 |
<entityFramework> |
18 |
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" /> |
19 |
<providers> |
20 |
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> |
21 |
</providers> |
22 |
</entityFramework> |
23 |
</configuration> |