ChangeLog 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. 2010-07-08 Atsushi Enomoto <[email protected]>
  2. * WebHttpBehavior.cs : Set an a default DispatchOperation to throw
  3. EndpointNotFoundException instead of raising null Invoker error.
  4. And add error handler that converts the exception to HTTP 404.
  5. 2010-03-19 Atsushi Enomoto <[email protected]>
  6. * WebHttpBehavior.cs : set FilterPriority to make it in higher
  7. priority than conflicting endpoints (such as mex endpoint).
  8. 2010-03-16 Jb Evain <[email protected]>
  9. * WebHttpBehavior.cs: use MOONLIGHT symbol to
  10. disambiguate MonoTouch and Moonlight code.
  11. 2009-10-23 Atsushi Enomoto <[email protected]>
  12. * WebHttpBehavior.cs : add experimental monotouch build.
  13. 2009-10-08 Atsushi Enomoto <[email protected]>
  14. * WebScriptEnablingBehavior.cs : use JsonQueryStringConverter, with
  15. "d" wrapper name. Allow only WrappedRequest.
  16. 2009-10-07 Atsushi Enomoto <[email protected]>
  17. * WebScriptEnablingBehavior.cs : validate body style.
  18. * WebHttpBehavior.cs : operations could miss WebGet/WebInvoke and
  19. we should not crash by NRE because of missing of those atts.
  20. 2009-10-06 Atsushi Enomoto <[email protected]>
  21. * WebScriptEnablingBehavior.cs : fix listen uri which used to result
  22. in unexpected relative recalculation against the base uri.
  23. 2009-09-18 Atsushi Enomoto <[email protected]>
  24. * WebHttpBehavior.cs : parameter Wrapped check in Validate() should
  25. not be done only for GET.
  26. 2009-09-17 Atsushi Enomoto <[email protected]>
  27. * WebScriptEnablingBehavior.cs : basic implementation. Create custom
  28. ChannelDispatchers for "/js" and "/jsdebug" like we do for
  29. /wsdl (ServiceMetadataExtension). And they return Javascript
  30. generated from ProxyGenerator in Sys.Web.Extensions.
  31. 2009-09-02 Atsushi Enomoto <[email protected]>
  32. * WebHttpBehavior.cs : now message formatters are pairs of request/
  33. reply formatters.
  34. 2009-09-02 Atsushi Enomoto <[email protected]>
  35. * WebHttpBehavior.cs : BodyStyle is operation specific.
  36. 2009-09-01 Atsushi Enomoto <[email protected]>
  37. * WebHttpBehavior.cs : on validation, check wrapped parameter style.
  38. 2009-08-06 Atsushi Enomoto <[email protected]>
  39. * WebScriptEnablingBehavior.cs : revert GetQueryStringConverter().
  40. (MSDN missing entry issue.)
  41. 2009-08-05 Atsushi Enomoto <[email protected]>
  42. * WebHttpBehavior.cs, WebScriptEnablingBehavior.cs :
  43. implemented properties as in documented way.
  44. Remove extra derived GetQueryStringConverter().
  45. 2009-08-05 Atsushi Enomoto <[email protected]>
  46. * WebHttpBehavior.cs, WebScriptEnablingBehavior.cs :
  47. mostly implemented Validate().
  48. 2008-04-21 Igor Zelmanovich <[email protected]>
  49. * WebHttpBehavior.cs : override endpoint's ContractFilter
  50. as well as AddressFilter.
  51. 2008-04-16 Atsushi Enomoto <[email protected]>
  52. * WebHttpBehavior.cs : now that ServiceHost calls Validate(),
  53. it prevents webHttpBinding working. So, removed NIE.
  54. 2008-02-15 Atsushi Enomoto <[email protected]>
  55. * WebHttpBehavior.cs : removed couple of MonoTODOs.
  56. 2008-02-15 Atsushi Enomoto <[email protected]>
  57. * WebHttpBehavior.cs : ApplyDispatchBehavior() sets address filter.
  58. 2008-02-15 Atsushi Enomoto <[email protected]>
  59. * WebHttpBehavior.cs :
  60. Call AddClientErrorInspector() in ApplyClientBehavior().
  61. Call AddServerErrorHandlers() in ApplyDispatchBehavior().
  62. 2008-02-14 Atsushi Enomoto <[email protected]>
  63. * WebHttpBehavior.cs : pass itself to WebMessageFormatter too.
  64. 2008-02-14 Atsushi Enomoto <[email protected]>
  65. * WebHttpBehavior.cs : now WebMessageFormatter requires
  66. QueryStringConverter. Hence implemented GetQueryStringConverter().
  67. 2008-02-14 Atsushi Enomoto <[email protected]>
  68. * WebHttpBehavior.cs : use WebMessageFormatter (note that they are
  69. not done yet).
  70. 2008-02-13 Atsushi Enomoto <[email protected]>
  71. * WebScriptEnablingBehavior.cs : new stub.
  72. 2008-02-12 Atsushi Enomoto <[email protected]>
  73. * WebHttpBehavior.cs : some implementation (sorta wrong).
  74. 2008-02-07 Atsushi Enomoto <[email protected]>
  75. * WebHttpBehavior.cs : stub.