markus / KCOM_API / Web.config @ e3a15e22
이력 | 보기 | 이력해설 | 다운로드 (2.86 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 | <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 | 787a4489 | KangIngu | <system.web> |
13 | <compilation debug="true" targetFramework="4.0"/> |
||
14 | <pages controlRenderingCompatibilityVersion="4.0"/> |
||
15 | </system.web> |
||
16 | 2ab012e8 | djkim | <system.serviceModel> |
17 | 787a4489 | KangIngu | <behaviors> |
18 | <serviceBehaviors> |
||
19 | <behavior name="KCOM_API.SilverlightServiceBehavior"> |
||
20 | <serviceMetadata httpGetEnabled="true" /> |
||
21 | <serviceDebug includeExceptionDetailInFaults="false" /> |
||
22 | <!--Jaedoo 최소용량때문에 추가한거임--> |
||
23 | 2ab012e8 | djkim | <dataContractSerializer maxItemsInObjectGraph="2147483647"/> |
24 | 787a4489 | KangIngu | </behavior> |
25 | </serviceBehaviors> |
||
26 | </behaviors> |
||
27 | <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/> |
||
28 | <bindings> |
||
29 | <basicHttpBinding> |
||
30 | 2ab012e8 | djkim | <binding name="LargeBuffer" receiveTimeout="04:30:00" openTimeout="00:30:00" sendTimeout="04:30:00" |
31 | 787a4489 | KangIngu | closeTimeout="00:30:00" |
32 | maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"> |
||
33 | <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" |
||
34 | maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> |
||
35 | |||
36 | </binding> |
||
37 | </basicHttpBinding> |
||
38 | </bindings> |
||
39 | <services> |
||
40 | <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" name="KCOM_API.ServiceDeepView"> |
||
41 | <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" name="DeepViewPoint" contract="KCOM_API.ServiceDeepView" > |
||
42 | <identity> |
||
43 | <dns value="localhost" /> |
||
44 | </identity> |
||
45 | </endpoint> |
||
46 | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
||
47 | </service> |
||
48 | </services> |
||
49 | </system.serviceModel> |
||
50 | <system.webServer> |
||
51 | <validation validateIntegratedModeConfiguration="false"/> |
||
52 | </system.webServer> |
||
53 | a874198d | humkyung | <applicationSettings> |
54 | <KCOM_API.Properties.Settings> |
||
55 | <setting name="TileSoucePath" serializeAs="String"> |
||
56 | <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
||
57 | </setting> |
||
58 | <setting name="TileSoucePath_SUB" serializeAs="String"> |
||
59 | <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
||
60 | </setting> |
||
61 | </KCOM_API.Properties.Settings> |
||
62 | </applicationSettings> |
||
63 | </configuration> |