개정판 4fcb686a
issue #000 font가 적용 되지 않아 box size가 작게 출력되는 문제
Change-Id: Ie07531db96d56e8d5c2bbdbf0786d053ad39747c
KCOM_API/Web.config | ||
---|---|---|
5 | 5 |
--> |
6 | 6 |
<configuration> |
7 | 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"/> |
|
8 |
<sectionGroup name="applicationSettings" |
|
9 |
type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |
|
10 |
<section name="KCOM_API.Properties.Settings" |
|
11 |
type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/> |
|
10 | 12 |
</sectionGroup> |
11 | 13 |
</configSections> |
12 | 14 |
<connectionStrings> |
... | ... | |
40 | 42 |
logMessagesAtTransportLevel="true" /> |
41 | 43 |
<endToEndTracing activityTracing="true" messageFlowTracing="true" /> |
42 | 44 |
</diagnostics>--> |
43 |
<diagnostics performanceCounters="Default" />
|
|
45 |
<diagnostics performanceCounters="Default"/> |
|
44 | 46 |
<behaviors> |
45 | 47 |
<endpointBehaviors> |
46 | 48 |
<behavior name="WebHttpBehavior"> |
... | ... | |
62 | 64 |
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/> |
63 | 65 |
<bindings> |
64 | 66 |
<basicHttpBinding> |
65 |
<binding name="LargeBuffer" closeTimeout="00:30:00" openTimeout="00:30:00" |
|
66 |
receiveTimeout="04:30:00" sendTimeout="04:30:00" maxBufferSize="2147483647" |
|
67 |
<binding name="LargeBuffer" closeTimeout="00:30:00" openTimeout="00:30:00" receiveTimeout="04:30:00" sendTimeout="04:30:00" maxBufferSize="2147483647" |
|
67 | 68 |
maxReceivedMessageSize="2147483647"> |
68 |
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" |
|
69 |
maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
|
|
69 |
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647"
|
|
70 |
maxNameTableCharCount="2147483647"/>
|
|
70 | 71 |
</binding> |
71 | 72 |
</basicHttpBinding> |
72 | 73 |
<wsHttpBinding> |
73 |
<binding name="wsHttpBinding" maxBufferPoolSize="2147483647" |
|
74 |
maxReceivedMessageSize="2147483647"> |
|
75 |
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" |
|
76 |
maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> |
|
74 |
<binding name="wsHttpBinding" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"> |
|
75 |
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" |
|
76 |
maxNameTableCharCount="2147483647"/> |
|
77 | 77 |
<security mode="Transport"> |
78 | 78 |
<transport clientCredentialType="None"/> |
79 | 79 |
</security> |
... | ... | |
81 | 81 |
</wsHttpBinding> |
82 | 82 |
</bindings> |
83 | 83 |
<services> |
84 |
<service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" |
|
85 |
name="KCOM_API.ServiceDeepView"> |
|
86 |
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" |
|
87 |
name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"> |
|
84 |
<service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior" name="KCOM_API.ServiceDeepView"> |
|
85 |
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer" name="DeepViewPoint" contract="KCOM_API.ServiceDeepView"> |
|
88 | 86 |
<identity> |
89 |
<dns value="localhost" />
|
|
87 |
<dns value="localhost"/> |
|
90 | 88 |
</identity> |
91 | 89 |
</endpoint> |
92 |
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
|
|
90 |
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> |
|
93 | 91 |
<host> |
94 |
<timeouts closeTimeout="00:30:00" openTimeout="00:30:00" />
|
|
92 |
<timeouts closeTimeout="00:30:00" openTimeout="00:30:00"/> |
|
95 | 93 |
</host> |
96 | 94 |
</service> |
97 | 95 |
<service name="KCOM_API.MarkusService"> |
98 |
<endpoint address="Rest" behaviorConfiguration="WebHttpBehavior" |
|
99 |
binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint" |
|
100 |
contract="KCOM_API.MarkusService" /> |
|
101 |
<endpoint binding="basicHttpBinding" bindingConfiguration="" |
|
102 |
name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService" /> |
|
96 |
<endpoint address="Rest" behaviorConfiguration="WebHttpBehavior" binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint" |
|
97 |
contract="KCOM_API.MarkusService"/> |
|
98 |
<endpoint binding="basicHttpBinding" bindingConfiguration="" name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService"/> |
|
103 | 99 |
</service> |
104 | 100 |
</services> |
105 | 101 |
</system.serviceModel> |
내보내기 Unified diff