markus / KCOM_API / Web.config @ 684ef11c
이력 | 보기 | 이력해설 | 다운로드 (3.06 KB)
1 |
<?xml version="1.0"?> |
---|---|
2 |
<!-- |
3 |
For more information on how to configure your ASP.NET application, please visit |
4 |
https://go.microsoft.com/fwlink/?LinkId=169433 |
5 |
--> |
6 |
<configuration> |
7 |
<configSections> |
8 |
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |
9 |
<section name="KCOM_API.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/> |
10 |
</sectionGroup> |
11 |
</configSections> |
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 debug="true" targetFramework="4.5"/> |
22 |
<pages controlRenderingCompatibilityVersion="4.0"/> |
23 |
</system.web> |
24 |
<system.serviceModel> |
25 |
<behaviors> |
26 |
<serviceBehaviors> |
27 |
<behavior name="KCOM_API.SilverlightServiceBehavior"> |
28 |
<serviceMetadata httpGetEnabled="true"/> |
29 |
<serviceDebug includeExceptionDetailInFaults="false"/> |
30 |
<!--Jaedoo 최소용량때문에 추가한거임--> |
31 |
<dataContractSerializer maxItemsInObjectGraph="2147483647"/> |
32 |
</behavior> |
33 |
</serviceBehaviors> |
34 |
</behaviors> |
35 |
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/> |
36 |
<bindings> |
37 |
<basicHttpBinding> |
38 |
<binding name="LargeBuffer" receiveTimeout="04:30:00" openTimeout="00:30:00" sendTimeout="04:30:00" closeTimeout="00:30:00" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"> |
39 |
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/> |
40 |
</binding> |
41 |
</basicHttpBinding> |
42 |
</bindings> |
43 |
<services> |
44 |
<service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" name="KCOM_API.ServiceDeepView"> |
45 |
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"> |
46 |
<identity> |
47 |
<dns value="localhost"/> |
48 |
</identity> |
49 |
</endpoint> |
50 |
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
51 |
</service> |
52 |
</services> |
53 |
</system.serviceModel> |
54 |
<system.webServer> |
55 |
<validation validateIntegratedModeConfiguration="false"/> |
56 |
</system.webServer> |
57 |
<applicationSettings> |
58 |
<KCOM_API.Properties.Settings> |
59 |
<setting name="TileSoucePath" serializeAs="String"> |
60 |
<value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
61 |
</setting> |
62 |
<setting name="TileSoucePath_SUB" serializeAs="String"> |
63 |
<value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
64 |
</setting> |
65 |
</KCOM_API.Properties.Settings> |
66 |
</applicationSettings> |
67 |
</configuration> |