ChangeLog 4.6 KB

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