프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / KCOM_API / Web.config @ 8b52c487

이력 | 보기 | 이력해설 | 다운로드 (3.1 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
  <system.serviceModel>
17
    <!--<behaviors>
18
      <serviceBehaviors>
19
        <behavior name="">
20
          <serviceMetadata httpGetEnabled="true"/>
21
          <serviceDebug includeExceptionDetailInFaults="false"/>
22
        </behavior>
23
      </serviceBehaviors>
24
    </behaviors>-->
25
    <behaviors>
26
      <serviceBehaviors>
27
        <behavior name="KCOM_API.SilverlightServiceBehavior">
28
          <serviceMetadata httpGetEnabled="true" />
29
          <serviceDebug includeExceptionDetailInFaults="false" />
30
          <!--Jaedoo 최소용량때문에 추가한거임-->
31
          <dataContractSerializer maxItemsInObjectGraph="6553600"/>
32
        </behavior>
33
      </serviceBehaviors>
34
    </behaviors>
35
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
36
    <bindings>
37
      <basicHttpBinding>
38
        <binding name="LargeBuffer" receiveTimeout="00:30:00" openTimeout="00:30:00" sendTimeout="00:30:00"
39
                       closeTimeout="00:30:00"
40
                      maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
41
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647"
42
                        maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
43
44
        </binding>
45
      </basicHttpBinding>
46
    </bindings>
47
    <services>
48
      <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" name="KCOM_API.ServiceDeepView">
49
        <endpoint address=""  binding="basicHttpBinding" bindingConfiguration="LargeBuffer" name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"  >
50
          <identity>
51
            <dns value="localhost" />
52
          </identity>
53
        </endpoint>
54
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
55
      </service>
56
    </services>
57
  </system.serviceModel>
58
  <system.webServer>
59
    <validation validateIntegratedModeConfiguration="false"/>
60
  </system.webServer>
61 a874198d humkyung
  <applicationSettings>
62
    <KCOM_API.Properties.Settings>
63
      <setting name="TileSoucePath" serializeAs="String">
64
        <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
65
      </setting>
66
      <setting name="TileSoucePath_SUB" serializeAs="String">
67
        <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
68
      </setting>
69
    </KCOM_API.Properties.Settings>
70
  </applicationSettings>
71
</configuration>
클립보드 이미지 추가 (최대 크기: 500 MB)