Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.ContactServer/bin/Debug/DistributedGA.ContactServer.vshost.exe.config @ 13524

Last change on this file since 13524 was 13524, checked in by thasling, 8 years ago

Upload des Projekts letztendlich, trotz buggendes Clients...

File size: 1.8 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3
4  <appSettings>
5    <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
6  </appSettings>
7  <system.web>
8    <compilation debug="true" />
9  </system.web>
10  <!-- When deploying the service library project, the content of the config file must be added to the host's
11  app.config file. System.Configuration does not support config files for libraries. -->
12  <system.serviceModel>
13    <bindings>
14      <basicHttpBinding>
15        <binding name="LargeObjects" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" />
16      </basicHttpBinding>
17    </bindings>
18    <services>
19      <service name="DistributedGA.ContactServer.ContactServiceImpl">
20        <endpoint bindingConfiguration="LargeObjects" address="ContactService" binding="basicHttpBinding" contract="DistributedGA.ContactServer.IContactService"/>
21        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
22        <host>
23          <baseAddresses>
24            <add baseAddress="http://localhost:9002/DistributedGA.ContactServer" />
25          </baseAddresses>
26        </host>
27      </service>
28    </services>
29    <behaviors>
30      <serviceBehaviors>
31        <behavior>
32          <!-- To avoid disclosing metadata information,
33          set the values below to false before deployment -->
34          <serviceMetadata httpGetEnabled="True" httpsGetEnabled="True"/>
35          <!-- To receive exception details in faults for debugging purposes,
36          set the value below to true.  Set to false before deployment
37          to avoid disclosing exception information -->
38          <serviceDebug includeExceptionDetailInFaults="False" />
39        </behavior>
40      </serviceBehaviors>
41    </behaviors>
42  </system.serviceModel>
43
44</configuration>
Note: See TracBrowser for help on using the repository browser.