markus / ConvertService / ServiceBase / ServiceTestApp / App.config @ 0b49ffb8
이력 | 보기 | 이력해설 | 다운로드 (3.59 KB)
1 | 2d0113f1 | taeseongkim | <?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 | <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections> |
||
7 | <connectionStrings> |
||
8 | <add name="MarkusEntities" connectionString="metadata=res://*/markusModel.csdl|res://*/markusModel.ssdl|res://*/markusModel.msl;provider=System.Data.SqlClient;provider connection string="data source=.\SQLEXPRESS;initial catalog=Markus;persist security info=True;user id=ConvertService;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" /> |
||
9 | </connectionStrings> |
||
10 | <entityFramework> |
||
11 | <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> |
||
12 | <parameters> |
||
13 | <parameter value="mssqllocaldb" /> |
||
14 | </parameters> |
||
15 | </defaultConnectionFactory> |
||
16 | <providers> |
||
17 | <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> |
||
18 | </providers> |
||
19 | </entityFramework> |
||
20 | <startup> |
||
21 | <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> |
||
22 | </startup> |
||
23 | <!--<system.serviceModel> |
||
24 | <bindings> |
||
25 | <basicHttpBinding> |
||
26 | <binding name="BasicHttpBinding_IStationService" /> |
||
27 | <binding name="BasicHttpBinding_IConvertService" /> |
||
28 | </basicHttpBinding> |
||
29 | </bindings> |
||
30 | <client> |
||
31 | <endpoint address="http://localhost:9101/StationService" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IStationService" contract="StationService.IStationService" name="BasicHttpBinding_IStationService" /> |
||
32 | <endpoint address="http://localhost:9102/ConvertService" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IConvertService" contract="ConvertService.IConvertService" name="BasicHttpBinding_IConvertService" /> |
||
33 | </client> |
||
34 | </system.serviceModel>--> |
||
35 | <system.serviceModel> |
||
36 | <bindings> |
||
37 | <basicHttpBinding> |
||
38 | <binding name="BasicHttpBinding_IConvertService" /> |
||
39 | <binding name="BasicHttpBinding_IStationService" /> |
||
40 | 06f13e11 | taeseongkim | <binding name="ConversionSoap" /> |
41 | 2d0113f1 | taeseongkim | </basicHttpBinding> |
42 | </bindings> |
||
43 | <client> |
||
44 | <endpoint address="http://localhost:9112/ConvertService" binding="basicHttpBinding" |
||
45 | bindingConfiguration="BasicHttpBinding_IConvertService" contract="ConvertService.IConvertService" |
||
46 | name="BasicHttpBinding_IConvertService" /> |
||
47 | <endpoint address="http://localhost:9111/StationService" binding="basicHttpBinding" |
||
48 | bindingConfiguration="BasicHttpBinding_IStationService" contract="StationService.IStationService" |
||
49 | name="BasicHttpBinding_IStationService" /> |
||
50 | 06f13e11 | taeseongkim | <endpoint address="http://localhost:5295/Conversion.asmx" binding="basicHttpBinding" |
51 | bindingConfiguration="ConversionSoap" contract="ConvertWebService.ConversionSoap" |
||
52 | name="ConversionSoap" /> |
||
53 | 2d0113f1 | taeseongkim | </client> |
54 | </system.serviceModel> |
||
55 | 150747cb | taeseongkim | <system.net> |
56 | <defaultProxy enabled = "true"> |
||
57 | <proxy bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" /> |
||
58 | </defaultProxy> |
||
59 | </system.net> |
||
60 | 2d0113f1 | taeseongkim | </configuration> |