프로젝트

일반

사용자정보

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

markus / KCOM_API / Web.config @ a5b2c76f

이력 | 보기 | 이력해설 | 다운로드 (4.01 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
      <endpointBehaviors>
27
        <behavior name="WebHttpBehavior">
28
          <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json" />
29
        </behavior>
30
      </endpointBehaviors>
31
      <serviceBehaviors>
32
        <behavior name="KCOM_API.SilverlightServiceBehavior">
33
          <serviceMetadata httpGetEnabled="true" />
34
          <serviceDebug includeExceptionDetailInFaults="false" />
35
          <dataContractSerializer maxItemsInObjectGraph="2147483647" />
36
        </behavior>
37
        <behavior name="">
38
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
39
          <serviceDebug includeExceptionDetailInFaults="false" />
40
        </behavior>
41
      </serviceBehaviors>
42
    </behaviors>
43
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"
44
      multipleSiteBindingsEnabled="true" />
45
    <bindings>
46
      <basicHttpBinding>
47
        <binding name="LargeBuffer" receiveTimeout="04:30:00" openTimeout="00:30:00" sendTimeout="04:30:00" closeTimeout="00:30:00" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
48
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
49
        </binding>
50
      </basicHttpBinding>
51
    </bindings>
52
    <services>
53
      <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"
54
        name="KCOM_API.ServiceDeepView">
55
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer"
56
          name="DeepViewPoint" contract="KCOM_API.ServiceDeepView">
57
          <identity>
58
            <dns value="localhost" />
59
          </identity>
60
        </endpoint>
61
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
62
      </service>
63
      <service name="KCOM_API.PemssService" behaviorConfiguration="KCOM_API.SilverlightServiceBehavior">
64
        <endpoint binding="basicHttpBinding" bindingConfiguration=""
65
          name="MarkusServiceEndPoint" contract="KCOM_API.PemssService">
66
          <identity>
67
            <dns value="localhost" />
68
          </identity>
69
        </endpoint>
70
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
71
      </service>
72
    </services>
73
  </system.serviceModel>
74
  <system.webServer>
75
    <validation validateIntegratedModeConfiguration="false"/>
76
  </system.webServer>
77
  <applicationSettings>
78
    <KCOM_API.Properties.Settings>
79
      <setting name="TileSoucePath" serializeAs="String">
80
        <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
81
      </setting>
82
      <setting name="TileSoucePath_SUB" serializeAs="String">
83
        <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
84
      </setting>
85
      <setting name="PEMSS_URL" serializeAs="String">
86
        <value>http://pemss.i-on.net</value>
87
      </setting>
88
    </KCOM_API.Properties.Settings>
89
  </applicationSettings>
90
</configuration>
클립보드 이미지 추가 (최대 크기: 500 MB)