Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <system.serviceModel>
  2. <services>
  3. <service name="BookStoreClient.BookImp" behaviorConfiguration="bookServiceBehaviour">
  4. <host>
  5. <baseAddresses>
  6. <add baseAddress="http://localhost:8002/BookCheckService"/>
  7. </baseAddresses>
  8. </host>
  9. <endpoint name="BookEndPoint"
  10. address=""
  11. binding="basicHttpBinding"
  12. contract="BookStoreClient.IBook"/>
  13. </service>
  14. <service name="BookStoreClient.LoginImp" behaviorConfiguration="bookServiceBehaviour">
  15. <host>
  16. <baseAddresses>
  17. <add baseAddress="http://localhost:8002/LoginService"/>
  18. </baseAddresses>
  19. </host>
  20. <endpoint name="LoginEndPoint"
  21. address=""
  22. binding="basicHttpBinding"
  23. contract="BookStoreClient.ILogin"/>
  24. </service>
  25. <service name="BookStoreClient.CartImp" behaviorConfiguration="bookServiceBehaviour">
  26. <host>
  27. <baseAddresses>
  28. <add baseAddress="http://localhost:8002/CartService"/>
  29. </baseAddresses>
  30. </host>
  31. <endpoint name="CartEndPoint"
  32. address=""
  33. binding="basicHttpBinding"
  34. contract="BookStoreClient.ICart"/>
  35. </service>
  36. <service name="BookStoreClient.MemberServiceImp" behaviorConfiguration="bookServiceBehaviour">
  37. <host>
  38. <baseAddresses>
  39. <add baseAddress="http://localhost:8002/MemberService"/>
  40. </baseAddresses>
  41. </host>
  42. <endpoint name="CartEndPoint"
  43. address=""
  44. binding="basicHttpBinding"
  45. contract="BookStoreClient.IMember"/>
  46. </service>
  47. </services>
  48. <behaviors>
  49. <serviceBehaviors>
  50. <behavior name="bookServiceBehaviour">
  51. <serviceMetadata httpGetEnabled="True"/>
  52. </behavior>
  53. </serviceBehaviors>
  54. </behaviors>
  55. </system.serviceModel>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement