프로젝트

일반

사용자정보

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

markus / KCOM_API / Web.config @ 2ab0c838

이력 | 보기 | 이력해설 | 다운로드 (3.87 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 c517099d taeseongkim
      <endpointBehaviors>
27
        <behavior name="WebHttpBehavior">
28
          <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json" />
29
        </behavior>
30
      </endpointBehaviors>
31 787a4489 KangIngu
      <serviceBehaviors>
32
        <behavior name="KCOM_API.SilverlightServiceBehavior">
33 c517099d taeseongkim
          <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 787a4489 KangIngu
        </behavior>
41
      </serviceBehaviors>
42
    </behaviors>
43 c517099d taeseongkim
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"
44
      multipleSiteBindingsEnabled="true" />
45 787a4489 KangIngu
    <bindings>
46
      <basicHttpBinding>
47 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">
48
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
49 787a4489 KangIngu
        </binding>
50
      </basicHttpBinding>
51
    </bindings>
52
    <services>
53 c517099d taeseongkim
      <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 787a4489 KangIngu
          <identity>
58 c517099d taeseongkim
            <dns value="localhost" />
59 787a4489 KangIngu
          </identity>
60
        </endpoint>
61 c517099d taeseongkim
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
62
      </service>
63
      <service name="KCOM_API.MarkusService">
64
        <endpoint address="Rest" behaviorConfiguration="WebHttpBehavior"
65
          binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint"
66
          contract="KCOM_API.MarkusService" />
67
        <endpoint binding="basicHttpBinding" bindingConfiguration=""
68
          name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService" />
69 787a4489 KangIngu
      </service>
70
    </services>
71
  </system.serviceModel>
72
  <system.webServer>
73
    <validation validateIntegratedModeConfiguration="false"/>
74
  </system.webServer>
75 a874198d humkyung
  <applicationSettings>
76
    <KCOM_API.Properties.Settings>
77
      <setting name="TileSoucePath" serializeAs="String">
78
        <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
79
      </setting>
80
      <setting name="TileSoucePath_SUB" serializeAs="String">
81
        <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
82
      </setting>
83
    </KCOM_API.Properties.Settings>
84
  </applicationSettings>
85 684ef11c ljiyeon
</configuration>
클립보드 이미지 추가 (최대 크기: 500 MB)