ChangeLog 5.3 KB

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