ChangeLog 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. 2007-10-05 Atsushi Enomoto <[email protected]>
  2. * WebService.cs : Do not always expect HttpContext existence.
  3. Fixed bug #331183.
  4. 2007-10-05 Atsushi Enomoto <[email protected]>
  5. * WebService.cs : [ComVisible].
  6. 2006-12-04 Atsushi Enomoto <[email protected]>
  7. * WebService.cs : implemented SoapVersion as documented in MSDN.
  8. 2006-11-15 Atsushi Enomoto <[email protected]>
  9. * WebService.cs: minor API fixes (attributes).
  10. 2006-11-14 Atsushi Enomoto <[email protected]>
  11. * WebServiceBindingAttribute.cs, WebServiceAttribute.cs :
  12. 2.0 API fixes (WsiClaims -> WsiProfiles).
  13. * WsiClaims.cs : removed obsolete type.
  14. 2006-06-21 Rafael Teixeira <[email protected]>
  15. * WebServiceBindingAttribute.cs: new 2.0 property WsiProfiles ConformsTo.
  16. 2006-01-03 Chris Toshok <[email protected]>
  17. * WsiProfiles.cs: new 2.0 enum.
  18. 2005-06-08 Konstantin Triger <[email protected]>
  19. * WebMethodAttribute.cs: Added TARGET_J2EE ifdef to remove the EnterpiseServices dependency, which are not supported yet under this target
  20. 2004-08-25 Lluis Sanchez Gual <[email protected]>
  21. * WebService.cs: Get the HttpContext from the HttpContext.Current, do not
  22. wait to be set with SetContext. In this way the context is available
  23. in the web service constructor.
  24. 2004-07-13 Lluis Sanchez Gual <[email protected]>
  25. * WebServiceBindingAttribute.cs, WsiClaims.cs: Added missing attributes.
  26. 2004-07-10 Lluis Sanchez Gual <[email protected]>
  27. * WebService.cs: Added SoapVersion property.
  28. * WebServiceBindingAttribute.cs: New 2.0 properties.
  29. * WsiClaims.cs: Added new enumeration.
  30. 2004-05-12 Lluis Sanchez Gual <[email protected]>
  31. * WebService.cs: Take the session from the context.
  32. 2004-05-05 Gonzalo Paniagua Javier <[email protected]>
  33. * WebService.cs: added a HttpSessionState field and a setter method.
  34. Session now returns null if EnableSession is not set for the method
  35. invoked.
  36. 2004-02-05 Alon Gazit <[email protected]>
  37. * WebMethodAttribute.cs:
  38. * WebServicesDescriptionAttribute.cs:
  39. * WebServiceAttribute.cs:
  40. * WebServiceBindingAttribute.cs: This attribute is inherited by derived
  41. classes.changed the AttributeUsage attribute.
  42. 2004-02-05 Alon Gazit <[email protected]>
  43. * WebServiceBindingAttribute.cs: This attribute is multiuse.
  44. Changed the AttributeUsage attribute.
  45. 2004-01-10 Gonzalo Paniagua Javier <[email protected]>
  46. * WebService.cs: added SetContext ().
  47. 2003-02-25 Dave Bettin <[email protected]>
  48. * WebService.cs:
  49. Changed private application to HttpContext
  50. 2002-08-19 Tim Coleman <[email protected]>
  51. * WebService.cs:
  52. Change the attribute on Application to Description
  53. instead of WebServicesDescription.2002-08-19 Tim Coleman
  54. 2002-08-15 Tim Coleman <[email protected]>
  55. * WebServicesDescriptionAttribute:
  56. Added Description property. Should've known I spoke
  57. too soon about being complete. :-)
  58. 2002-08-07 Tim Coleman <[email protected]>
  59. * WebMethodAttribute.cs:
  60. Remove FIXME and reorganize constructors to all
  61. call this () with the big constructor.
  62. * WebServiceAttribute.cs:
  63. Remove FIXME.
  64. * WebServiceBindingAttribute.cs:
  65. Remove FIXME, and change ns to be String.Empty by
  66. default (this is the MS implementation). Reorganize
  67. constructors.
  68. * WebServicesDescriptionAttribute.cs:
  69. Code reformat.
  70. * TODOAttribute.cs:
  71. Changed namespace.
  72. *** This namespace should now be complete. ***
  73. 2002-07-23 Tim Coleman <[email protected]>
  74. * WebService.cs:
  75. Change Description to WebServicesDescription
  76. * WebServicesDescriptionAttribute.cs:
  77. Add back constructor as MS build doesn't
  78. seem to like it missing. Now calls base()
  79. with the string. Also remove the sealed
  80. modifier and change the attribute targets.
  81. 2002-07-23 Tim Coleman <[email protected]>
  82. * WebServicesDescriptionAttribute.cs:
  83. Removed the "guts" because they are defined in
  84. System.ComponentModel.DescriptionAttribute.
  85. * WebService.cs:
  86. Added attributes which were missing based on the
  87. class status page. Also added an HttpApplication
  88. object and modified the properties to use that
  89. object.
  90. 2002-07-22 Tim Coleman <[email protected]>
  91. * WebServicesDescriptionAttribute.cs:
  92. Added for build in System.Web.Services.Protocols
  93. 2002-07-22 Tim Coleman <[email protected]>
  94. * WebMethodAttribute.cs:
  95. Remove comments around TransactionOption bits
  96. because I added that enum.
  97. * WebServiceAttribute.cs:
  98. * WebServiceBindingAttribute.cs:
  99. Added "sealed" to protection level, which I missed
  100. before.
  101. 2002-07-19 Tim Coleman <[email protected]>
  102. * ChangeLog:
  103. * TODOAttribute.cs:
  104. * WebMethodAttribute.cs:
  105. * WebService.cs:
  106. * WebServiceAttribute.cs:
  107. * WebServiceBindingAttribute.cs:
  108. Initial implementation