ChangeLog 4.6 KB

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