ChangeLog 4.8 KB

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