ChangeLog 3.7 KB

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