2
0

ChangeLog 4.5 KB

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