Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  5. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  6. </configSections>
  7. <appSettings>
  8. <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  9. </appSettings>
  10. <system.web>
  11. <compilation debug="true" />
  12. </system.web>
  13. <!-- When deploying the service library project, the content of the config file must be added to the host's
  14. app.config file. System.Configuration does not support config files for libraries. -->
  15. <system.serviceModel>
  16. <services>
  17. <service name="WcfEksamLibrary.ZooService">
  18. <endpoint address="" binding="basicHttpBinding" contract="WcfEksamLibrary.IZooService">
  19. <identity>
  20. <dns value="localhost" />
  21. </identity>
  22. </endpoint>
  23. <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  24. <host>
  25. <baseAddresses>
  26. <add baseAddress="http://localhost:8733/Design_Time_Addresses/WcfEksamLibrary/ZooService/" />
  27. </baseAddresses>
  28. </host>
  29. </service>
  30. </services>
  31. <behaviors>
  32. <serviceBehaviors>
  33. <behavior>
  34. <!-- To avoid disclosing metadata information,
  35. set the values below to false before deployment -->
  36. <serviceMetadata httpGetEnabled="True" httpsGetEnabled="True" />
  37. <!-- To receive exception details in faults for debugging purposes,
  38. set the value below to true. Set to false before deployment
  39. to avoid disclosing exception information -->
  40. <serviceDebug includeExceptionDetailInFaults="False" />
  41. </behavior>
  42. </serviceBehaviors>
  43. </behaviors>
  44. </system.serviceModel>
  45. <entityFramework>
  46. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  47. <parameters>
  48. <parameter value="v11.0" />
  49. </parameters>
  50. </defaultConnectionFactory>
  51. <providers>
  52. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  53. </providers>
  54. </entityFramework>
  55. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement