markus / KCOM_API / Web.config @ 1d79913e
이력 | 보기 | 이력해설 | 다운로드 (6.22 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 | ff01c725 | humkyung | <connectionStrings> |
15 | a1142a6b | taeseongkim | <add name="ConnectionString" |
16 | 1d79913e | 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="data source=192.168.0.67;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework"" |
17 | a1142a6b | taeseongkim | providerName="System.Data.EntityClient"/> |
18 | <add name="CIConnectionString" |
||
19 | 1d79913e | 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="data source=192.168.0.67;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework"" |
20 | a1142a6b | taeseongkim | providerName="System.Data.EntityClient"/> |
21 | ff01c725 | humkyung | </connectionStrings> |
22 | 684ef11c | ljiyeon | <!-- |
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 | 787a4489 | KangIngu | <system.web> |
31 | a7bee7cf | taeseongkim | <httpRuntime executionTimeout="600"/> |
32 | a1142a6b | taeseongkim | <compilation targetFramework="4.5" debug="true"/> |
33 | 787a4489 | KangIngu | <pages controlRenderingCompatibilityVersion="4.0"/> |
34 | cf1cc862 | taeseongkim | <globalization requestEncoding="utf-8" responseEncoding="utf-8"/> |
35 | <httpModules> |
||
36 | <add name="ServiceRedirector" type="KCOM_API.ServiceRedirector"/> |
||
37 | </httpModules> |
||
38 | 787a4489 | KangIngu | </system.web> |
39 | 684ef11c | ljiyeon | <system.serviceModel> |
40 | a7bee7cf | taeseongkim | <!--<diagnostics wmiProviderEnabled="true" performanceCounters="Default"> |
41 | c8dd192f | taeseongkim | <messageLogging logEntireMessage="true" logMalformedMessages="true" |
42 | logMessagesAtTransportLevel="true" /> |
||
43 | <endToEndTracing activityTracing="true" messageFlowTracing="true" /> |
||
44 | a7bee7cf | taeseongkim | </diagnostics>--> |
45 | 4fcb686a | taeseongkim | <diagnostics performanceCounters="Default"/> |
46 | 787a4489 | KangIngu | <behaviors> |
47 | c517099d | taeseongkim | <endpointBehaviors> |
48 | <behavior name="WebHttpBehavior"> |
||
49 | a1142a6b | taeseongkim | <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json"/> |
50 | c517099d | taeseongkim | </behavior> |
51 | </endpointBehaviors> |
||
52 | 787a4489 | KangIngu | <serviceBehaviors> |
53 | <behavior name="KCOM_API.SilverlightServiceBehavior"> |
||
54 | a1142a6b | taeseongkim | <serviceMetadata httpGetEnabled="true"/> |
55 | <serviceDebug includeExceptionDetailInFaults="false"/> |
||
56 | <dataContractSerializer maxItemsInObjectGraph="2147483647"/> |
||
57 | c517099d | taeseongkim | </behavior> |
58 | <behavior name=""> |
||
59 | a1142a6b | taeseongkim | <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/> |
60 | <serviceDebug includeExceptionDetailInFaults="false"/> |
||
61 | 787a4489 | KangIngu | </behavior> |
62 | </serviceBehaviors> |
||
63 | </behaviors> |
||
64 | a1142a6b | taeseongkim | <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/> |
65 | 787a4489 | KangIngu | <bindings> |
66 | <basicHttpBinding> |
||
67 | 4fcb686a | taeseongkim | <binding name="LargeBuffer" closeTimeout="00:30:00" openTimeout="00:30:00" receiveTimeout="04:30:00" sendTimeout="04:30:00" maxBufferSize="2147483647" |
68 | c8dd192f | taeseongkim | maxReceivedMessageSize="2147483647"> |
69 | 4fcb686a | taeseongkim | <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" |
70 | maxNameTableCharCount="2147483647"/> |
||
71 | 787a4489 | KangIngu | </binding> |
72 | </basicHttpBinding> |
||
73 | c8dd192f | taeseongkim | <wsHttpBinding> |
74 | 4fcb686a | taeseongkim | <binding name="wsHttpBinding" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"> |
75 | <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" |
||
76 | maxNameTableCharCount="2147483647"/> |
||
77 | c8dd192f | taeseongkim | <security mode="Transport"> |
78 | <transport clientCredentialType="None"/> |
||
79 | </security> |
||
80 | </binding> |
||
81 | </wsHttpBinding> |
||
82 | 787a4489 | KangIngu | </bindings> |
83 | <services> |
||
84 | 4fcb686a | taeseongkim | <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" name="KCOM_API.ServiceDeepView"> |
85 | <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"> |
||
86 | 787a4489 | KangIngu | <identity> |
87 | 4fcb686a | taeseongkim | <dns value="localhost"/> |
88 | 787a4489 | KangIngu | </identity> |
89 | </endpoint> |
||
90 | 4fcb686a | taeseongkim | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
91 | a7bee7cf | taeseongkim | <host> |
92 | 4fcb686a | taeseongkim | <timeouts closeTimeout="00:30:00" openTimeout="00:30:00"/> |
93 | a7bee7cf | taeseongkim | </host> |
94 | c517099d | taeseongkim | </service> |
95 | <service name="KCOM_API.MarkusService"> |
||
96 | 4fcb686a | taeseongkim | <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 | 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 | 1d79913e | taeseongkim | <value>tcp://localhost:9092/remFinalPDF</value> |
121 | 782ad7b1 | taeseongkim | </setting> |
122 | a874198d | humkyung | </KCOM_API.Properties.Settings> |
123 | </applicationSettings> |
||
124 | 684ef11c | ljiyeon | </configuration> |