프로젝트

일반

사용자정보

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

markus / KCOM_API / Web.config @ ff01c725

이력 | 보기 | 이력해설 | 다운로드 (5.04 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
  <connectionStrings>
13
    <add name="ConnectionString" connectionString="metadata=res://*/DataModel.KCOM_Model.csdl|res://*/DataModel.KCOM_Model.ssdl|res://*/DataModel.KCOM_Model.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=DESKTOP-DOUFJUT;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
14
    <add name="CIConnectionString" connectionString="metadata=res://*/DataModel.CIModel.csdl|res://*/DataModel.CIModel.ssdl|res://*/DataModel.CIModel.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=DESKTOP-DOUFJUT;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
15
  </connectionStrings>
16
  
17
  <!--
18
    web.config 변경 내용에 대한 설명은  http://go.microsoft.com/fwlink/?LinkId=235367을 참고하십시오.
19

    
20
    다음 특성은 <httpRuntime> 태그에 설정할 수 있습니다.
21
      <system.Web>
22
        <httpRuntime targetFramework="4.5" />
23
      </system.Web>
24
  -->
25
  <system.web>
26
    <compilation debug="true" targetFramework="4.5"/>
27
    <pages controlRenderingCompatibilityVersion="4.0"/>
28
  </system.web>
29
  <system.serviceModel>
30
    <diagnostics wmiProviderEnabled="true">
31
      <messageLogging logEntireMessage="true" logMalformedMessages="true"
32
        logMessagesAtTransportLevel="true" />
33
      <endToEndTracing activityTracing="true" messageFlowTracing="true" />
34
    </diagnostics>
35
    <behaviors>
36
      <endpointBehaviors>
37
        <behavior name="WebHttpBehavior">
38
          <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json" />
39
        </behavior>
40
      </endpointBehaviors>
41
      <serviceBehaviors>
42
        <behavior name="KCOM_API.SilverlightServiceBehavior">
43
          <serviceMetadata httpGetEnabled="true" />
44
          <serviceDebug includeExceptionDetailInFaults="false" />
45
          <dataContractSerializer maxItemsInObjectGraph="2147483647" />
46
        </behavior>
47
        <behavior name="">
48
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
49
          <serviceDebug includeExceptionDetailInFaults="false" />
50
        </behavior>
51
      </serviceBehaviors>
52
    </behaviors>
53
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"
54
      multipleSiteBindingsEnabled="true" />
55
    <bindings>
56
      <basicHttpBinding>
57
        <binding name="LargeBuffer" receiveTimeout="04:30:00" openTimeout="00:30:00" sendTimeout="04:30:00" closeTimeout="00:30:00" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
58
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
59
        </binding>
60
      </basicHttpBinding>
61
    </bindings>
62
    <services>
63
      <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"
64
        name="KCOM_API.ServiceDeepView">
65
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer"
66
          name="DeepViewPoint" contract="KCOM_API.ServiceDeepView">
67
          <identity>
68
            <dns value="localhost" />
69
          </identity>
70
        </endpoint>
71
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
72
      </service>
73
      <service name="KCOM_API.MarkusService">
74
        <endpoint address="Rest" behaviorConfiguration="WebHttpBehavior"
75
          binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint"
76
          contract="KCOM_API.MarkusService" />
77
        <endpoint binding="basicHttpBinding" bindingConfiguration=""
78
          name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService" />
79
      </service>
80
    </services>
81
  </system.serviceModel>
82
  <system.webServer>
83
    <validation validateIntegratedModeConfiguration="false"/>
84
  </system.webServer>
85
  <applicationSettings>
86
    <KCOM_API.Properties.Settings>
87
      <setting name="TileSoucePath" serializeAs="String">
88
        <value>http://localhost/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
89
      </setting>
90
      <setting name="TileSoucePath_SUB" serializeAs="String">
91
        <value>http://localhost/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
92
      </setting>
93
    </KCOM_API.Properties.Settings>
94
  </applicationSettings>
95
</configuration>
클립보드 이미지 추가 (최대 크기: 500 MB)