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