ChangeLog 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. 2002-08-24 Tim Coleman <[email protected]>
  2. * HttpServerProtocol.cs:
  3. * WebServiceHandler.cs:
  4. Some commented code added, from analysing
  5. an exception trace.
  6. * MimeReturnWriter.cs:
  7. * XmlReturnWriter.cs:
  8. New stubs added.
  9. 2002-08-23 Tim Coleman <[email protected]>
  10. * ServerProtocol.cs:
  11. * SoapServerProtocol.cs:
  12. More cleanup, comparison with class status.
  13. * WebServiceHandler.cs:
  14. * HttpServerProtocol.cs:
  15. New stubs added.
  16. 2002-08-15 Tim Coleman <[email protected]>
  17. * ServerProtocol.cs:
  18. * SoapServerProtocol.cs:
  19. Some more implementation.
  20. 2002-08-06 Tim Coleman <[email protected]>
  21. * ServerProtocol.cs:
  22. Add new class as implied by class statuc page.
  23. SoapServerProtocol is derived from this.
  24. * SoapServerProtocol.cs:
  25. Change base class to ServerProtocol. Add some
  26. properties shown by class status page.
  27. * SoapClientMethod.cs:
  28. This class should not be sealed. Add some
  29. fields shown by the class status page.
  30. 2002-07-25 Tim Coleman <[email protected]>
  31. * SoapClientMethod.cs:
  32. * SoapServerProtocol.cs:
  33. Add new internal classes as discovered.
  34. * SoapClientMessage.cs:
  35. * SoapMessage.cs:
  36. * SoapServerMessage.cs:
  37. * WebClientAsyncResult.cs:
  38. Add internal constructor, as found on class
  39. status page; modify some properties.
  40. 2002-07-23 Tim Coleman <[email protected]>
  41. * SoapException.cs: modified constructors to
  42. call base class correctly.
  43. * WebClientAsyncResult: some implementation
  44. 2002-07-23 Tim Coleman <[email protected]>
  45. * HttpGetClientProtocol.cs:
  46. * HttpPostClientProtocol.cs
  47. Implemented the GetWebRequest method
  48. * HttpSimpleClientProtocol:
  49. Some implementation of the EndInvoke method
  50. * HttpWebClientProtocol.cs:
  51. Set the UserAgent string appropriately
  52. Implemented the GetWebRequest method
  53. Implemented the GetWebResponse methods
  54. * SoapHttpClientProtocol.cs:
  55. Removed unused fields
  56. Implemented the GetWebRequest method
  57. * SoapMessage.cs:
  58. Implemented the EnsureStage method
  59. * WebClientProtocol.cs:
  60. Added a static constructor to construct the cache
  61. Implemented the Abort method
  62. Implemented the AddToCache, GetFromCache methods
  63. Implemented the GetWebRequest method
  64. Implemented the GetWebResponse methods
  65. 2002-07-23 Tim Coleman <[email protected]>
  66. * LogicalMethodTypes.cs:
  67. * SoapHeaderDirection.cs:
  68. * SoapMessageStage.cs:
  69. * SoapParameterStyle.cs:
  70. * SoapServiceRoutingStyle.cs:
  71. Explicitly define values in enum to match
  72. .NET.
  73. * SoapMessage.cs:
  74. Removed constructor which should not be present.
  75. * SoapException.cs:
  76. Made protected fields private as they should
  77. be.
  78. * SoapHeaderException.cs:
  79. Modifications to constructors to propertly
  80. call base class constructor
  81. 2002-07-22 Tim Coleman <[email protected]>
  82. * SoapHeaderException.cs:
  83. Fixed name error in constructor
  84. * SoapUnknownHeader.cs:
  85. Added reference to System.Xml.Serialization
  86. 2002-07-22 Tim Coleman <[email protected]>
  87. * SoapHeaderException.cs:
  88. New file added
  89. 2002-07-22 Tim Coleman <[email protected]>
  90. * AnyReturnReader.cs:
  91. * HtmlFormParameterReader.cs :
  92. * HtmlFormParameterWriter.cs :
  93. * HttpGetClientProtocol.cs :
  94. * HttpMethodAttribute.cs :
  95. * HttpPostClientProtocol.cs :
  96. * HttpSimpleClientProtocol.cs :
  97. * HttpWebClientProtocol.cs :
  98. * LogicalMethodInfo.cs :
  99. * LogicalMethodTypes.cs :
  100. * MatchAttribute.cs :
  101. * MimeFormatter.cs :
  102. * MimeParameterReader.cs :
  103. * MimeParameterWriter.cs :
  104. * MimeReturnReader.cs :
  105. * NopReturnReader.cs :
  106. * PatternMatcher.cs :
  107. * SoapClientMessage.cs :
  108. * SoapDocumentMethodAttribute.cs :
  109. * SoapDocumentServiceAttribute.cs :
  110. * SoapException.cs :
  111. * SoapExtension.cs :
  112. * SoapExtensionAttribute.cs :
  113. * SoapHeader.cs :
  114. * SoapHeaderAttribute.cs :
  115. * SoapHeaderCollection.cs :
  116. * SoapHeaderDirection.cs :
  117. * SoapHttpClientProtocol.cs :
  118. * SoapMessage.cs :
  119. * SoapMessageStage.cs :
  120. * SoapParameterStyle.cs :
  121. * SoapRpcMethodAttribute.cs :
  122. * SoapRpcServiceAttribute.cs :
  123. * SoapServerMessage.cs :
  124. * SoapServiceRoutingStyle.cs :
  125. * SoapUnknownHeader.cs :
  126. * TextReturnReader.cs :
  127. * UrlEncodedParameterWriter.cs :
  128. * UrlParameterReader.cs :
  129. * UrlParameterWriter.cs :
  130. * ValueCollectionParameterReader.cs :
  131. * WebClientAsyncResult.cs :
  132. * WebClientProtocol.cs :
  133. * WebServiceHandlerFactory.cs :
  134. * XmlReturnReader.cs :
  135. Add missing methods and attributes to make as few missing
  136. things as possible in this namespace. This is from the
  137. project status page.
  138. 2002-07-20 Tim Coleman <[email protected]>
  139. * AnyReturnReader.cs:
  140. * HtmlFormParameterReader.cs:
  141. * HtmlFormParameterWriter.cs:
  142. * HttpGetClientProtocol.cs:
  143. * HttpMethodAttribute.cs:
  144. * HttpPostClientProtocol.cs:
  145. * HttpSimpleClientProtocol.cs:
  146. * HttpWebClientProtocol.cs:
  147. * MatchAttribute.cs:
  148. * MimeFormatter.cs:
  149. * MimeParameterReader.cs:
  150. * MimeParameterWriter.cs:
  151. * MimeReturnReader.cs:
  152. * NopReturnReader.cs:
  153. * PatternMatcher.cs:
  154. * SoapClientMessage.cs:
  155. * SoapDocumentMethodAttribute.cs:
  156. * SoapDocumentServiceAttribute.cs:
  157. * SoapException.cs:
  158. * SoapExtensionAttribute.cs:
  159. * SoapExtension.cs:
  160. * SoapHeaderAttribute.cs:
  161. * SoapHeaderCollection.cs:
  162. * SoapHeader.cs:
  163. * SoapHeaderDirection.cs:
  164. * SoapHttpClientProtocol.cs:
  165. * SoapMessage.cs:
  166. * SoapMessageStage.cs:
  167. * SoapParameterStyle.cs:
  168. * SoapRpcMethodAttribute.cs:
  169. * SoapRpcServiceAttribute.cs:
  170. * SoapServerMessage.cs:
  171. * SoapServiceRoutingStyle.cs:
  172. * SoapUnknownHeader.cs:
  173. * TextReturnReader.cs:
  174. * UrlEncodedParameterWriter.cs:
  175. * UrlParameterReader.cs:
  176. * UrlParameterWriter.cs:
  177. * ValueCollectionParameterReader.cs:
  178. * WebClientAsyncResult.cs:
  179. * WebClientProtocol.cs:
  180. * WebServiceHandlerFactory.cs:
  181. * XmlReturnReader.cs:
  182. Added new stubbs and some implementation
  183. * LogicalMethodTypes.cs:
  184. Added [Serializable] attribute which was missing.
  185. 2002-07-19 Tim Coleman <[email protected]>
  186. * ChangeLog:
  187. * LogicalMethodInfo.cs:
  188. * LogicalMethodTypes.cs:
  189. Add required classes to maek System.Web.Services.Description
  190. buildable.