Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.QuadraticAssignment/3.3/app.config @ 6904

Last change on this file since 6904 was 6895, checked in by abeham, 13 years ago

#1619

  • Fixed config file
File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3  <system.serviceModel>
4    <behaviors>
5      <endpointBehaviors>
6        <behavior name="ProblemInstancesLargeMessages">
7          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
8        </behavior>
9      </endpointBehaviors>
10    </behaviors>
11    <bindings>
12      <basicHttpBinding>
13        <binding name="BasicHttpBinding_IQAP" closeTimeout="00:01:00"
14            openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
15            allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
16            maxBufferSize="16777216" maxBufferPoolSize="524288" maxReceivedMessageSize="16777216"
17            messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
18            useDefaultWebProxy="true">
19          <readerQuotas maxDepth="512" maxStringContentLength="1048576" maxArrayLength="1048576"
20              maxBytesPerRead="8192" maxNameTableCharCount="16384" />
21          <security mode="None">
22            <transport clientCredentialType="None" proxyCredentialType="None"
23                realm="" />
24            <message clientCredentialType="UserName" algorithmSuite="Default" />
25          </security>
26        </binding>
27      </basicHttpBinding>
28    </bindings>
29    <client>
30      <endpoint address="http://services.heuristiclab.com/ProblemInstances-3.3/QAP/QAP.svc"
31          binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IQAP"
32          behaviorConfiguration="ProblemInstancesLargeMessages"
33          contract="QAPInstanceService.IQAP" name="BasicHttpBinding_IQAP" />
34    </client>
35  </system.serviceModel>
36</configuration>
Note: See TracBrowser for help on using the repository browser.