ChangeLog 5.1 KB

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