58 lines
2.8 KiB
Plaintext
58 lines
2.8 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
<configuration>
|
||
|
<system.diagnostics>
|
||
|
<sources>
|
||
|
<!-- This section defines the logging configuration for My.Application.Log -->
|
||
|
<source name="DefaultSource" switchName="DefaultSwitch">
|
||
|
<listeners>
|
||
|
<add name="FileLog"/>
|
||
|
<!-- Uncomment the below section to write to the Application Event Log -->
|
||
|
<!--<add name="EventLog"/>-->
|
||
|
</listeners>
|
||
|
</source>
|
||
|
</sources>
|
||
|
<switches>
|
||
|
<add name="DefaultSwitch" value="Information"/>
|
||
|
</switches>
|
||
|
<sharedListeners>
|
||
|
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/>
|
||
|
<!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
|
||
|
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
|
||
|
</sharedListeners>
|
||
|
</system.diagnostics>
|
||
|
<runtime>
|
||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||
|
<dependentAssembly>
|
||
|
<assemblyIdentity name="Microsoft.Vbe.Interop" publicKeyToken="71E9BCE111E9429C" culture="neutral"/>
|
||
|
<bindingRedirect oldVersion="0.0.0.0-14.0.0.0" newVersion="14.0.0.0"/>
|
||
|
</dependentAssembly>
|
||
|
<dependentAssembly>
|
||
|
<assemblyIdentity name="office" publicKeyToken="71E9BCE111E9429C" culture="neutral"/>
|
||
|
<bindingRedirect oldVersion="0.0.0.0-14.0.0.0" newVersion="14.0.0.0"/>
|
||
|
</dependentAssembly>
|
||
|
</assemblyBinding>
|
||
|
</runtime>
|
||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup><system.serviceModel>
|
||
|
<bindings>
|
||
|
<basicHttpBinding>
|
||
|
<binding name="BasicHttpBinding_IServiceMTmessageIntegrator" />
|
||
|
</basicHttpBinding>
|
||
|
<netTcpBinding>
|
||
|
<binding name="NetTcpBinding_IServiceMTmessageIntegrator" />
|
||
|
</netTcpBinding>
|
||
|
</bindings>
|
||
|
<client>
|
||
|
<endpoint address="http://187.168.149.182:19002/ServiceMTmessageIntegrator"
|
||
|
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IServiceMTmessageIntegrator"
|
||
|
contract="ServiceMT.IServiceMTmessageIntegrator" name="BasicHttpBinding_IServiceMTmessageIntegrator" />
|
||
|
<endpoint address="net.tcp://localhost:19001/ServiceMTmessageIntegrator"
|
||
|
binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IServiceMTmessageIntegrator"
|
||
|
contract="ServiceMT.IServiceMTmessageIntegrator" name="NetTcpBinding_IServiceMTmessageIntegrator">
|
||
|
<identity>
|
||
|
<userPrincipalName value="KNUTH\Administrator" />
|
||
|
</identity>
|
||
|
</endpoint>
|
||
|
</client>
|
||
|
</system.serviceModel>
|
||
|
</configuration>
|