ChangeLog 10 KB

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