markus / KCOM_API / Web.config @ 86dbd85c
이력 | 보기 | 이력해설 | 다운로드 (4.92 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 | 684ef11c | ljiyeon | <!-- |
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 | 86dbd85c | taeseongkim | <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 | 787a4489 | KangIngu | <system.web> |
27 | 684ef11c | ljiyeon | <compilation debug="true" targetFramework="4.5"/> |
28 | 787a4489 | KangIngu | <pages controlRenderingCompatibilityVersion="4.0"/> |
29 | </system.web> |
||
30 | 684ef11c | ljiyeon | <system.serviceModel> |
31 | 787a4489 | KangIngu | <behaviors> |
32 | c517099d | taeseongkim | <endpointBehaviors> |
33 | <behavior name="WebHttpBehavior"> |
||
34 | <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json" /> |
||
35 | </behavior> |
||
36 | </endpointBehaviors> |
||
37 | 787a4489 | KangIngu | <serviceBehaviors> |
38 | <behavior name="KCOM_API.SilverlightServiceBehavior"> |
||
39 | c517099d | taeseongkim | <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 | 787a4489 | KangIngu | </behavior> |
47 | </serviceBehaviors> |
||
48 | </behaviors> |
||
49 | c517099d | taeseongkim | <serviceHostingEnvironment aspNetCompatibilityEnabled="true" |
50 | multipleSiteBindingsEnabled="true" /> |
||
51 | 787a4489 | KangIngu | <bindings> |
52 | <basicHttpBinding> |
||
53 | 684ef11c | ljiyeon | <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 | 787a4489 | KangIngu | </binding> |
56 | </basicHttpBinding> |
||
57 | </bindings> |
||
58 | <services> |
||
59 | c517099d | taeseongkim | <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 | 787a4489 | KangIngu | <identity> |
64 | c517099d | taeseongkim | <dns value="localhost" /> |
65 | 787a4489 | KangIngu | </identity> |
66 | </endpoint> |
||
67 | c517099d | taeseongkim | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
68 | </service> |
||
69 | 0f6604ce | taeseongkim | <service name="KCOM_API.PemssService" behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"> |
70 | c517099d | taeseongkim | <endpoint binding="basicHttpBinding" bindingConfiguration="" |
71 | 0f6604ce | taeseongkim | 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 | 787a4489 | KangIngu | </service> |
78 | </services> |
||
79 | </system.serviceModel> |
||
80 | <system.webServer> |
||
81 | <validation validateIntegratedModeConfiguration="false"/> |
||
82 | </system.webServer> |
||
83 | a874198d | humkyung | <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 | 0f6604ce | taeseongkim | <setting name="PEMSS_URL" serializeAs="String"> |
92 | <value>http://pemss.i-on.net</value> |
||
93 | </setting> |
||
94 | a874198d | humkyung | </KCOM_API.Properties.Settings> |
95 | </applicationSettings> |
||
96 | 684ef11c | ljiyeon | </configuration> |