ChangeLog 5.0 KB

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