프로젝트

일반

사용자정보

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

markus / KCOM_API / Web.config @ a7bee7cf

이력 | 보기 | 이력해설 | 다운로드 (6.28 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"
14
      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=192.168.0.67;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;"
15
      providerName="System.Data.EntityClient"/>
16
    <add name="CIConnectionString"
17
      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=192.168.0.67;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;"
18
      providerName="System.Data.EntityClient"/>
19
  </connectionStrings>
20
  <!--
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
  <system.web>
29
    <httpRuntime executionTimeout="600"/>
30
    <compilation targetFramework="4.5" debug="true"/>
31
    <pages controlRenderingCompatibilityVersion="4.0"/>
32
    <globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
33
	  <httpModules>
34
		  <add name="ServiceRedirector" type="KCOM_API.ServiceRedirector"/>
35
	  </httpModules>
36
  </system.web>
37
  <system.serviceModel>
38
    <!--<diagnostics wmiProviderEnabled="true" performanceCounters="Default">
39
      <messageLogging logEntireMessage="true" logMalformedMessages="true"
40
        logMessagesAtTransportLevel="true" />
41
      <endToEndTracing activityTracing="true" messageFlowTracing="true" />
42
    </diagnostics>-->
43
    <diagnostics performanceCounters="Default" />
44
    <behaviors>
45
      <endpointBehaviors>
46
        <behavior name="WebHttpBehavior">
47
          <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json"/>
48
        </behavior>
49
      </endpointBehaviors>
50
      <serviceBehaviors>
51
        <behavior name="KCOM_API.SilverlightServiceBehavior">
52
          <serviceMetadata httpGetEnabled="true"/>
53
          <serviceDebug includeExceptionDetailInFaults="false"/>
54
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
55
        </behavior>
56
        <behavior name="">
57
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
58
          <serviceDebug includeExceptionDetailInFaults="false"/>
59
        </behavior>
60
      </serviceBehaviors>
61
    </behaviors>
62
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
63
    <bindings>
64
      <basicHttpBinding>
65
        <binding name="LargeBuffer" closeTimeout="00:30:00" openTimeout="00:30:00"
66
          receiveTimeout="04:30:00" sendTimeout="04:30:00" maxBufferSize="2147483647"
67
          maxReceivedMessageSize="2147483647">
68
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
69
            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
70
        </binding>
71
      </basicHttpBinding>
72
      <wsHttpBinding>
73
        <binding name="wsHttpBinding" maxBufferPoolSize="2147483647"
74
          maxReceivedMessageSize="2147483647">
75
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
76
            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
77
          <security mode="Transport">
78
            <transport clientCredentialType="None"/>
79
          </security>
80
        </binding>
81
      </wsHttpBinding>
82
    </bindings>
83
    <services>
84
      <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"
85
        name="KCOM_API.ServiceDeepView">
86
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer"
87
          name="DeepViewPoint" contract="KCOM_API.ServiceDeepView">
88
          <identity>
89
            <dns value="localhost" />
90
          </identity>
91
        </endpoint>
92
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
93
        <host>
94
          <timeouts closeTimeout="00:30:00" openTimeout="00:30:00" />
95
        </host>
96
      </service>
97
      <service name="KCOM_API.MarkusService">
98
        <endpoint address="Rest" behaviorConfiguration="WebHttpBehavior"
99
          binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint"
100
          contract="KCOM_API.MarkusService" />
101
        <endpoint binding="basicHttpBinding" bindingConfiguration=""
102
          name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService" />
103
      </service>
104
    </services>
105
  </system.serviceModel>
106
  <system.webServer>
107
    <validation validateIntegratedModeConfiguration="false"/>
108
	  <modules>
109
		  <add name="ServiceRedirector" type="KCOM_API.ServiceRedirector"/>
110
	  </modules>
111
  </system.webServer>
112
  <applicationSettings>
113
    <KCOM_API.Properties.Settings>
114
      <setting name="TileSoucePath" serializeAs="String">
115
        <value>http://192.168.0.67:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
116
      </setting>
117
      <setting name="TileSoucePath_SUB" serializeAs="String">
118
        <value>http://192.168.0.67:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
119
      </setting>
120
      <setting name="IsProjectNoPass" serializeAs="String">
121
        <value>True</value>
122
      </setting>
123
      <setting name="FinalService" serializeAs="String">
124
        <value>tcp://localhost:9092/remFinalPDF</value>
125
      </setting>
126
    </KCOM_API.Properties.Settings>
127
  </applicationSettings>
128
</configuration>
클립보드 이미지 추가 (최대 크기: 500 MB)