ChangeLog 5.2 KB

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