ChangeLog 3.2 KB

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