프로젝트

일반

사용자정보

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

markus / KCOM_API / Web.config @ 38d69491

이력 | 보기 | 이력해설 | 다운로드 (9.13 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 4fcb686a taeseongkim
    <sectionGroup name="applicationSettings"
9
      type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
10
      <section name="KCOM_API.Properties.Settings"
11
        type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
12 a874198d humkyung
    </sectionGroup>
13
  </configSections>
14 5c64268e taeseongkim
  <!--<system.diagnostics>
15
    <sources>
16
      <source name="System.ServiceModel.MessageLogging" switchValue="자세히,ActivityTracing">
17
        <listeners>
18
          <add type="System.Diagnostics.DefaultTraceListener" name="Default">
19
            <filter type=""/>
20
          </add>
21
          <add name="ServiceModelMessageLoggingListener">
22
            <filter type=""/>
23
          </add>
24
        </listeners>
25
      </source>
26
      <source propagateActivity="true" name="System.ServiceModel" switchValue="자세히,ActivityTracing">
27
        <listeners>
28
          <add type="System.Diagnostics.DefaultTraceListener" name="Default">
29
            <filter type=""/>
30
          </add>
31
          <add name="ServiceModelTraceListener">
32
            <filter type=""/>
33
          </add>
34
        </listeners>
35
      </source>
36
    </sources>
37
    <sharedListeners>
38
      <add initializeData="d:\source\repos\markus\kcom_api\web_messages.svclog"
39
        type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
40
        name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp">
41
        <filter type=""/>
42
      </add>
43
      <add initializeData="d:\source\repos\markus\kcom_api\web_tracelog.svclog"
44
        type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
45
        name="ServiceModelTraceListener" traceOutputOptions="Timestamp">
46
        <filter type=""/>
47
      </add>
48
    </sharedListeners>
49
    <trace autoflush="false"/>
50
  </system.diagnostics>-->
51 ff01c725 humkyung
  <connectionStrings>
52 38d69491 taeseongkim
    <!--효성 Connection String-->
53 a1142a6b taeseongkim
    <add name="ConnectionString"
54 38d69491 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=10.10.130.11,14950;initial catalog=markus;persist security info=True;user id=doftech;password=gasadmin1!;multipleactiveresultsets=True;App=EntityFramework&quot;"
55 a1142a6b taeseongkim
      providerName="System.Data.EntityClient"/>
56
    <add name="CIConnectionString"
57 38d69491 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=10.10.130.11,14950;initial catalog=markus;persist security info=True;user id=doftech;password=gasadmin1!;multipleactiveresultsets=True;App=EntityFramework&quot;"
58 a1142a6b taeseongkim
      providerName="System.Data.EntityClient"/>
59 ff01c725 humkyung
  </connectionStrings>
60 684ef11c ljiyeon
  <!--
61
    web.config 변경 내용에 대한 설명은  http://go.microsoft.com/fwlink/?LinkId=235367을 참고하십시오.
62
63
    다음 특성은 <httpRuntime> 태그에 설정할 수 있습니다.
64
      <system.Web>
65
        <httpRuntime targetFramework="4.5" />
66
      </system.Web>
67
  -->
68 787a4489 KangIngu
  <system.web>
69 6a19b48d taeseongkim
    <!--<httpRuntime executionTimeout="600"/>-->
70 a1142a6b taeseongkim
    <compilation targetFramework="4.5" debug="true"/>
71 2b1f30fe taeseongkim
    <!--<pages controlRenderingCompatibilityVersion="4.0"/>-->
72 cf1cc862 taeseongkim
    <globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
73 6a19b48d taeseongkim
	  <!--<httpModules>
74 cf1cc862 taeseongkim
		  <add name="ServiceRedirector" type="KCOM_API.ServiceRedirector"/>
75 6a19b48d taeseongkim
	  </httpModules>-->
76 787a4489 KangIngu
  </system.web>
77 2b1f30fe taeseongkim
  <system.webServer>
78 66bd3240 taeseongkim
	  <!--<modules>
79
		  <add name="SessionEndModule" type="Markus.AddressModule"/>
80
	  </modules>-->
81 2b1f30fe taeseongkim
	  <handlers>
82
		  <add name="ImageHandler1" type="Markus.ImageHandler" verb="*" path="Authenticate"/>
83
		  <add name="ImageHandler2" type="Markus.ImageHandler" verb="*" path="*.png"/>
84
		  <add name="ImageHandler3" type="Markus.ImageHandler" verb="*" path="*.jpg"/>
85
		  <add name="ImageHandler4" type="Markus.ImageHandler" verb="*" path="*.pdf"/>
86
	  </handlers>
87
		<validation validateIntegratedModeConfiguration="false"/>
88
  </system.webServer>
89 684ef11c ljiyeon
  <system.serviceModel>
90 5c64268e taeseongkim
	<protocolMapping>
91
   <remove scheme="http"/>
92
   <add scheme="http" binding="basicHttpBinding" bindingConfiguration="LargeBuffer"/>
93
 </protocolMapping>
94
 <diagnostics wmiProviderEnabled="true" performanceCounters="All">
95
   <messageLogging logEntireMessage="true" logKnownPii="true" logMalformedMessages="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true"/>
96
   <endToEndTracing propagateActivity="true" activityTracing="true" messageFlowTracing="true"/>
97
 </diagnostics>
98
 <extensions>
99 6a19b48d taeseongkim
		  <bindingElementExtensions>
100
			  <add name="WcfExtension"
101 5c64268e taeseongkim
			    type="WcfExtensions.ServiceModel.Configuration.CompressionElement, WcfExtensions.ServiceModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/>
102 6a19b48d taeseongkim
		  </bindingElementExtensions>
103
	  </extensions>
104 a7bee7cf taeseongkim
    <!--<diagnostics wmiProviderEnabled="true" performanceCounters="Default">
105 c8dd192f taeseongkim
      <messageLogging logEntireMessage="true" logMalformedMessages="true"
106
        logMessagesAtTransportLevel="true" />
107
      <endToEndTracing activityTracing="true" messageFlowTracing="true" />
108 a7bee7cf taeseongkim
    </diagnostics>-->
109 6a19b48d taeseongkim
    <!--<diagnostics performanceCounters="Default"/>-->
110 787a4489 KangIngu
    <behaviors>
111 c517099d taeseongkim
      <endpointBehaviors>
112
        <behavior name="WebHttpBehavior">
113 a1142a6b taeseongkim
          <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json"/>
114 c517099d taeseongkim
        </behavior>
115
      </endpointBehaviors>
116 787a4489 KangIngu
      <serviceBehaviors>
117
        <behavior name="KCOM_API.SilverlightServiceBehavior">
118 a1142a6b taeseongkim
          <serviceMetadata httpGetEnabled="true"/>
119
          <serviceDebug includeExceptionDetailInFaults="false"/>
120
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
121 c517099d taeseongkim
        </behavior>
122
        <behavior name="">
123 a1142a6b taeseongkim
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
124
          <serviceDebug includeExceptionDetailInFaults="false"/>
125 787a4489 KangIngu
        </behavior>
126
      </serviceBehaviors>
127
    </behaviors>
128 a1142a6b taeseongkim
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
129 787a4489 KangIngu
    <bindings>
130
      <basicHttpBinding>
131 4fcb686a taeseongkim
        <binding name="LargeBuffer" closeTimeout="00:30:00" openTimeout="00:30:00" receiveTimeout="04:30:00" sendTimeout="04:30:00" maxBufferSize="2147483647"
132 c8dd192f taeseongkim
          maxReceivedMessageSize="2147483647">
133 4fcb686a taeseongkim
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647"
134
            maxNameTableCharCount="2147483647"/>
135 787a4489 KangIngu
        </binding>
136
      </basicHttpBinding>
137 5c64268e taeseongkim
      <customBinding>
138 6a19b48d taeseongkim
        <binding name="customCompressionBinding">
139 5c64268e taeseongkim
          <WcfExtension level="Fast"/>
140
          <httpTransport maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" requestInitializationTimeout="00:03:00" maxBufferSize="2147483647"/>
141 6a19b48d taeseongkim
        </binding>
142
      </customBinding>
143 787a4489 KangIngu
    </bindings>
144
    <services>
145 4fcb686a taeseongkim
      <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" name="KCOM_API.ServiceDeepView">
146 6a19b48d taeseongkim
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"/>
147 5c64268e taeseongkim
        <endpoint address="GZIP" binding="customBinding" bindingConfiguration="customCompressionBinding" name="MarkusAPIgzip"
148
          contract="KCOM_API.ServiceDeepView"/>
149 4fcb686a taeseongkim
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
150 c517099d taeseongkim
      </service>
151
      <service name="KCOM_API.MarkusService">
152 4fcb686a taeseongkim
        <endpoint address="Rest" behaviorConfiguration="WebHttpBehavior" binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint"
153
          contract="KCOM_API.MarkusService"/>
154
        <endpoint binding="basicHttpBinding" bindingConfiguration="" name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService"/>
155 787a4489 KangIngu
      </service>
156
    </services>
157
  </system.serviceModel>
158 6a19b48d taeseongkim
  <!--<system.webServer>
159 787a4489 KangIngu
    <validation validateIntegratedModeConfiguration="false"/>
160 cf1cc862 taeseongkim
	  <modules>
161
		  <add name="ServiceRedirector" type="KCOM_API.ServiceRedirector"/>
162
	  </modules>
163 6a19b48d taeseongkim
  </system.webServer>-->
164 2b1f30fe taeseongkim
	
165 5c64268e taeseongkim
	<system.net>
166
		<settings>
167
			<httpListener>
168
				<timeouts minSendBytesPerSecond="4294967295"/>
169
			</httpListener>
170
		</settings>
171
	</system.net>
172 a874198d humkyung
  <applicationSettings>
173
    <KCOM_API.Properties.Settings>
174
      <setting name="TileSoucePath" serializeAs="String">
175 38d69491 taeseongkim
        <value>http://10.10.130.12:8977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
176 a874198d humkyung
      </setting>
177
      <setting name="TileSoucePath_SUB" serializeAs="String">
178 38d69491 taeseongkim
        <value>http://10.10.130.12:8977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
179 a1142a6b taeseongkim
      </setting>
180 f2c3d74c taeseongkim
      <setting name="IsProjectNoPass" serializeAs="String">
181
        <value>True</value>
182 a874198d humkyung
      </setting>
183 782ad7b1 taeseongkim
      <setting name="FinalService" serializeAs="String">
184 38d69491 taeseongkim
        <value>tcp://localhost:9092/remFinalPDF</value>
185 782ad7b1 taeseongkim
      </setting>
186 a874198d humkyung
    </KCOM_API.Properties.Settings>
187
  </applicationSettings>
188 684ef11c ljiyeon
</configuration>
클립보드 이미지 추가 (최대 크기: 500 MB)