ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. 2003-06-21 Gonzalo Paniagua Javier <[email protected]>
  2. * HttpWebClientProtocol.cs: handle cookies if the request is a
  3. HttpWebRequest. It gets the cookies set in the response and sends them
  4. on subsequent requests.
  5. * SoapHttpClientProtocol.cs:
  6. (GetWebRequest): just calls the base method.
  7. (SendRequest): set the method here.
  8. (Invoke): call GetWebResponse instead of request.GetResponse.
  9. * WebClientProtocol.cs:
  10. (GetWebRequest): set some properties of the request.
  11. (GetWebResponse): if we get a WebException containing a response, return
  12. that as the response and ignore the exception.
  13. (GetWebResponse (req, async)): only call EndGetResponse.
  14. 2003-06-14 Lluis Sanchez Gual <[email protected]>
  15. * Methods.cs: Added information about headers in MethodStubInfo. Added cache of serializers
  16. in TypeStubInfo so serializers for headers they can be shared by several methods.
  17. * SoapClientMessage.cs: Headers added in the constructor.
  18. * SoapMessage.cs: Added header list initialization.
  19. * SoapHttpClientProtocol.cs: Added support soap headers.
  20. 2003-06-13 Lluis Sanchez Gual <[email protected]>
  21. * Methods.cs: Added serializer to MethodStubInfo for deserializing faults.
  22. * SoapHttpClientProtocol.cs: Added support for faults.
  23. 2003-06-10 Lluis Sanchez Gual <[email protected]>
  24. * Methods.cs: removed handler for UnknownNode event
  25. 2003-06-05 Lluis Sanchez Gual <[email protected]>
  26. * Methods.cs: added support for encoded format
  27. 2003-06-01 Miguel de Icaza <[email protected]>
  28. * Methods.cs (MethodStubInfo): If creating an RPC call, pass an
  29. optional XmlElementAttribute with the namespace set to null; Use
  30. this on each element of the request and response serializers.
  31. (MakeRequestSerializer, MakeResponseSerializer): Use the empty
  32. element for the return values.
  33. * SoapRpcMethodAttribute.cs: Drop the default name on the
  34. SoapRpcMethodAttribute, it was incorrectly given a default name.
  35. 2003-05-30 Miguel de Icaza <[email protected]>
  36. * Methods.cs (MethodStubInfo): Start support for RPC style as well
  37. as Literal style. Take an object instead of a
  38. SoapDocumentMethodAttribute, and allow the value to be also a
  39. SoapRpcMethodAttribute. Pull data from both.
  40. Kill SoapBindingUse, we only use this during validation.
  41. Turn out Google uses RPC/Literal, and its a good demo.
  42. (MakeResponseSerializer): OneWay is not the only
  43. condition to catch; Also void return types are not required to
  44. have a response.
  45. (MakeRequestSerializer): InParameters *might* be ref parameters,
  46. deal with that here too.
  47. Add some debugging code for tracking down missing implementation
  48. details in serialization creation.
  49. (MakeResponseSerializer): DUH. Use the
  50. ResponseName/ResponseNamespace for the member import, not the
  51. RequestName and RequestNamespace. The bugs of cut-and-paste.
  52. 2003-05-29 Miguel de Icaza <[email protected]>
  53. * SoapHttpClientProtocol.cs (CreateMessage): Kill. Move
  54. functionality to Invoke.
  55. (Invoke): Use new TypeStubInfo/MethodStubInfo instead.
  56. * SoapClientMessage.cs: Drop old mechanism, use MethodStubInfo instead.
  57. * Methods.cs: New file. Contains the managed for TypeStubs and
  58. MethodInfoStubs.
  59. A MethodInfoStub contains the serializers we use for the SOAP
  60. request.
  61. * SoapClientMessage.cs: Drop parameters from the clientmessage, it
  62. does not belong here. Drop oneway, we canextract that from the
  63. SoapDocumentMethodAttribute class that we pass.
  64. 2003-05-28 Miguel de Icaza <[email protected]>
  65. * LogicalMethodInfo.cs (Create): Implement begin/end method
  66. pairing.
  67. (Name): Implement.
  68. (EndMethodInfo): Always return end_method_info.
  69. 2003-04-30 Miguel de Icaza <[email protected]>
  70. * SoapHttpClientProtocol.cs: Flag the methods in the chain that
  71. gets the caller method as non-inlineable.
  72. 2003-04-29 Miguel de Icaza <[email protected]>
  73. * SoapHttpClientProtocol.cs (CreateMessage): Extract information
  74. from the method to be called.
  75. * SoapDocumentMethodAttribute.cs: Do not initialize all the fields
  76. on the attribute at bootstrap, for default values, just compute
  77. them when queried.
  78. * SoapMessage.cs (SetStage): New internal method, used to register
  79. the stage as we move along the soap pipeline.
  80. * LogicalMethodInfo.cs: Most of this is implemented. Its only
  81. missing a few bits in the Create() method.
  82. * SoapHttpClientProtocol.cs: Begin implementation of Invoke, which
  83. lead to other dependencies to be implemented.
  84. * LogicalMethodInfo.cs: Mostly complete. It is only missing the
  85. async features (BeginInvoke/EndInvoke) on a LogicalMethodInfo.
  86. * WebClientProtocol.cs (GetWebRequest): Track the web request, so
  87. we can abort it later.
  88. (Abort): Call abort on the underlying transport.
  89. 2002-08-24 Tim Coleman <[email protected]>
  90. * HttpServerProtocol.cs:
  91. * WebServiceHandler.cs:
  92. Some commented code added, from analysing
  93. an exception trace.
  94. * MimeReturnWriter.cs:
  95. * XmlReturnWriter.cs:
  96. New stubs added.
  97. 2002-08-23 Tim Coleman <[email protected]>
  98. * ServerProtocol.cs:
  99. * SoapServerProtocol.cs:
  100. More cleanup, comparison with class status.
  101. * WebServiceHandler.cs:
  102. * HttpServerProtocol.cs:
  103. New stubs added.
  104. 2002-08-15 Tim Coleman <[email protected]>
  105. * ServerProtocol.cs:
  106. * SoapServerProtocol.cs:
  107. Some more implementation.
  108. 2002-08-06 Tim Coleman <[email protected]>
  109. * ServerProtocol.cs:
  110. Add new class as implied by class statuc page.
  111. SoapServerProtocol is derived from this.
  112. * SoapServerProtocol.cs:
  113. Change base class to ServerProtocol. Add some
  114. properties shown by class status page.
  115. * SoapClientMethod.cs:
  116. This class should not be sealed. Add some
  117. fields shown by the class status page.
  118. 2002-07-25 Tim Coleman <[email protected]>
  119. * SoapClientMethod.cs:
  120. * SoapServerProtocol.cs:
  121. Add new internal classes as discovered.
  122. * SoapClientMessage.cs:
  123. * SoapMessage.cs:
  124. * SoapServerMessage.cs:
  125. * WebClientAsyncResult.cs:
  126. Add internal constructor, as found on class
  127. status page; modify some properties.
  128. 2002-07-23 Tim Coleman <[email protected]>
  129. * SoapException.cs: modified constructors to
  130. call base class correctly.
  131. * WebClientAsyncResult: some implementation
  132. 2002-07-23 Tim Coleman <[email protected]>
  133. * HttpGetClientProtocol.cs:
  134. * HttpPostClientProtocol.cs
  135. Implemented the GetWebRequest method
  136. * HttpSimpleClientProtocol:
  137. Some implementation of the EndInvoke method
  138. * HttpWebClientProtocol.cs:
  139. Set the UserAgent string appropriately
  140. Implemented the GetWebRequest method
  141. Implemented the GetWebResponse methods
  142. * SoapHttpClientProtocol.cs:
  143. Removed unused fields
  144. Implemented the GetWebRequest method
  145. * SoapMessage.cs:
  146. Implemented the EnsureStage method
  147. * WebClientProtocol.cs:
  148. Added a static constructor to construct the cache
  149. Implemented the Abort method
  150. Implemented the AddToCache, GetFromCache methods
  151. Implemented the GetWebRequest method
  152. Implemented the GetWebResponse methods
  153. 2002-07-23 Tim Coleman <[email protected]>
  154. * LogicalMethodTypes.cs:
  155. * SoapHeaderDirection.cs:
  156. * SoapMessageStage.cs:
  157. * SoapParameterStyle.cs:
  158. * SoapServiceRoutingStyle.cs:
  159. Explicitly define values in enum to match
  160. .NET.
  161. * SoapMessage.cs:
  162. Removed constructor which should not be present.
  163. * SoapException.cs:
  164. Made protected fields private as they should
  165. be.
  166. * SoapHeaderException.cs:
  167. Modifications to constructors to propertly
  168. call base class constructor
  169. 2002-07-22 Tim Coleman <[email protected]>
  170. * SoapHeaderException.cs:
  171. Fixed name error in constructor
  172. * SoapUnknownHeader.cs:
  173. Added reference to System.Xml.Serialization
  174. 2002-07-22 Tim Coleman <[email protected]>
  175. * SoapHeaderException.cs:
  176. New file added
  177. 2002-07-22 Tim Coleman <[email protected]>
  178. * AnyReturnReader.cs:
  179. * HtmlFormParameterReader.cs :
  180. * HtmlFormParameterWriter.cs :
  181. * HttpGetClientProtocol.cs :
  182. * HttpMethodAttribute.cs :
  183. * HttpPostClientProtocol.cs :
  184. * HttpSimpleClientProtocol.cs :
  185. * HttpWebClientProtocol.cs :
  186. * LogicalMethodInfo.cs :
  187. * LogicalMethodTypes.cs :
  188. * MatchAttribute.cs :
  189. * MimeFormatter.cs :
  190. * MimeParameterReader.cs :
  191. * MimeParameterWriter.cs :
  192. * MimeReturnReader.cs :
  193. * NopReturnReader.cs :
  194. * PatternMatcher.cs :
  195. * SoapClientMessage.cs :
  196. * SoapDocumentMethodAttribute.cs :
  197. * SoapDocumentServiceAttribute.cs :
  198. * SoapException.cs :
  199. * SoapExtension.cs :
  200. * SoapExtensionAttribute.cs :
  201. * SoapHeader.cs :
  202. * SoapHeaderAttribute.cs :
  203. * SoapHeaderCollection.cs :
  204. * SoapHeaderDirection.cs :
  205. * SoapHttpClientProtocol.cs :
  206. * SoapMessage.cs :
  207. * SoapMessageStage.cs :
  208. * SoapParameterStyle.cs :
  209. * SoapRpcMethodAttribute.cs :
  210. * SoapRpcServiceAttribute.cs :
  211. * SoapServerMessage.cs :
  212. * SoapServiceRoutingStyle.cs :
  213. * SoapUnknownHeader.cs :
  214. * TextReturnReader.cs :
  215. * UrlEncodedParameterWriter.cs :
  216. * UrlParameterReader.cs :
  217. * UrlParameterWriter.cs :
  218. * ValueCollectionParameterReader.cs :
  219. * WebClientAsyncResult.cs :
  220. * WebClientProtocol.cs :
  221. * WebServiceHandlerFactory.cs :
  222. * XmlReturnReader.cs :
  223. Add missing methods and attributes to make as few missing
  224. things as possible in this namespace. This is from the
  225. project status page.
  226. 2002-07-20 Tim Coleman <[email protected]>
  227. * AnyReturnReader.cs:
  228. * HtmlFormParameterReader.cs:
  229. * HtmlFormParameterWriter.cs:
  230. * HttpGetClientProtocol.cs:
  231. * HttpMethodAttribute.cs:
  232. * HttpPostClientProtocol.cs:
  233. * HttpSimpleClientProtocol.cs:
  234. * HttpWebClientProtocol.cs:
  235. * MatchAttribute.cs:
  236. * MimeFormatter.cs:
  237. * MimeParameterReader.cs:
  238. * MimeParameterWriter.cs:
  239. * MimeReturnReader.cs:
  240. * NopReturnReader.cs:
  241. * PatternMatcher.cs:
  242. * SoapClientMessage.cs:
  243. * SoapDocumentMethodAttribute.cs:
  244. * SoapDocumentServiceAttribute.cs:
  245. * SoapException.cs:
  246. * SoapExtensionAttribute.cs:
  247. * SoapExtension.cs:
  248. * SoapHeaderAttribute.cs:
  249. * SoapHeaderCollection.cs:
  250. * SoapHeader.cs:
  251. * SoapHeaderDirection.cs:
  252. * SoapHttpClientProtocol.cs:
  253. * SoapMessage.cs:
  254. * SoapMessageStage.cs:
  255. * SoapParameterStyle.cs:
  256. * SoapRpcMethodAttribute.cs:
  257. * SoapRpcServiceAttribute.cs:
  258. * SoapServerMessage.cs:
  259. * SoapServiceRoutingStyle.cs:
  260. * SoapUnknownHeader.cs:
  261. * TextReturnReader.cs:
  262. * UrlEncodedParameterWriter.cs:
  263. * UrlParameterReader.cs:
  264. * UrlParameterWriter.cs:
  265. * ValueCollectionParameterReader.cs:
  266. * WebClientAsyncResult.cs:
  267. * WebClientProtocol.cs:
  268. * WebServiceHandlerFactory.cs:
  269. * XmlReturnReader.cs:
  270. Added new stubbs and some implementation
  271. * LogicalMethodTypes.cs:
  272. Added [Serializable] attribute which was missing.
  273. 2002-07-19 Tim Coleman <[email protected]>
  274. * ChangeLog:
  275. * LogicalMethodInfo.cs:
  276. * LogicalMethodTypes.cs:
  277. Add required classes to maek System.Web.Services.Description
  278. buildable.