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