markus / KCOM_API / Web.config @ 4ce2032b
이력 | 보기 | 이력해설 | 다운로드 (4.01 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 | 787a4489 | KangIngu | <system.web> |
21 | 684ef11c | ljiyeon | <compilation debug="true" targetFramework="4.5"/> |
22 | 787a4489 | KangIngu | <pages controlRenderingCompatibilityVersion="4.0"/> |
23 | </system.web> |
||
24 | 684ef11c | ljiyeon | <system.serviceModel> |
25 | 787a4489 | KangIngu | <behaviors> |
26 | c517099d | taeseongkim | <endpointBehaviors> |
27 | <behavior name="WebHttpBehavior"> |
||
28 | <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json" /> |
||
29 | </behavior> |
||
30 | </endpointBehaviors> |
||
31 | 787a4489 | KangIngu | <serviceBehaviors> |
32 | <behavior name="KCOM_API.SilverlightServiceBehavior"> |
||
33 | c517099d | taeseongkim | <serviceMetadata httpGetEnabled="true" /> |
34 | <serviceDebug includeExceptionDetailInFaults="false" /> |
||
35 | <dataContractSerializer maxItemsInObjectGraph="2147483647" /> |
||
36 | </behavior> |
||
37 | <behavior name=""> |
||
38 | <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" /> |
||
39 | <serviceDebug includeExceptionDetailInFaults="false" /> |
||
40 | 787a4489 | KangIngu | </behavior> |
41 | </serviceBehaviors> |
||
42 | </behaviors> |
||
43 | c517099d | taeseongkim | <serviceHostingEnvironment aspNetCompatibilityEnabled="true" |
44 | multipleSiteBindingsEnabled="true" /> |
||
45 | 787a4489 | KangIngu | <bindings> |
46 | <basicHttpBinding> |
||
47 | 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"> |
48 | <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/> |
||
49 | 787a4489 | KangIngu | </binding> |
50 | </basicHttpBinding> |
||
51 | </bindings> |
||
52 | <services> |
||
53 | c517099d | taeseongkim | <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" |
54 | name="KCOM_API.ServiceDeepView"> |
||
55 | <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" |
||
56 | name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"> |
||
57 | 787a4489 | KangIngu | <identity> |
58 | c517099d | taeseongkim | <dns value="localhost" /> |
59 | 787a4489 | KangIngu | </identity> |
60 | </endpoint> |
||
61 | c517099d | taeseongkim | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
62 | </service> |
||
63 | 0f6604ce | taeseongkim | <service name="KCOM_API.PemssService" behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"> |
64 | c517099d | taeseongkim | <endpoint binding="basicHttpBinding" bindingConfiguration="" |
65 | 0f6604ce | taeseongkim | name="MarkusServiceEndPoint" contract="KCOM_API.PemssService"> |
66 | <identity> |
||
67 | <dns value="localhost" /> |
||
68 | </identity> |
||
69 | </endpoint> |
||
70 | <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
||
71 | 787a4489 | KangIngu | </service> |
72 | </services> |
||
73 | </system.serviceModel> |
||
74 | <system.webServer> |
||
75 | <validation validateIntegratedModeConfiguration="false"/> |
||
76 | </system.webServer> |
||
77 | a874198d | humkyung | <applicationSettings> |
78 | <KCOM_API.Properties.Settings> |
||
79 | <setting name="TileSoucePath" serializeAs="String"> |
||
80 | <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
||
81 | </setting> |
||
82 | <setting name="TileSoucePath_SUB" serializeAs="String"> |
||
83 | <value>http://cloud.devdoftech.co.kr:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value> |
||
84 | </setting> |
||
85 | 0f6604ce | taeseongkim | <setting name="PEMSS_URL" serializeAs="String"> |
86 | <value>http://pemss.i-on.net</value> |
||
87 | </setting> |
||
88 | a874198d | humkyung | </KCOM_API.Properties.Settings> |
89 | </applicationSettings> |
||
90 | 684ef11c | ljiyeon | </configuration> |