ChangeLog 4.8 KB

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