ChangeLog 3.8 KB

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