markus / KCOM_API / Web.config @ 86dbd85c
이력 | 보기 | 이력해설 | 다운로드 (4.92 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 |
<!-- |
13 |
web.config 변경 내용에 대한 설명은 http://go.microsoft.com/fwlink/?LinkId=235367을 참고하십시오. |
14 |
|
15 |
다음 특성은 <httpRuntime> 태그에 설정할 수 있습니다. |
16 |
<system.Web> |
17 |
<httpRuntime targetFramework="4.5" /> |
18 |
</system.Web> |
19 |
--> |
20 |
<connectionStrings> |
21 |
<add name="ConnectionString" connectionString="metadata=res://*/DataModel.KCOM_Model.csdl|res://*/DataModel.KCOM_Model.ssdl|res://*/DataModel.KCOM_Model.msl;provider=System.Data.SqlClient;provider connection string="data source=localhost;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;application name=EntityFramework"" |
22 |
providerName="System.Data.SqlClient" /> |
23 |
<add name="CIConnectionString" connectionString="metadata=res://*/DataModel.CIModel.csdl|res://*/DataModel.CIModel.ssdl|res://*/DataModel.CIModel.msl;provider=System.Data.SqlClient;provider connection string="data source=localhost;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;application name=EntityFramework"" |
24 |
providerName="System.Data.SqlClient" /> |
25 |
</connectionStrings> |
26 |
<system.web> |
27 |
<compilation debug="true" targetFramework="4.5"/> |
28 |
<pages controlRenderingCompatibilityVersion="4.0"/> |
29 |
</system.web> |
30 |
<system.serviceModel> |
31 |
<behaviors> |
32 |
<endpointBehaviors> |
33 |
<behavior name="WebHttpBehavior"> |
34 |
<webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json" /> |
35 |
</behavior> |
36 |
</endpointBehaviors> |
37 |
<serviceBehaviors> |
38 |
<behavior name="KCOM_API.SilverlightServiceBehavior"> |
39 |
<serviceMetadata httpGetEnabled="true" /> |
40 |
<serviceDebug includeExceptionDetailInFaults="false" /> |
41 |
<dataContractSerializer maxItemsInObjectGraph="2147483647" /> |
42 |
</behavior> |
43 |
<behavior name=""> |
44 |
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" /> |
45 |
<serviceDebug includeExceptionDetailInFaults="false" /> |
46 |
</behavior> |
47 |
</serviceBehaviors> |
48 |
</behaviors> |
49 |
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" |
50 |
multipleSiteBindingsEnabled="true" /> |
51 |
<bindings> |
52 |
<basicHttpBinding> |
53 |
<binding name="LargeBuffer" receiveTimeout="04:30:00" openTimeout="00:30:00" sendTimeout="04:30:00" closeTimeout="00:30:00" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"> |
54 |
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/> |
55 |
</binding> |
56 |
</basicHttpBinding> |
57 |
</bindings> |
58 |
<services> |
59 |
<service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" |
60 |
name="KCOM_API.ServiceDeepView"> |
61 |
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" |
62 |
name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"> |
63 |
<identity> |
64 |
<dns value="localhost" /> |
65 |
</identity> |
66 |
</endpoint> |
67 |
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
68 |
</service> |
69 |
<service name="KCOM_API.PemssService" behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"> |
70 |
<endpoint binding="basicHttpBinding" bindingConfiguration="" |
71 |
name="MarkusServiceEndPoint" contract="KCOM_API.PemssService"> |
72 |
<identity> |
73 |
<dns value="localhost" /> |
74 |
</identity> |
75 |
</endpoint> |
76 |
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
77 |
</service> |
78 |
</services> |
79 |
</system.serviceModel> |
80 |
<system.webServer> |
81 |
<validation validateIntegratedModeConfiguration="false"/> |
82 |
</system.webServer> |
83 |
<applicationSettings> |
84 |
<KCOM_API.Properties.Settings> |
85 |
<setting name="TileSoucePath" serializeAs="String"> |
86 |
<value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
87 |
</setting> |
88 |
<setting name="TileSoucePath_SUB" serializeAs="String"> |
89 |
<value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
90 |
</setting> |
91 |
<setting name="PEMSS_URL" serializeAs="String"> |
92 |
<value>http://pemss.i-on.net</value> |
93 |
</setting> |
94 |
</KCOM_API.Properties.Settings> |
95 |
</applicationSettings> |
96 |
</configuration> |