ChangeLog 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. 2009-09-02 Atsushi Enomoto <[email protected]>
  2. * WebMessageFormatter.cs : it was not returning value with correct
  3. wrapper name/namespace. Fix interop with .NET client.
  4. 2009-09-02 Atsushi Enomoto <[email protected]>
  5. * WebMessageFormatter.cs : Made the same prohibition for dispatch
  6. formatters too. Support WebMessageBodyStyle on dispatcher side too.
  7. 2009-09-02 Atsushi Enomoto <[email protected]>
  8. * WebMessageFormatter.cs : override some serialization methods as
  9. prohibited.
  10. 2009-09-02 Atsushi Enomoto <[email protected]>
  11. * WebHttpDispatchOperationSelector.cs : use common extension method.
  12. * WebMessageFormatter.cs : support WebMessageBodyStyle(.Wrapped*).
  13. Cache serializers.
  14. 2009-07-28 Atsushi Enomoto <[email protected]>
  15. * WebMessageFormatter.cs : apply OutgoingRequest if available.
  16. 2008-04-16 Atsushi Enomoto <[email protected]>
  17. * WebMessageFormatter.cs : now that ReadObject() verifies
  18. by default, it broke deserialization. Fixed it.
  19. 2008-02-18 Atsushi Enomoto <[email protected]>
  20. * JsonQueryStringConverter.cs : implemented.
  21. 2008-02-17 Atsushi Enomoto <[email protected]>
  22. * WebMessageFormatter.cs : implement WebOperationContext support.
  23. 2008-02-16 Atsushi Enomoto <[email protected]>
  24. * WebHttpDispatchOperationSelector.cs : some code cleanup.
  25. 2008-02-16 Atsushi Enomoto <[email protected]>
  26. * WebMessageFormatter.cs : fixed content-type typo.
  27. 2008-02-16 Atsushi Enomoto <[email protected]>
  28. * WebMessageFormatter.cs : implemented DeserializeReply().
  29. It was wrong to have one MessageDescription in a formatter, as
  30. they are different between serialization and deserialization.
  31. 2008-02-16 Atsushi Enomoto <[email protected]>
  32. * WebMessageFormatter.cs : oops oops. not "encoding" but "charset".
  33. 2008-02-15 Atsushi Enomoto <[email protected]>
  34. * WebMessageFormatter.cs : hack SerializeReply().
  35. Add WebBodyFormat property
  36. 2008-02-15 Atsushi Enomoto <[email protected]>
  37. * WebMessageFormatter.cs : implement DeserializeRequest().
  38. 2008-02-15 Atsushi Enomoto <[email protected]>
  39. * WebMessageFormatter.cs : attach a HttpRequestMessageProperty when
  40. creating a request Message.
  41. 2008-02-15 Atsushi Enomoto <[email protected]>
  42. * WebHttpDispatchOperationSelector.cs : implemented large part of it.
  43. * WebMessageFormatter.cs : moved BuildUriTemplate to WebAttributeInfo.
  44. 2008-02-14 Atsushi Enomoto <[email protected]>
  45. * WebMessageFormatter.cs : pass WebHttpBehavior too.
  46. 2008-02-14 Atsushi Enomoto <[email protected]>
  47. * WebMessageFormatter.cs : pass QueryStringConverter which is used to
  48. convert parameter objects to the components of the request URI.
  49. 2008-02-14 Atsushi Enomoto <[email protected]>
  50. * WebMessageFormatter.cs : new message formatter that is created
  51. from WebHttpBehavior and handles [WebGet] or [WebInvoke]. Not done.
  52. 2008-02-13 Atsushi Enomoto <[email protected]>
  53. * QueryStringConverter.cs : I could just check null parameter.
  54. 2008-02-13 Atsushi Enomoto <[email protected]>
  55. * QueryStringConverter.cs: CanConvert() supports cpl more types.
  56. Implemented ConvertStringToValue() and ConvertValueToString().
  57. 2008-02-12 Atsushi Enomoto <[email protected]>
  58. * WebHttpDispatchOperationSelector.cs : stubbed members.
  59. 2008-02-07 Atsushi Enomoto <[email protected]>
  60. * JsonQueryStringConverter.cs, QueryStringConverter.cs,
  61. WebHttpDispatchOperationSelector.cs : mostly stubs.