comparison SilverlightExampleApp/SilverlightExampleApp.Web/Web.config @ 49:502f5f365649

Initial load for Silverlight Example Application
author Steven Hollidge <stevenhollidge@hotmail.com>
date Tue, 17 Apr 2012 17:57:52 +0100
parents
children
comparison
equal deleted inserted replaced
48:d617b54e1f47 49:502f5f365649
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.webServer>
10 <modules runAllManagedModulesForAllRequests="true" />
11 <validation validateIntegratedModeConfiguration="false" />
12 </system.webServer>
13 <system.web>
14 <compilation debug="true" targetFramework="4.0" />
15 <authentication mode="Forms">
16 <forms defaultUrl="index.html"
17 loginUrl="index.html"
18 name="SilverlightExampleApp.Web" />
19 </authentication>
20 </system.web>
21
22 <!--<location path="Secure">
23 <system.web>
24 <authorization>
25 <deny users="?"/>
26 </authorization>
27 </system.web>
28 </location>-->
29
30 <location path="Services">
31 <system.web>
32 <authorization>
33 <allow users="*"/>
34 </authorization>
35 </system.web>
36 </location>
37
38 <system.serviceModel>
39 <behaviors>
40 <serviceBehaviors>
41 <behavior name="">
42 <serviceMetadata httpGetEnabled="true" />
43 <serviceDebug includeExceptionDetailInFaults="false" />
44 </behavior>
45 </serviceBehaviors>
46 </behaviors>
47 <bindings>
48 <customBinding>
49 <binding name="SilverlightExampleApp.Web.Services.AuthenticationService.customBinding0">
50 <binaryMessageEncoding />
51 <httpTransport />
52 </binding>
53 <binding name="SilverlightExampleApp.Web.Services.SecureService.customBinding0">
54 <binaryMessageEncoding />
55 <httpTransport />
56 </binding>
57 <binding name="SilverlightExampleApp.Web.Secure.SecureService.customBinding0">
58 <binaryMessageEncoding />
59 <httpTransport />
60 </binding>
61 <binding name="SilverlightExampleApp.Web.Secure.ClientDataService.customBinding0">
62 <binaryMessageEncoding />
63 <httpTransport />
64 </binding>
65 </customBinding>
66 </bindings>
67 <serviceHostingEnvironment aspNetCompatibilityEnabled="true"
68 multipleSiteBindingsEnabled="true" />
69 <services>
70 <service name="SilverlightExampleApp.Web.Services.AuthenticationService">
71 <endpoint address="" binding="customBinding" bindingConfiguration="SilverlightExampleApp.Web.Services.AuthenticationService.customBinding0"
72 contract="SilverlightExampleApp.Web.Services.AuthenticationService" />
73 <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
74 </service>
75 <service name="SilverlightExampleApp.Web.Services.SecureService">
76 <endpoint address="" binding="customBinding" bindingConfiguration="SilverlightExampleApp.Web.Services.SecureService.customBinding0"
77 contract="SilverlightExampleApp.Web.Services.SecureService" />
78 <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
79 </service>
80 <service name="SilverlightExampleApp.Web.Secure.SecureService">
81 <endpoint address="" binding="customBinding" bindingConfiguration="SilverlightExampleApp.Web.Secure.SecureService.customBinding0"
82 contract="SilverlightExampleApp.Web.Secure.SecureService" />
83 <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
84 </service>
85 <service name="SilverlightExampleApp.Web.Secure.ClientDataService">
86 <endpoint address="" binding="customBinding" bindingConfiguration="SilverlightExampleApp.Web.Secure.ClientDataService.customBinding0"
87 contract="SilverlightExampleApp.Web.Secure.ClientDataService" />
88 <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
89 </service>
90 </services>
91 </system.serviceModel>
92 </configuration>