markus / KCOM_API / Web.config @ c0977e97
이력 | 보기 | 이력해설 | 다운로드 (3.06 KB)
1 | 787a4489 | KangIngu | <?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 | a874198d | humkyung | <configSections> |
8 | 684ef11c | ljiyeon | <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 | a874198d | humkyung | </sectionGroup> |
11 | </configSections> |
||
12 | 684ef11c | ljiyeon | <!-- |
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 | 787a4489 | KangIngu | <system.web> |
21 | 684ef11c | ljiyeon | <compilation debug="true" targetFramework="4.5"/> |
22 | 787a4489 | KangIngu | <pages controlRenderingCompatibilityVersion="4.0"/> |
23 | </system.web> |
||
24 | 684ef11c | ljiyeon | <system.serviceModel> |
25 | 787a4489 | KangIngu | <behaviors> |
26 | <serviceBehaviors> |
||
27 | <behavior name="KCOM_API.SilverlightServiceBehavior"> |
||
28 | 684ef11c | ljiyeon | <serviceMetadata httpGetEnabled="true"/> |
29 | <serviceDebug includeExceptionDetailInFaults="false"/> |
||
30 | 787a4489 | KangIngu | <!--Jaedoo 최소용량때문에 추가한거임--> |
31 | 2ab012e8 | djkim | <dataContractSerializer maxItemsInObjectGraph="2147483647"/> |
32 | 787a4489 | KangIngu | </behavior> |
33 | </serviceBehaviors> |
||
34 | </behaviors> |
||
35 | <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/> |
||
36 | <bindings> |
||
37 | <basicHttpBinding> |
||
38 | 684ef11c | ljiyeon | <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 | 787a4489 | KangIngu | </binding> |
41 | </basicHttpBinding> |
||
42 | </bindings> |
||
43 | <services> |
||
44 | <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" name="KCOM_API.ServiceDeepView"> |
||
45 | 684ef11c | ljiyeon | <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"> |
46 | 787a4489 | KangIngu | <identity> |
47 | 684ef11c | ljiyeon | <dns value="localhost"/> |
48 | 787a4489 | KangIngu | </identity> |
49 | </endpoint> |
||
50 | 684ef11c | ljiyeon | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
51 | 787a4489 | KangIngu | </service> |
52 | </services> |
||
53 | </system.serviceModel> |
||
54 | <system.webServer> |
||
55 | <validation validateIntegratedModeConfiguration="false"/> |
||
56 | </system.webServer> |
||
57 | a874198d | humkyung | <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 | 684ef11c | ljiyeon | </configuration> |