프로젝트

일반

사용자정보

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

markus / KCOM_API / Web.config @ 77cdac33

이력 | 보기 | 이력해설 | 다운로드 (6.11 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 ff01c725 humkyung
  <connectionStrings>
13 a1142a6b taeseongkim
    <add name="ConnectionString"
14 77cdac33 taeseongkim
      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=cloud.devdoftech.co.kr,7777;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;"
15 a1142a6b taeseongkim
      providerName="System.Data.EntityClient"/>
16
    <add name="CIConnectionString"
17 77cdac33 taeseongkim
      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=cloud.devdoftech.co.kr,7777;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;"
18 a1142a6b taeseongkim
      providerName="System.Data.EntityClient"/>
19 ff01c725 humkyung
  </connectionStrings>
20 684ef11c ljiyeon
  <!--
21
    web.config 변경 내용에 대한 설명은  http://go.microsoft.com/fwlink/?LinkId=235367을 참고하십시오.
22
23
    다음 특성은 <httpRuntime> 태그에 설정할 수 있습니다.
24
      <system.Web>
25
        <httpRuntime targetFramework="4.5" />
26
      </system.Web>
27
  -->
28 787a4489 KangIngu
  <system.web>
29 cf1cc862 taeseongkim
30 a1142a6b taeseongkim
    <compilation targetFramework="4.5" debug="true"/>
31 787a4489 KangIngu
    <pages controlRenderingCompatibilityVersion="4.0"/>
32 cf1cc862 taeseongkim
    <globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
33
	  <httpModules>
34
		  <add name="ServiceRedirector" type="KCOM_API.ServiceRedirector"/>
35
	  </httpModules>
36 787a4489 KangIngu
  </system.web>
37 684ef11c ljiyeon
  <system.serviceModel>
38 c8dd192f taeseongkim
    <diagnostics wmiProviderEnabled="true" performanceCounters="Default">
39
      <messageLogging logEntireMessage="true" logMalformedMessages="true"
40
        logMessagesAtTransportLevel="true" />
41
      <endToEndTracing activityTracing="true" messageFlowTracing="true" />
42 ff01c725 humkyung
    </diagnostics>
43 787a4489 KangIngu
    <behaviors>
44 c517099d taeseongkim
      <endpointBehaviors>
45
        <behavior name="WebHttpBehavior">
46 a1142a6b taeseongkim
          <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json"/>
47 c517099d taeseongkim
        </behavior>
48
      </endpointBehaviors>
49 787a4489 KangIngu
      <serviceBehaviors>
50
        <behavior name="KCOM_API.SilverlightServiceBehavior">
51 a1142a6b taeseongkim
          <serviceMetadata httpGetEnabled="true"/>
52
          <serviceDebug includeExceptionDetailInFaults="false"/>
53
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
54 c517099d taeseongkim
        </behavior>
55
        <behavior name="">
56 a1142a6b taeseongkim
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
57
          <serviceDebug includeExceptionDetailInFaults="false"/>
58 787a4489 KangIngu
        </behavior>
59
      </serviceBehaviors>
60
    </behaviors>
61 a1142a6b taeseongkim
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
62 787a4489 KangIngu
    <bindings>
63
      <basicHttpBinding>
64 c8dd192f taeseongkim
        <binding name="LargeBuffer" closeTimeout="00:30:00" openTimeout="00:30:00"
65
          receiveTimeout="04:30:00" sendTimeout="04:30:00" maxBufferSize="2147483647"
66
          maxReceivedMessageSize="2147483647">
67
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
68
            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
69 787a4489 KangIngu
        </binding>
70
      </basicHttpBinding>
71 c8dd192f taeseongkim
      <wsHttpBinding>
72
        <binding name="wsHttpBinding" maxBufferPoolSize="2147483647"
73
          maxReceivedMessageSize="2147483647">
74
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
75
            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
76
          <security mode="Transport">
77
            <transport clientCredentialType="None"/>
78
          </security>
79
        </binding>
80
      </wsHttpBinding>
81 787a4489 KangIngu
    </bindings>
82
    <services>
83 c8dd192f taeseongkim
      <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"
84
        name="KCOM_API.ServiceDeepView">
85 d60f94ee taeseongkim
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer"
86 c8dd192f taeseongkim
          name="DeepViewPoint" contract="KCOM_API.ServiceDeepView">
87 787a4489 KangIngu
          <identity>
88 c8dd192f taeseongkim
            <dns value="localhost" />
89 787a4489 KangIngu
          </identity>
90
        </endpoint>
91 c8dd192f taeseongkim
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
92 c517099d taeseongkim
      </service>
93
      <service name="KCOM_API.MarkusService">
94 c8dd192f taeseongkim
        <endpoint address="Rest" behaviorConfiguration="WebHttpBehavior"
95
          binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint"
96
          contract="KCOM_API.MarkusService" />
97
        <endpoint binding="basicHttpBinding" bindingConfiguration=""
98
          name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService" />
99 787a4489 KangIngu
      </service>
100
    </services>
101
  </system.serviceModel>
102
  <system.webServer>
103
    <validation validateIntegratedModeConfiguration="false"/>
104 cf1cc862 taeseongkim
	  <modules>
105
		  <add name="ServiceRedirector" type="KCOM_API.ServiceRedirector"/>
106
	  </modules>
107 787a4489 KangIngu
  </system.webServer>
108 a874198d humkyung
  <applicationSettings>
109
    <KCOM_API.Properties.Settings>
110
      <setting name="TileSoucePath" serializeAs="String">
111 d60f94ee taeseongkim
        <value>http://192.168.0.67:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
112 a874198d humkyung
      </setting>
113
      <setting name="TileSoucePath_SUB" serializeAs="String">
114 d60f94ee taeseongkim
        <value>http://192.168.0.67:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
115 a1142a6b taeseongkim
      </setting>
116 f2c3d74c taeseongkim
      <setting name="IsProjectNoPass" serializeAs="String">
117
        <value>True</value>
118 a874198d humkyung
      </setting>
119 782ad7b1 taeseongkim
      <setting name="FinalService" serializeAs="String">
120 77cdac33 taeseongkim
        <value>tcp://localhost:9093/remFinalPDF</value>
121 782ad7b1 taeseongkim
      </setting>
122 a874198d humkyung
    </KCOM_API.Properties.Settings>
123
  </applicationSettings>
124 684ef11c ljiyeon
</configuration>
클립보드 이미지 추가 (최대 크기: 500 MB)