ChangeLog 5.2 KB

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