annotate SSRS/SSRS.Web/Web.config @ 112:b9d5f934cb21

Initial upload
author adminsh@apollo
date Sat, 19 May 2012 16:09:07 +0100
parents
children
rev   line source
112
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
1 <?xml version="1.0"?>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
2
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
3 <!--
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
4 For more information on how to configure your ASP.NET application, please visit
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
5 http://go.microsoft.com/fwlink/?LinkId=169433
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
6 -->
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
7
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
8 <configuration>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
9 <system.web>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
10 <compilation debug="true" targetFramework="4.0" />
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
11 </system.web>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
12
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
13 <location path="services">
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
14 <system.web>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
15 <httpHandlers>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
16 <add path="*" type="ServiceStack.WebHost.Endpoints.ServiceStackHttpHandlerFactory, ServiceStack" verb="*"/>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
17 </httpHandlers>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
18 </system.web>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
19
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
20 <!-- Required for IIS 7.0 -->
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
21 <system.webServer>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
22 <modules runAllManagedModulesForAllRequests="true"/>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
23 <validation validateIntegratedModeConfiguration="false" />
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
24 <handlers>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
25 <add path="*" name="ServiceStack.Factory" type="ServiceStack.WebHost.Endpoints.ServiceStackHttpHandlerFactory, ServiceStack" verb="*" preCondition="integratedMode" resourceType="Unspecified" allowPathInfo="true" />
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
26 </handlers>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
27 </system.webServer>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
28 </location>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
29
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
30 <system.serviceModel>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
31 <bindings>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
32 <basicHttpBinding>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
33 <binding name="SsrsSoapBinding"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
34 hostNameComparisonMode="StrongWildcard"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
35 receiveTimeout="00:10:00"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
36 sendTimeout="00:10:00"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
37 openTimeout="00:10:00"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
38 closeTimeout="00:10:00"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
39 maxReceivedMessageSize="1000000"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
40 maxBufferSize="1000000"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
41 maxBufferPoolSize="524288"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
42 transferMode="Buffered"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
43 messageEncoding="Text"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
44 textEncoding="utf-8"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
45 bypassProxyOnLocal="false"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
46 useDefaultWebProxy="true">
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
47 <security mode="TransportCredentialOnly">
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
48 <transport clientCredentialType="Ntlm" proxyCredentialType="Ntlm" realm=""/>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
49 <message clientCredentialType="UserName" algorithmSuite="Default" />
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
50 </security>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
51 </binding>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
52 </basicHttpBinding>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
53 </bindings>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
54 <client>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
55 <endpoint address="http://localhost:80/ReportServer_SQL2008/ReportService2010.asmx"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
56 binding="basicHttpBinding" bindingConfiguration="SsrsSoapBinding"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
57 contract="ReportServiceReference.ReportingService2010Soap"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
58 name="ReportingService2010Soap" />
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
59 <endpoint address="http://localhost:80/ReportServer_SQL2008/ReportExecution2005.asmx"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
60 binding="basicHttpBinding" bindingConfiguration="SsrsSoapBinding"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
61 contract="ReportExecutionServiceReference.ReportExecutionServiceSoap"
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
62 name="ReportExecutionServiceSoap" />
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
63 </client>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
64 </system.serviceModel>
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
65 </configuration>