ChangeLog 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. 2010-07-14 Atsushi Enomoto <[email protected]>
  2. * HttpReplyChannel.cs : pass HTTP ContentType header value to
  3. MessageEncoder.ReadMessage().
  4. 2010-07-08 Atsushi Enomoto <[email protected]>
  5. * HttpRequestContext.cs : remove extra Action handling and old comment.
  6. 2010-07-05 Atsushi Enomoto <[email protected]>
  7. * HttpRequestContext.cs, HttpChannelListener.cs, HttpReplyChannel.cs:
  8. rename unnecessary "Standalone" (removed).
  9. 2010-07-05 Atsushi Enomoto <[email protected]>
  10. * HttpStandaloneReplyChannel.cs
  11. HttpStandaloneRequestContext.cs
  12. HttpStandaloneChannelListener.cs
  13. HttpReplyChannel.cs
  14. HttpRequestContext.cs
  15. HttpChannelListener.cs : renamed former 3 files to latter 3 files.
  16. 2010-07-05 Atsushi Enomoto <[email protected]>
  17. * HttpStandaloneReplyChannel.cs, HttpChannelListenerEntry.cs,
  18. HttpContextInfo.cs, HttpListenerManager.cs,
  19. HttpStandaloneRequestContext.cs, HttpListenerManagerTable.cs:
  20. Fixed wsdl support in the new codebase, so enabled it again, and
  21. made significant changes for ASP.NET integration. Now ASP.NET
  22. implementation switched to the new one.
  23. 2010-07-05 Atsushi Enomoto <[email protected]>
  24. * HttpStandaloneReplyChannel.cs
  25. HttpContextInfo.cs
  26. HttpListenerManager.cs
  27. HttpStandaloneRequestContext.cs
  28. HttpListenerManagerTable.cs : revert previous changes, regression
  29. on wsdl support.
  30. 2010-07-02 Atsushi Enomoto <[email protected]>
  31. * HttpStandaloneReplyChannel.cs, HttpStandaloneRequestContext.cs:
  32. add more code that the asp.net stuff will become like.
  33. 2010-07-02 Atsushi Enomoto <[email protected]>
  34. * HttpStandaloneReplyChannel.cs, HttpListenerManager.cs,
  35. HttpStandaloneRequestContext.cs :
  36. refactoring, to add ASP.NET implementation. (not in use yet)
  37. 2010-07-02 Atsushi Enomoto <[email protected]>
  38. * HttpContextInfo.cs, HttpListenerManager.cs,
  39. HttpListenerManagerTable.cs : add implementation for ASP.NET, not
  40. in use yet.
  41. 2010-06-24 Atsushi Enomoto <[email protected]>
  42. * HttpListenerManager.cs : finish pending wait handle when closing
  43. a listener. Fixed the issue on closing host/listener/channels.
  44. 2010-06-24 Atsushi Enomoto <[email protected]>
  45. * HttpStandaloneReplyChannel.cs : do not try to enter close loop
  46. between request context and this.
  47. 2010-06-23 Atsushi Enomoto <[email protected]>
  48. * HttpStandaloneChannelListener.cs
  49. HttpStandaloneReplyChannel.cs
  50. HttpStandaloneRequestContext.cs
  51. HttpListenerManagerTable.cs
  52. HttpChannelListenerEntry.cs
  53. HttpContextInfo.cs
  54. HttpListenerManager.cs :
  55. Refresh implementation for HTTP channel listener in new namespace,
  56. which works fine with throttling.
  57. It still has some issue in closing channels or listeners, so it
  58. does not replace existing implementation yet.