comparison SSRS/SSRS.Services.UnitTests/app.config @ 112:b9d5f934cb21

Initial upload
author adminsh@apollo
date Sat, 19 May 2012 16:09:07 +0100
parents
children
comparison
equal deleted inserted replaced
111:6cb8cd05ad6b 112:b9d5f934cb21
1 <?xml version="1.0" encoding="utf-8" ?>
2 <configuration>
3 <system.serviceModel>
4 <bindings>
5 <basicHttpBinding>
6 <binding name="SsrsSoapBinding"
7 hostNameComparisonMode="StrongWildcard"
8 receiveTimeout="00:10:00"
9 sendTimeout="00:10:00"
10 openTimeout="00:10:00"
11 closeTimeout="00:10:00"
12 maxReceivedMessageSize="1000000"
13 maxBufferSize="1000000"
14 maxBufferPoolSize="524288"
15 transferMode="Buffered"
16 messageEncoding="Text"
17 textEncoding="utf-8"
18 bypassProxyOnLocal="false"
19 useDefaultWebProxy="true">
20 <security mode="TransportCredentialOnly">
21 <transport clientCredentialType="Ntlm" proxyCredentialType="Ntlm" realm=""/>
22 <message clientCredentialType="UserName" algorithmSuite="Default" />
23 </security>
24 </binding>
25 </basicHttpBinding>
26 </bindings>
27 <client>
28 <endpoint address="http://localhost:80/ReportServer_SQL2008/ReportService2010.asmx"
29 binding="basicHttpBinding" bindingConfiguration="SsrsSoapBinding"
30 contract="ReportServiceReference.ReportingService2010Soap"
31 name="ReportingService2010Soap" />
32 <endpoint address="http://localhost:80/ReportServer_SQL2008/ReportExecution2005.asmx"
33 binding="basicHttpBinding" bindingConfiguration="SsrsSoapBinding"
34 contract="ReportExecutionServiceReference.ReportExecutionServiceSoap"
35 name="ReportExecutionServiceSoap" />
36 </client>
37 </system.serviceModel>
38 </configuration>