75 lines
2.3 KiB
XML
Executable File
75 lines
2.3 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8" ?>
|
|
<configuration>
|
|
<startup>
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
|
</startup>
|
|
|
|
<!-- WCF Config -->
|
|
<system.serviceModel>
|
|
<services>
|
|
<service name="RSG.ShortcutMenu.Services.ShortcutMenuService"
|
|
behaviorConfiguration="DefaultServiceBehaviour">
|
|
<host>
|
|
<baseAddresses>
|
|
<add baseAddress="net.tcp://*:7021/ShortcutMenuService.svc" />
|
|
</baseAddresses>
|
|
</host>
|
|
|
|
<endpoint binding="netTcpBinding"
|
|
bindingConfiguration="SecureNetTcpBinding"
|
|
contract="RSG.ShortcutMenu.Common.IShortcutMenuService" />
|
|
</service>
|
|
</services>
|
|
|
|
<bindings>
|
|
<netTcpBinding>
|
|
<binding name="SecureNetTcpBinding" />
|
|
|
|
<binding name="defaultNetTcpBinding"
|
|
closeTimeout="00:30:00"
|
|
openTimeout="00:30:00"
|
|
receiveTimeout="00:30:00"
|
|
sendTimeout="00:30:00"
|
|
maxBufferPoolSize="52428800"
|
|
maxReceivedMessageSize="52428800"
|
|
maxBufferSize="52428800">
|
|
|
|
<security mode="None">
|
|
<transport clientCredentialType="None" />
|
|
<message clientCredentialType="None" />
|
|
</security>
|
|
|
|
<readerQuotas maxDepth="32"
|
|
maxStringContentLength="2147483647"
|
|
maxArrayLength="16384"
|
|
maxBytesPerRead="4096"
|
|
maxNameTableCharCount="16384" />
|
|
</binding>
|
|
</netTcpBinding>
|
|
</bindings>
|
|
|
|
<behaviors>
|
|
<serviceBehaviors>
|
|
<behavior name="DefaultServiceBehaviour">
|
|
<serviceDebug includeExceptionDetailInFaults="True" />
|
|
</behavior>
|
|
</serviceBehaviors>
|
|
</behaviors>
|
|
</system.serviceModel>
|
|
|
|
<!--
|
|
<system.diagnostics>
|
|
<sources>
|
|
<source name="System.ServiceModel"
|
|
switchValue="Information, ActivityTracing"
|
|
propagateActivity="true">
|
|
<listeners>
|
|
<add name="sdt"
|
|
type="System.Diagnostics.XmlWriterTraceListener"
|
|
initializeData="c:\server.svclog" />
|
|
</listeners>
|
|
</source>
|
|
</sources>
|
|
</system.diagnostics>
|
|
-->
|
|
</configuration> |