markus / KCOM_API_AutoStamping / Web.config @ e1c892f7
이력 | 보기 | 이력해설 | 다운로드 (2.15 KB)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
<configuration> |
3 |
<appSettings> |
4 |
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" /> |
5 |
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" /> |
6 |
</appSettings> |
7 |
<system.web> |
8 |
<compilation debug="true" targetFramework="4.6.1" /> |
9 |
<httpRuntime targetFramework="4.6.1"/> |
10 |
</system.web> |
11 |
<system.serviceModel> |
12 |
<bindings> |
13 |
<basicHttpBinding> |
14 |
<binding name="BasicBinding" closeTimeout="00:03:00" maxBufferSize="2147483647" |
15 |
maxReceivedMessageSize="2147483647"> |
16 |
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" |
17 |
maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> |
18 |
</binding> |
19 |
</basicHttpBinding> |
20 |
</bindings> |
21 |
<diagnostics performanceCounters="Default" /> |
22 |
<services> |
23 |
<service behaviorConfiguration="ServiceBehavior" name="KCOM_API.Common"> |
24 |
<endpoint binding="basicHttpBinding" bindingConfiguration="BasicBinding" |
25 |
name="ServiceEndPoint" bindingNamespace="" contract="KCOM_API.Common" /> |
26 |
</service> |
27 |
</services> |
28 |
<behaviors> |
29 |
<serviceBehaviors> |
30 |
<behavior name="ServiceBehavior"> |
31 |
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" /> |
32 |
<serviceDebug includeExceptionDetailInFaults="false" /> |
33 |
<!--<serviceThrottling maxConcurrentCalls="1"/>--> |
34 |
<dataContractSerializer /> |
35 |
</behavior> |
36 |
</serviceBehaviors> |
37 |
</behaviors> |
38 |
<protocolMapping> |
39 |
<add binding="basicHttpsBinding" scheme="https" /> |
40 |
</protocolMapping> |
41 |
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /> |
42 |
</system.serviceModel> |
43 |
<system.webServer> |
44 |
<modules runAllManagedModulesForAllRequests="true"/> |
45 |
<!-- |
46 |
디버깅 중에 웹 응용 프로그램 루트 디렉터리를 찾으려면 아래 값을 true로 설정하십시오. |
47 |
웹 응용 프로그램 폴더 정보를 공개하지 않으려면 배포 전에 false로 설정하십시오. |
48 |
--> |
49 |
<directoryBrowse enabled="true"/> |
50 |
</system.webServer> |
51 |
</configuration> |