markus / KCOM / bin / Debug / KCOM_API.dll.config @ 787a4489
이력 | 보기 | 이력해설 | 다운로드 (2.22 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 |
<system.web> |
8 |
<compilation debug="true" targetFramework="4.0"/> |
9 |
<pages controlRenderingCompatibilityVersion="4.0"/> |
10 |
</system.web> |
11 |
<system.serviceModel> |
12 |
<!--<behaviors> |
13 |
<serviceBehaviors> |
14 |
<behavior name=""> |
15 |
<serviceMetadata httpGetEnabled="true"/> |
16 |
<serviceDebug includeExceptionDetailInFaults="false"/> |
17 |
</behavior> |
18 |
</serviceBehaviors> |
19 |
</behaviors>--> |
20 |
<behaviors> |
21 |
<serviceBehaviors> |
22 |
<behavior name="KCOM_API.SilverlightServiceBehavior"> |
23 |
<serviceMetadata httpGetEnabled="true" /> |
24 |
<serviceDebug includeExceptionDetailInFaults="false" /> |
25 |
<!--Jaedoo 최소용량때문에 추가한거임--> |
26 |
<dataContractSerializer maxItemsInObjectGraph="6553600"/> |
27 |
</behavior> |
28 |
</serviceBehaviors> |
29 |
</behaviors> |
30 |
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/> |
31 |
<bindings> |
32 |
<basicHttpBinding> |
33 |
<binding name="LargeBuffer" receiveTimeout="00:30:00" openTimeout="00:30:00" sendTimeout="00:30:00" |
34 |
closeTimeout="00:30:00" |
35 |
maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"> |
36 |
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" |
37 |
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> |
38 |
|
39 |
</binding> |
40 |
</basicHttpBinding> |
41 |
</bindings> |
42 |
<services> |
43 |
<service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" name="KCOM_API.ServiceDeepView"> |
44 |
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" name="DeepViewPoint" contract="KCOM_API.ServiceDeepView" > |
45 |
<identity> |
46 |
<dns value="localhost" /> |
47 |
</identity> |
48 |
</endpoint> |
49 |
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> |
50 |
</service> |
51 |
</services> |
52 |
</system.serviceModel> |
53 |
<system.webServer> |
54 |
<validation validateIntegratedModeConfiguration="false"/> |
55 |
</system.webServer> |
56 |
</configuration> |