ChangeLog 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. 2009-07-09 Atsushi Enomoto <[email protected]>
  2. * LocalPeerResolverService.cs : fix RegistrationLifetime to return.
  3. 2009-07-07 Atsushi Enomoto <[email protected]>
  4. * CustomPeerResolverService.cs, LocalPeerResolverService.cs,
  5. ICustomPeerResolverContract.cs : add local machine peer resolver
  6. implementation that can work across appdomains (based on
  7. dispatching peer resolver that communicates with a ServiceHost
  8. which is either locally started or running as a different process).
  9. 2009-06-01 Atsushi Enomoto <[email protected]>
  10. * CustomPeerResolverService.cs : Refresh() now gives readable reply.
  11. 2009-05-29 Atsushi Enomoto <[email protected]>
  12. * CustomPeerResolverService.cs : implement some members.
  13. 2009-05-29 Atsushi Enomoto <[email protected]>
  14. * RegisterResponseInfo.cs : it does not always reply lifetime.
  15. 2009-05-28 Atsushi Enomoto <[email protected]>
  16. * RegisterResponseInfo.cs : oops, Marcos was right. .NET returns
  17. "Update" element here.
  18. 2009-05-28 Atsushi Enomoto <[email protected]>
  19. * ServiceSettingsResponseInfo.cs, RegisterResponseInfo.cs,
  20. RefreshResponseInfo.cs, ResolveInfo.cs, UpdateInfo.cs,
  21. UnregisterInfo.cs, ResolveResponseInfo.cs, RefreshInfo.cs :
  22. set explicit namespaces on DataContract so that their members can
  23. be serialized in appropriate namespace (namespaces in
  24. MessageBodyMemberAttribute does not apply there).
  25. 2009-05-27 Atsushi Enomoto <[email protected]>
  26. * ResolveInfo.cs : argument check.
  27. 2009-04-21 Atsushi Enomoto <[email protected]>
  28. * PeerCustomResolverSettings.cs : added Clone().
  29. 2009-04-07 Atsushi Enomoto <[email protected]>
  30. * IPeerResolverContract.cs: fix SessionMode value.
  31. 2007-08-19 Atsushi Enomoto <[email protected]>
  32. * RegisterInfo.cs : marcos would have never thought that this is
  33. the source of message xml incompatibility.
  34. 2007-08-19 Marcos Cobena ([email protected])
  35. * PeerCustomResolverSettings.cs, RefreshInfo.cs, RefreshResponseInfo.cs,
  36. ServiceSettingsResponseInfo.cs, UnregisterInfo.cs, UpdateInfo.cs: Bunch of updates.
  37. 2007-08-19 Atsushi Enomoto <[email protected]>
  38. * PeerCustomResolverSettings.cs : this class too.
  39. 2007-08-19 Atsushi Enomoto <[email protected]>
  40. * PeerResolverSettings.cs : there is nothing actually supported in
  41. this class, so don't forget MonoTODOs.
  42. 2007-08-17 Marcos Cobena ([email protected])
  43. * CustomPeerResolverService.cs: Updated to dependency types.
  44. * RegisterInfo.cs, RegisterResponseInfo.cs, ResolveInfo.cs,
  45. ResolveResponseInfo.cs, UnregisterInfo.cs: Updated to produce same messages as .NET does.
  46. 2007-08-17 Atsushi Enomoto <[email protected]>
  47. * RegisterInfo.cs : rewritten. Fixed broken approach to static
  48. object and eliminated duplicate fields. Use DataMember on Guid
  49. field directly.
  50. 2007-08-16 Marcos Cobena ([email protected])
  51. * PeerReferralPolicy.cs: Moved and updated here from AllEnums.cs.
  52. * PeerResolverMode.cs: Updated API.
  53. * RefreshResult.cs: Updated API.
  54. * RegisterInfo.cs: Almost finished, minus HasBody().
  55. 2007-07-24 Marcos Cobena ([email protected])
  56. * CustomPeerResolverService.cs, IPeerResolverContract.cs, RegisterInfo.cs, ResolveInfo.cs: Minor changes.
  57. * RegisterResponseInfo.cs: Implemented.
  58. 2007-06-28 Marcos Cobena ([email protected])
  59. * CustomPeerResolverService.cs : Minor fixes for working against tests.
  60. * New classes initial implementations.
  61. 2007-05-18 Marcos Cobena ([email protected])
  62. * IPeerResolverContract.cs
  63. CustomPeerResolverService.cs : Minor fixes. IPeerResolverContract
  64. works fine now with attributes.
  65. 2007-05-13 Atsushi Enomoto <[email protected]>
  66. * IPeerResolverContract.cs CustomPeerResolverService.cs :
  67. whitespaces should be replaced with tabs.
  68. 2007-05-04 Marcos Cobena ([email protected])
  69. * IPeerResolverContract.cs
  70. CustomPeerResolverService.cs : Initial implementations.