Little code cleanup. Since WCF creates TransparentProxy that implements IDisposable...
[castle.git] / Facilities / Wcf / Castle.Facilities.WcfIntegration.Tests / App.config
blob0d41b3a278205757f733daf7a56fb6b46d410fa2
1 <?xml version="1.0" encoding="utf-8" ?>\r
2 <configuration>\r
3         <system.serviceModel>\r
4                 <bindings>\r
5                 </bindings>\r
6                 <client>\r
7                         <endpoint address="http://localhost:27198/UsingWindsor.svc"\r
8                                           binding="basicHttpBinding"\r
9                                   contract="Castle.Facilities.WcfIntegration.Demo.IAmUsingWindsor"\r
10                                   name="WSHttpBinding_IAmUsingWindsor">\r
11                         </endpoint>\r
12                 </client>\r
13                 <services>\r
14                         <!-- Before deployment, you should remove the returnFaults behavior configuration to avoid disclosing information in exception messages -->\r
15                         <service name="Castle.Facilities.WcfIntegration.Demo.UsingWindsor"\r
16                                          behaviorConfiguration="returnFaults">\r
17                                 <endpoint address="http://localhost:27198/UsingWindsor.svc"\r
18                                                   contract="Castle.Facilities.WcfIntegration.Demo.IAmUsingWindsor"\r
19                                                   binding="basicHttpBinding"/>\r
20                         </service>\r
21                 </services>\r
22                 <behaviors>\r
23                         <serviceBehaviors>\r
24                                 <behavior name="returnFaults" >\r
25                                         <serviceDebug includeExceptionDetailInFaults="true" />\r
26                                         <serviceMetadata httpGetEnabled="false" />\r
27                                 </behavior>\r
28                         </serviceBehaviors>\r
29                 </behaviors>\r
30         </system.serviceModel>\r
31 </configuration>