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