2
0

ChangeLog 4.0 KB

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