markus / ConvertService / ServiceController / StationControllerService / Web.config @ 5c387707
이력 | 보기 | 이력해설 | 다운로드 (2.84 KB)
1 |
<?xml version="1.0"?> |
---|---|
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 |
<appSettings> |
8 |
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true"/> |
9 |
</appSettings> |
10 |
<!-- |
11 |
web.config 변경 내용에 대한 설명은 http://go.microsoft.com/fwlink/?LinkId=235367을 참고하십시오. |
12 |
|
13 |
다음 특성은 <httpRuntime> 태그에 설정할 수 있습니다. |
14 |
<system.Web> |
15 |
<httpRuntime targetFramework="4.5" /> |
16 |
</system.Web> |
17 |
--> |
18 |
<system.web> |
19 |
<compilation debug="true" targetFramework="4.6.1"/> |
20 |
<httpRuntime targetFramework="4.5"/> |
21 |
</system.web> |
22 |
<system.serviceModel> |
23 |
<behaviors> |
24 |
<serviceBehaviors> |
25 |
<behavior> |
26 |
<!--메타데이터 정보를 공개하지 않으려면 배포하기 전에 아래 값을 false로 설정하십시오.--> |
27 |
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/> |
28 |
<!--디버깅 목적으로 오류에서 예외 정보를 받으려면 아래의 값을 true로 설정하십시오. 예외 정보를 공개하지 않으려면 배포하기 전에 false로 설정하십시오.--> |
29 |
<serviceDebug includeExceptionDetailInFaults="false"/> |
30 |
</behavior> |
31 |
</serviceBehaviors> |
32 |
</behaviors> |
33 |
<protocolMapping> |
34 |
<add binding="basicHttpsBinding" scheme="https"/> |
35 |
</protocolMapping> |
36 |
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/> |
37 |
</system.serviceModel> |
38 |
<system.webServer> |
39 |
<modules runAllManagedModulesForAllRequests="true"/> |
40 |
<!-- |
41 |
디버깅 중에 웹 응용 프로그램 루트 디렉터리를 찾으려면 아래 값을 true로 설정하십시오. |
42 |
웹 응용 프로그램 폴더 정보를 공개하지 않으려면 배포 전에 false로 설정하십시오. |
43 |
--> |
44 |
<directoryBrowse enabled="true"/> |
45 |
</system.webServer> |
46 |
<entityFramework> |
47 |
<providers> |
48 |
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/> |
49 |
</providers> |
50 |
</entityFramework> |
51 |
<connectionStrings> |
52 |
<add name="markusEntities" connectionString="metadata=res://*/MarkusModel.csdl|res://*/MarkusModel.ssdl|res://*/MarkusModel.msl;provider=System.Data.SqlClient;provider connection string="data source=192.168.0.67;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;application name=EntityFramework"" providerName="System.Data.EntityClient"/> |
53 |
</connectionStrings> |
54 |
</configuration> |