| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- 2010-07-14 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : do not depend on WebOperationContext.
- add support for Raw format request.
- 2010-07-14 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : add support for Raw format.
- 2010-07-06 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : add NET_2_1 profile build.
- 2010-05-24 Atsushi Enomoto <[email protected]>
- * JsonQueryStringConverter.cs : objects are regarded serializable as
- long as they are public here, with some exceptions (not implemented).
- 2010-03-16 Jb Evain <[email protected]>
- * WebMessageFormatter.cs: use MOONLIGHT symbol to
- disambiguate MonoTouch and Moonlight code.
- 2009-10-23 Atsushi Enomoto <[email protected]>
- * JsonQueryStringConverter.cs
- QueryStringConverter.cs
- WebMessageFormatter.cs : add experimental monotouch build.
- 2009-10-08 Atsushi Enomoto <[email protected]>
- * WebMessageEncoder.cs : use alwaysEmitTypeInformation to output
- object __type.
- 2009-10-08 Atsushi Enomoto <[email protected]>
- * JsonQueryStringConverter.cs : add custom body name support (used.
- for AJAX). Handle string value (in very LAMESPEC way).
- * WebMessageFormatter.cs : add custom body name support.
- Slightly changed reply serialization.
- Convert deserialized values using QueryStringConverter.
- 2009-10-07 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : revert and fix wrapper name change. XML
- and JSON have different serialization.
- 2009-10-07 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : also fix wrapped message deserialization.
- It should expect FooResponse (body WrapperName), not FooResult
- (ReturnValue part Name).
- 2009-10-07 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : when they serialize Wrapped message, it
- first writes "root" and then the wrapper element.
- 2009-10-07 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : JSON writer does not support namespace.
- 2009-09-02 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : it was not returning value with correct
- wrapper name/namespace. Fix interop with .NET client.
- 2009-09-02 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : Made the same prohibition for dispatch
- formatters too. Support WebMessageBodyStyle on dispatcher side too.
- 2009-09-02 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : override some serialization methods as
- prohibited.
- 2009-09-02 Atsushi Enomoto <[email protected]>
- * WebHttpDispatchOperationSelector.cs : use common extension method.
- * WebMessageFormatter.cs : support WebMessageBodyStyle(.Wrapped*).
- Cache serializers.
- 2009-07-28 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : apply OutgoingRequest if available.
- 2008-04-16 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : now that ReadObject() verifies
- by default, it broke deserialization. Fixed it.
- 2008-02-18 Atsushi Enomoto <[email protected]>
- * JsonQueryStringConverter.cs : implemented.
- 2008-02-17 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : implement WebOperationContext support.
- 2008-02-16 Atsushi Enomoto <[email protected]>
- * WebHttpDispatchOperationSelector.cs : some code cleanup.
- 2008-02-16 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : fixed content-type typo.
- 2008-02-16 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : implemented DeserializeReply().
- It was wrong to have one MessageDescription in a formatter, as
- they are different between serialization and deserialization.
- 2008-02-16 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : oops oops. not "encoding" but "charset".
- 2008-02-15 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : hack SerializeReply().
- Add WebBodyFormat property
- 2008-02-15 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : implement DeserializeRequest().
- 2008-02-15 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : attach a HttpRequestMessageProperty when
- creating a request Message.
- 2008-02-15 Atsushi Enomoto <[email protected]>
- * WebHttpDispatchOperationSelector.cs : implemented large part of it.
- * WebMessageFormatter.cs : moved BuildUriTemplate to WebAttributeInfo.
- 2008-02-14 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : pass WebHttpBehavior too.
- 2008-02-14 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : pass QueryStringConverter which is used to
- convert parameter objects to the components of the request URI.
- 2008-02-14 Atsushi Enomoto <[email protected]>
- * WebMessageFormatter.cs : new message formatter that is created
- from WebHttpBehavior and handles [WebGet] or [WebInvoke]. Not done.
- 2008-02-13 Atsushi Enomoto <[email protected]>
- * QueryStringConverter.cs : I could just check null parameter.
- 2008-02-13 Atsushi Enomoto <[email protected]>
- * QueryStringConverter.cs: CanConvert() supports cpl more types.
- Implemented ConvertStringToValue() and ConvertValueToString().
- 2008-02-12 Atsushi Enomoto <[email protected]>
- * WebHttpDispatchOperationSelector.cs : stubbed members.
- 2008-02-07 Atsushi Enomoto <[email protected]>
- * JsonQueryStringConverter.cs, QueryStringConverter.cs,
- WebHttpDispatchOperationSelector.cs : mostly stubs.
|