12 <endpoint address=
"http://localhost:27197/UsingWindsor.svc"
13 binding=
"basicHttpBinding"
14 contract=
"Castle.Facilities.WcfIntegration.Demo.UsingWindsorSvc.IAmUsingWindsor"
15 name=
"WSHttpBinding_IAmUsingWindsor">
19 <!-- Before deployment, you should remove the returnFaults behavior configuration to avoid disclosing information in exception messages -->
20 <service name=
"Castle.Facilities.WcfIntegration.Demo.UsingWindsor">
21 <endpoint contract=
"Castle.Facilities.WcfIntegration.Demo.IAmUsingWindsor"
22 binding=
"basicHttpBinding"/>
25 </system.serviceModel
>
29 Set compilation debug="true" to insert debugging
30 symbols into the compiled page. Because this
31 affects performance, set this value to true only
34 <compilation debug=
"true" />
36 The <authentication> section enables configuration
37 of the security authentication mode used by
38 ASP.NET to identify an incoming user.
40 <authentication mode=
"Windows" />
42 The <customErrors> section enables configuration
43 of what to do if/when an unhandled error occurs
44 during the execution of a request. Specifically,
45 it enables developers to configure html error pages
46 to be displayed in place of a error stack trace.
48 <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
49 <error statusCode="403" redirect="NoAccess.htm" />
50 <error statusCode="404" redirect="FileNotFound.htm" />