markus / KCOM_API / Web.config @ b42dd24d
이력 | 보기 | 이력해설 | 다운로드 (5.91 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 | b42dd24d | 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"" |
15 | a1142a6b | taeseongkim | providerName="System.Data.EntityClient"/> |
16 | <add name="CIConnectionString" |
||
17 | b42dd24d | 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"" |
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 | a1142a6b | taeseongkim | <compilation targetFramework="4.5" debug="true"/> |
30 | 787a4489 | KangIngu | <pages controlRenderingCompatibilityVersion="4.0"/> |
31 | c206d293 | taeseongkim | <globalization |
32 | requestEncoding="utf-8" |
||
33 | responseEncoding="utf-8" |
||
34 | /> |
||
35 | 787a4489 | KangIngu | </system.web> |
36 | 684ef11c | ljiyeon | <system.serviceModel> |
37 | c8dd192f | taeseongkim | <diagnostics wmiProviderEnabled="true" performanceCounters="Default"> |
38 | <messageLogging logEntireMessage="true" logMalformedMessages="true" |
||
39 | logMessagesAtTransportLevel="true" /> |
||
40 | <endToEndTracing activityTracing="true" messageFlowTracing="true" /> |
||
41 | ff01c725 | humkyung | </diagnostics> |
42 | 787a4489 | KangIngu | <behaviors> |
43 | c517099d | taeseongkim | <endpointBehaviors> |
44 | <behavior name="WebHttpBehavior"> |
||
45 | a1142a6b | taeseongkim | <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json"/> |
46 | c517099d | taeseongkim | </behavior> |
47 | </endpointBehaviors> |
||
48 | 787a4489 | KangIngu | <serviceBehaviors> |
49 | <behavior name="KCOM_API.SilverlightServiceBehavior"> |
||
50 | a1142a6b | taeseongkim | <serviceMetadata httpGetEnabled="true"/> |
51 | <serviceDebug includeExceptionDetailInFaults="false"/> |
||
52 | <dataContractSerializer maxItemsInObjectGraph="2147483647"/> |
||
53 | c517099d | taeseongkim | </behavior> |
54 | <behavior name=""> |
||
55 | a1142a6b | taeseongkim | <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/> |
56 | <serviceDebug includeExceptionDetailInFaults="false"/> |
||
57 | 787a4489 | KangIngu | </behavior> |
58 | </serviceBehaviors> |
||
59 | </behaviors> |
||
60 | a1142a6b | taeseongkim | <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/> |
61 | 787a4489 | KangIngu | <bindings> |
62 | <basicHttpBinding> |
||
63 | c8dd192f | taeseongkim | <binding name="LargeBuffer" closeTimeout="00:30:00" openTimeout="00:30:00" |
64 | receiveTimeout="04:30:00" sendTimeout="04:30:00" maxBufferSize="2147483647" |
||
65 | maxReceivedMessageSize="2147483647"> |
||
66 | <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" |
||
67 | maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> |
||
68 | 787a4489 | KangIngu | </binding> |
69 | </basicHttpBinding> |
||
70 | c8dd192f | taeseongkim | <wsHttpBinding> |
71 | <binding name="wsHttpBinding" maxBufferPoolSize="2147483647" |
||
72 | maxReceivedMessageSize="2147483647"> |
||
73 | <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" |
||
74 | maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> |
||
75 | <security mode="Transport"> |
||
76 | <transport clientCredentialType="None"/> |
||
77 | </security> |
||
78 | </binding> |
||
79 | </wsHttpBinding> |
||
80 | 787a4489 | KangIngu | </bindings> |
81 | <services> |
||
82 | c8dd192f | taeseongkim | <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" |
83 | name="KCOM_API.ServiceDeepView"> |
||
84 | d60f94ee | taeseongkim | <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" |
85 | c8dd192f | taeseongkim | name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"> |
86 | 787a4489 | KangIngu | <identity> |
87 | c8dd192f | taeseongkim | <dns value="localhost" /> |
88 | 787a4489 | KangIngu | </identity> |
89 | </endpoint> |
||
90 | c8dd192f | taeseongkim | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
91 | c517099d | taeseongkim | </service> |
92 | <service name="KCOM_API.MarkusService"> |
||
93 | c8dd192f | taeseongkim | <endpoint address="Rest" behaviorConfiguration="WebHttpBehavior" |
94 | binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint" |
||
95 | contract="KCOM_API.MarkusService" /> |
||
96 | <endpoint binding="basicHttpBinding" bindingConfiguration="" |
||
97 | name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService" /> |
||
98 | 787a4489 | KangIngu | </service> |
99 | </services> |
||
100 | </system.serviceModel> |
||
101 | <system.webServer> |
||
102 | <validation validateIntegratedModeConfiguration="false"/> |
||
103 | </system.webServer> |
||
104 | a874198d | humkyung | <applicationSettings> |
105 | <KCOM_API.Properties.Settings> |
||
106 | <setting name="TileSoucePath" serializeAs="String"> |
||
107 | d60f94ee | taeseongkim | <value>http://192.168.0.67:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
108 | a874198d | humkyung | </setting> |
109 | <setting name="TileSoucePath_SUB" serializeAs="String"> |
||
110 | d60f94ee | taeseongkim | <value>http://192.168.0.67:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
111 | a1142a6b | taeseongkim | </setting> |
112 | f2c3d74c | taeseongkim | <setting name="IsProjectNoPass" serializeAs="String"> |
113 | <value>True</value> |
||
114 | a874198d | humkyung | </setting> |
115 | 782ad7b1 | taeseongkim | <setting name="FinalService" serializeAs="String"> |
116 | b42dd24d | taeseongkim | <value>tcp://localhost:9092/remFinalPDF</value> |
117 | 782ad7b1 | taeseongkim | </setting> |
118 | a874198d | humkyung | </KCOM_API.Properties.Settings> |
119 | </applicationSettings> |
||
120 | 684ef11c | ljiyeon | </configuration> |