ChangeLog 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. 2004-01-27 Lluis Sanchez Gual <[email protected]>
  2. * SoapDocumentMethodAttribute.cs: Fixed bug in ResponseNamespace.
  3. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  4. * HttpWebClientProtocol.cs: Added missing property.
  5. * Methods.cs: Default binding for a method must be null.
  6. * SoapHeaderDirection.cs: Added missing enum value.
  7. * SoapMessage.cs: Added missing property.
  8. * TypeStubManager.cs: Removed unneded check from AddBinding.
  9. In GetBinding(), return default binding if name is null.
  10. * ValueCollectionParameterReader.cs: IsPrimitive must be internal.
  11. 2004-01-21 Lluis Sanchez Gual <[email protected]>
  12. * HttpSoapWebServiceHandler.cs, SoapHttpClientProtocol.cs: Do not use
  13. indented format for requests and responses. SOAPAction header value
  14. must be quoted (fix by Yaacov Akiba Slama).
  15. 2004-01-21 Lluis Sanchez Gual <[email protected]>
  16. * Methods.cs: Set the correct namespaces for Fault. This fixes bug #53117.
  17. Based on the fix by Eran Domb.
  18. 2004-01-19 Lluis Sanchez Gual <[email protected]>
  19. * Methods.cs: Get the method namespace from the binding, not from the web
  20. service.
  21. * TypeStubManager.cs: When adding a binding, ignore it if it has already
  22. been added. Changed WebServiceLiteralNamespace by the method
  23. GetWebServiceLiteralNamespace. The literal namespace depends on the binding
  24. namespace, so it has to be provided as parameter.
  25. * XmlReturnReader.cs, XmlReturnWriter.cs: Use GetWebServiceLiteralNamespace
  26. instead of WebServiceLiteralNamespace.
  27. 2004-01-14 Lluis Sanchez Gual <[email protected]>
  28. * Methods.cs: Set the correct element name and namespace for headers (those
  29. are not managed like other data classes).
  30. 2004-01-10 Gonzalo Paniagua Javier <[email protected]>
  31. * HttpSoapWebServiceHandler.cs:
  32. * HttpSimpleWebServiceHandler.cs: set
  33. base.Context property.
  34. * WebServiceHandler.cs: added set_Context and set the context for the
  35. WebService when creating the instance.
  36. 2003-12-23 Lluis Sanchez Gual <[email protected]>
  37. * SoapDocumentationHandler.cs: Added support for DISCO file generation.
  38. 2003-12-16 Lluis Sanchez Gual <[email protected]>
  39. * HttpSimpleClientProtocol.cs: Do not encode the request url, since it is
  40. already encoded by the MimeParameterWriter.
  41. * MatchAttribute.cs: Set default value for Group to 1.
  42. * TextReturnReader.cs: Implemented. With this it is possible to create an
  43. XML web service that parse the contents of a web page.
  44. 2003-12-15 Lluis Sanchez Gual <[email protected]>
  45. * HttpSoapWebServiceHandler.cs: Added check for valid SOAPAction header.
  46. Fixed bug when routing style is RequestElement.
  47. Removed GetMethodFromAction. This is done now in the type stub.
  48. Other minor fixes.
  49. * Methods.cs, WebServiceHelper.cs: Faults are always serialized using
  50. literal format. Removed unneded code.
  51. 2003-12-12 Lluis Sanchez Gual <[email protected]>
  52. * Methods.cs: Added special handling for RPC format.
  53. 2003-11-27 Lluis Sanchez Gual <[email protected]>
  54. * Methods.cs: Added correct namespace for serialization in Fault class.
  55. * SoapHttpClientProtocol.cs: Changed the method used to check if the
  56. result is a fault. Now the check is done inside
  57. WebServiceHelper.ReadSoapMessage. Removed some debug writelines.
  58. * WebServiceHelper.cs: If the message body is a fault, use the fault
  59. serializer.
  60. 2003-11-24 Lluis Sanchez Gual <[email protected]>
  61. * Methods.cs, TypeStubManager.cs, SoapMessage.cs: Removed TODO comment.
  62. * SoapDocumentationHandler.cs: Check that the documentation page exist.
  63. * SoapHttpClientProtocol.cs: Removed cast from WebResponse to
  64. HttpWebResponse. This fixes bug #51281.
  65. 2003-11-20 Gonzalo Paniagua Javier <[email protected]>
  66. * HttpSoapWebServiceHandler.cs: WebException is ok here for wrong
  67. content encoding...
  68. * SoapHttpClientProtocol.cs: ... but here, we should throw an
  69. InvalidOperationException including the full response.
  70. * WebServiceHelper.cs:
  71. (GetContentEncoding): now fills an output variable with the name of the
  72. content encoding used.
  73. (InvalidOperation): new method to build the message for
  74. InvalidOperationException.
  75. 2003-11-20 Gonzalo Paniagua Javier <[email protected]>
  76. * SoapHttpClientProtocol.cs:
  77. * WebServiceHelper.cs: throw a WebException instead of an Exception.
  78. Fixes bug #51193.
  79. 2003-10-26 Miguel de Icaza <[email protected]>
  80. * WebServiceHelper.cs: Compute content type and encoding
  81. correctly in the absence of extra options.
  82. 2003-10-22 Lluis Sanchez Gual <[email protected]>
  83. * Methods.cs: Class Fault is now public, so it can be serialized.
  84. 2003-10-15 Lluis Sanchez Gual <[email protected]>
  85. * TypeStubManager.cs: Added OperationName property.
  86. 2003-10-13 Lluis Sanchez Gual <[email protected]>
  87. * HttpGetTypeStubInfo.cs, HttpPostTypeStubInfo.cs, HttpSimpleTypeStubInfo.cs,
  88. HttpSoapWebServiceHandler.cs, Methods.cs, SoapHttpClientProtocol.cs,
  89. TypeStubManager.cs
  90. Added class LogicalTypeInfo, which contains info common to all protocols
  91. through which a web service can be accessed. Also, modified the way
  92. Serializers are created. Instead of creating one by one, they are now
  93. created all at once. This will make serialization creation more efficient
  94. when the serializer code generator is in place.
  95. * SoapRpcMethodAttribute.cs: Set the correct default values for the
  96. properties.
  97. * WebServiceHelper.cs: Removed unused method GetServiceNamespace().
  98. * XmlReturnReader.cs, XmlReturnWriter.cs: Get the namespace for the return
  99. type from LogicalTypeInfo.
  100. 2003-10-12 Lluis Sanchez Gual <[email protected]>
  101. * SoapHttpClientProtocol.cs: Replaced AsyncInfo by a new
  102. SoapWebClientAsyncResult class derived from WebClientAsyncResult.
  103. * WebClientAsyncResult.cs: Removed unneeded members.
  104. 2003-10-10 Gonzalo Paniagua Javier <[email protected]>
  105. * SoapDocumentationHandler.cs: don't close the response stream here
  106. to allow filtering.
  107. 2003-10-06 Lluis Sanchez Gual <[email protected]>
  108. * HtmlFormParameterWriter.cs: Fixed WriteRequest().
  109. * HttpGetTypeStubInfo.cs, HttpPostTypeStubInfo.cs: Check that
  110. HttpMethodAttribute is present in proxy's method.
  111. * HttpSimpleClientProtocol.cs: Forgot to call InitializeRequest before
  112. getting the request stream.
  113. * UrlEncodedParameterWriter.cs: in Encode(), take into account that
  114. requestEncoding can be null.
  115. 2003-10-04 Lluis Sanchez Gual <[email protected]>
  116. * SoapDocumentationHandler.cs: Moved here the code from
  117. WebServiceHandlerFactory that generates the documentation page.
  118. * WebServiceHandlerFactory.cs: Moved the code that generates the doc page
  119. to SoapDocumentationHandler.cs.
  120. * HttpGetClientProtocol.cs, HttpGetWebServiceHandler.cs,
  121. HttpPostClientProtocol.cs, HttpPostWebServiceHandler.cs,
  122. HttpSimpleWebServiceHandler.cs, HttpSoapWebServiceHandler.cs,
  123. SoapHttpClientProtocol.cs: Changed parameters of GetTypeStub call.
  124. * HttpGetTypeStubInfo.cs, HttpPostTypeStubInfo.cs: Added ProtocolName
  125. property. Added check for valid parameters.
  126. * HttpSimpleTypeStubInfo.cs: Define return MimeFormatter in constructor.
  127. * Methods.cs: BindingInfo and related properties moved to base TypeStubInfo.
  128. Added properties for XmlImporter and SoapImporter.
  129. * TypeStubManager.cs: Added BindingInfo and related properties.
  130. Changed GetTypeStub method. Now it takes the name of the protocol for
  131. which to get the type stub info.
  132. * ValueCollectionParameterReader.cs: IsSupported should only return true
  133. for input primitive parameters or array of primitives.
  134. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  135. * SoapDocumentationHandler.cs: it does not generate the documentation
  136. page any more. GetDescription and GetSchemas are now internal.
  137. * WebServiceHandlerFactory.cs: generate the documentation page without
  138. doing a Transfer () but instead creating a Page instance from the wsdl
  139. help file. This file is located from the configuration file that
  140. contains the <wsdlHelpGenerator> tag.
  141. 2003-10-01 Lluis Sanchez Gual <[email protected]>
  142. * HtmlFormParameterReader.cs, HtmlFormParameterWriter.cs,
  143. HttpGetClientProtocol.cs, HttpPostClientProtocol.cs,
  144. HttpSimpleClientProtocol.cs, MimeFormatter.cs, MimeParameterWriter.cs,
  145. NopReturnReader.cs, UrlEncodedParameterWriter.cs, UrlParameterReader.cs,
  146. UrlParameterWriter.cs, ValueCollectionParameterReader.cs,
  147. WebClientAsyncResult.cs, XmlReturnReader.cs, XmlReturnWriter.cs
  148. : Implemented.
  149. * HttpSoapWebServiceHandler.cs, SoapClientMessage.cs, SoapServerMessage.cs,
  150. SoapDocumentationHandler.cs, SoapHttpClientProtocol.cs,
  151. WebServiceHelper.cs: Changed due to modifications in TypeStubInfo.
  152. * Methods.cs: Moved common code to TypeStubInfo.cs.
  153. * WebServiceHandler.cs: Moved invoke code to HttpSoapWebServiceHandler.cs
  154. * ServerProtocol.cs, SoapServerProtocol.cs: Fixed formatting.
  155. * WebServiceHandlerFactory.cs: Added support for HttpGet and HttpPost.
  156. 2003-09-29 Lluis Sanchez Gual <[email protected]>
  157. * Methods.cs: Little fix in binding check.
  158. * SoapExtension.cs: Implemented ChainStream. Changed some methods from
  159. public to internal.
  160. * SoapClientMessage: Implemented EnsureInStage.
  161. * SoapServerMessage: Implemented EnsureInStage, EnsureOutStage.
  162. 2003-09-28 Lluis Sanchez Gual <[email protected]>
  163. * HttpSoapWebServiceHandler.cs: In SerializeResponse method, improved
  164. management of exceptions. Also added support for BufferResponse flag.
  165. * Methods.cs: Added MethodAttribute property in MethodStubInfo. Added
  166. XmlImporter, SoapImporter and Type properties in TypeStubInfo.
  167. * SoapMessage.cs: little fix.
  168. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  169. * SoapDocumentationHandler.cs: Added support for on-the-fly proxy
  170. code generation in documentation pages.
  171. 2003-09-04 Lluis Sanchez Gual <[email protected]>
  172. * Methods.cs: Added support for bare parameter style. Fixed some defaults.
  173. 2003-09-01 Lluis Sanchez Gual <[email protected]>
  174. * Methods.cs: In TypeStubInfo, added Documentation field.
  175. 2003-07-28 Lluis Sanchez Gual <[email protected]>
  176. * HttpSoapWebServiceHandler.cs:
  177. * Methods.cs: Added SoapBindingStyle, SoapBindingUse, InputMembersMapping
  178. and OutputMembersMapping properties in MethodStubInfo.
  179. Use default value defined in TypeStubInfo for RequestNamespace,
  180. ResponseNamespace and other properties.
  181. Added class BindingInfo to store information about class bindings.
  182. In TypeStubInfo added SoapBindingStyle, DefaultBinding, Methods and
  183. Bindings properties.
  184. * SoapRpcMethodAttribute.cs: Use WebServiceAttribute.DefaultNamespace constant
  185. instead of hardcoded namespace name.
  186. * WebServiceHandlerFactory.cs: Create new SoapDocumentationHandler for
  187. documentation requests.
  188. * SoapDocumentationHandler.cs: new handler that generates WS documentation.
  189. 2003-07-22 Lluis Sanchez Gual <[email protected]>
  190. * WebServiceHandler.cs: Fixed Invoke(). ParameterInfo.Position is now
  191. zero-based, like in MS.NET.
  192. 2003-07-16 Lluis Sanchez Gual <[email protected]>
  193. * SoapHttpClientProtocol.cs: Removed debug WriteLine.
  194. 2003-07-10 Lluis Sanchez Gual <[email protected]>
  195. * HttpSoapWebServiceHandler.cs: MS puts the soap action in quotation marks??
  196. Fix for this case.
  197. * SoapHttpClientProtocol.cs: Implemented support for asynchronous calls
  198. (BeginInvoke and EndInvoke).
  199. 2003-07-09 Lluis Sanchez Gual <[email protected]>
  200. * SoapHttpClientProtocol.cs, HttpSoapWebServiceHandler.cs, Methods.cs:
  201. Added support for soap extensions. Moved some code to
  202. WebServiceHelper. Implemented support for the two types of RoutingStyle. Added support
  203. for In and Out headers. Improved management of exceptions.
  204. * SoapClientMessage.cs: code to retrieve soap headers moved to SoapMessage.
  205. * SoapExtension.cs: Added methods for getting and creating soap extensions.
  206. * SoapMessage.cs: Added methods for getting and assigning headers to an object.
  207. * SoapServerMessage.cs: Added setter for MethodStubInfo. Other minor fixes.
  208. * WebServiceHandler.cs: Added support for In and Out headers. Fixed management of exceptions.
  209. * WebServiceHandlerFactory.cs: Check if the request protocol is supported.
  210. * WebServiceHelper.cs: Added method for reading a soap request.
  211. 2003-07-04 Lluis Sanchez Gual <[email protected]>
  212. * LogicalMethodInfo.cs: Fixed Invoke method. If return type is void,
  213. then the result object array only contain output parameters.
  214. * Methods.cs: In class MethodStubInfo, added support from some server properties
  215. taken from WebMethodAttribute. Now MethodStubInfo can be created without SoapDocument*
  216. or SoapRpc* attributes, in which case takes default values from TypeStubInfo.
  217. Added method for getting header info.
  218. In class Fault: added constructor for creating a fault from a SoapException.
  219. In class TypeStubInfo: new way to manage serializers for headers. Now it is possible to
  220. get a header using a name and namespace (used when deserializing).
  221. * SoapHttpClientProtocol.cs: moved WriteSoapEnvelope method to WebServiceHelper (so it can be shared).
  222. Also moved other serialization stuff to WebServiceHelper.
  223. * SoapMessage.cs: Added some convenient constructors and internal properties.
  224. Implemented GetOutParameterValue and GetReturnValue.
  225. * SoapServerMessage.cs: Implemented.
  226. * WebServiceHandler.cs: Implemented method Invoke.
  227. * WebServiceHandlerFactory.cs: Basic implementation.
  228. * WebServiceHelper.cs: Added. Has some methods shared between client and server classes.
  229. * HttpSoapWebServiceHandler.cs: Added. IHttpHandler implementation for HttpSoap requests.
  230. 2003-06-21 Gonzalo Paniagua Javier <[email protected]>
  231. * HttpWebClientProtocol.cs: handle cookies if the request is a
  232. HttpWebRequest. It gets the cookies set in the response and sends them
  233. on subsequent requests.
  234. * SoapHttpClientProtocol.cs:
  235. (GetWebRequest): just calls the base method.
  236. (SendRequest): set the method here.
  237. (Invoke): call GetWebResponse instead of request.GetResponse.
  238. * WebClientProtocol.cs:
  239. (GetWebRequest): set some properties of the request.
  240. (GetWebResponse): if we get a WebException containing a response, return
  241. that as the response and ignore the exception.
  242. (GetWebResponse (req, async)): only call EndGetResponse.
  243. 2003-06-14 Lluis Sanchez Gual <[email protected]>
  244. * Methods.cs: Added information about headers in MethodStubInfo. Added cache of serializers
  245. in TypeStubInfo so serializers for headers they can be shared by several methods.
  246. * SoapClientMessage.cs: Headers added in the constructor.
  247. * SoapMessage.cs: Added header list initialization.
  248. * SoapHttpClientProtocol.cs: Added support soap headers.
  249. 2003-06-13 Lluis Sanchez Gual <[email protected]>
  250. * Methods.cs: Added serializer to MethodStubInfo for deserializing faults.
  251. * SoapHttpClientProtocol.cs: Added support for faults.
  252. 2003-06-10 Lluis Sanchez Gual <[email protected]>
  253. * Methods.cs: removed handler for UnknownNode event
  254. 2003-06-05 Lluis Sanchez Gual <[email protected]>
  255. * Methods.cs: added support for encoded format
  256. 2003-06-01 Miguel de Icaza <[email protected]>
  257. * Methods.cs (MethodStubInfo): If creating an RPC call, pass an
  258. optional XmlElementAttribute with the namespace set to null; Use
  259. this on each element of the request and response serializers.
  260. (MakeRequestSerializer, MakeResponseSerializer): Use the empty
  261. element for the return values.
  262. * SoapRpcMethodAttribute.cs: Drop the default name on the
  263. SoapRpcMethodAttribute, it was incorrectly given a default name.
  264. 2003-05-30 Miguel de Icaza <[email protected]>
  265. * Methods.cs (MethodStubInfo): Start support for RPC style as well
  266. as Literal style. Take an object instead of a
  267. SoapDocumentMethodAttribute, and allow the value to be also a
  268. SoapRpcMethodAttribute. Pull data from both.
  269. Kill SoapBindingUse, we only use this during validation.
  270. Turn out Google uses RPC/Literal, and its a good demo.
  271. (MakeResponseSerializer): OneWay is not the only
  272. condition to catch; Also void return types are not required to
  273. have a response.
  274. (MakeRequestSerializer): InParameters *might* be ref parameters,
  275. deal with that here too.
  276. Add some debugging code for tracking down missing implementation
  277. details in serialization creation.
  278. (MakeResponseSerializer): DUH. Use the
  279. ResponseName/ResponseNamespace for the member import, not the
  280. RequestName and RequestNamespace. The bugs of cut-and-paste.
  281. 2003-05-29 Miguel de Icaza <[email protected]>
  282. * SoapHttpClientProtocol.cs (CreateMessage): Kill. Move
  283. functionality to Invoke.
  284. (Invoke): Use new TypeStubInfo/MethodStubInfo instead.
  285. * SoapClientMessage.cs: Drop old mechanism, use MethodStubInfo instead.
  286. * Methods.cs: New file. Contains the managed for TypeStubs and
  287. MethodInfoStubs.
  288. A MethodInfoStub contains the serializers we use for the SOAP
  289. request.
  290. * SoapClientMessage.cs: Drop parameters from the clientmessage, it
  291. does not belong here. Drop oneway, we canextract that from the
  292. SoapDocumentMethodAttribute class that we pass.
  293. 2003-05-28 Miguel de Icaza <[email protected]>
  294. * LogicalMethodInfo.cs (Create): Implement begin/end method
  295. pairing.
  296. (Name): Implement.
  297. (EndMethodInfo): Always return end_method_info.
  298. 2003-04-30 Miguel de Icaza <[email protected]>
  299. * SoapHttpClientProtocol.cs: Flag the methods in the chain that
  300. gets the caller method as non-inlineable.
  301. 2003-04-29 Miguel de Icaza <[email protected]>
  302. * SoapHttpClientProtocol.cs (CreateMessage): Extract information
  303. from the method to be called.
  304. * SoapDocumentMethodAttribute.cs: Do not initialize all the fields
  305. on the attribute at bootstrap, for default values, just compute
  306. them when queried.
  307. * SoapMessage.cs (SetStage): New internal method, used to register
  308. the stage as we move along the soap pipeline.
  309. * LogicalMethodInfo.cs: Most of this is implemented. Its only
  310. missing a few bits in the Create() method.
  311. * SoapHttpClientProtocol.cs: Begin implementation of Invoke, which
  312. lead to other dependencies to be implemented.
  313. * LogicalMethodInfo.cs: Mostly complete. It is only missing the
  314. async features (BeginInvoke/EndInvoke) on a LogicalMethodInfo.
  315. * WebClientProtocol.cs (GetWebRequest): Track the web request, so
  316. we can abort it later.
  317. (Abort): Call abort on the underlying transport.
  318. 2002-08-24 Tim Coleman <[email protected]>
  319. * HttpServerProtocol.cs:
  320. * WebServiceHandler.cs:
  321. Some commented code added, from analysing
  322. an exception trace.
  323. * MimeReturnWriter.cs:
  324. * XmlReturnWriter.cs:
  325. New stubs added.
  326. 2002-08-23 Tim Coleman <[email protected]>
  327. * ServerProtocol.cs:
  328. * SoapServerProtocol.cs:
  329. More cleanup, comparison with class status.
  330. * WebServiceHandler.cs:
  331. * HttpServerProtocol.cs:
  332. New stubs added.
  333. 2002-08-15 Tim Coleman <[email protected]>
  334. * ServerProtocol.cs:
  335. * SoapServerProtocol.cs:
  336. Some more implementation.
  337. 2002-08-06 Tim Coleman <[email protected]>
  338. * ServerProtocol.cs:
  339. Add new class as implied by class statuc page.
  340. SoapServerProtocol is derived from this.
  341. * SoapServerProtocol.cs:
  342. Change base class to ServerProtocol. Add some
  343. properties shown by class status page.
  344. * SoapClientMethod.cs:
  345. This class should not be sealed. Add some
  346. fields shown by the class status page.
  347. 2002-07-25 Tim Coleman <[email protected]>
  348. * SoapClientMethod.cs:
  349. * SoapServerProtocol.cs:
  350. Add new internal classes as discovered.
  351. * SoapClientMessage.cs:
  352. * SoapMessage.cs:
  353. * SoapServerMessage.cs:
  354. * WebClientAsyncResult.cs:
  355. Add internal constructor, as found on class
  356. status page; modify some properties.
  357. 2002-07-23 Tim Coleman <[email protected]>
  358. * SoapException.cs: modified constructors to
  359. call base class correctly.
  360. * WebClientAsyncResult: some implementation
  361. 2002-07-23 Tim Coleman <[email protected]>
  362. * HttpGetClientProtocol.cs:
  363. * HttpPostClientProtocol.cs
  364. Implemented the GetWebRequest method
  365. * HttpSimpleClientProtocol:
  366. Some implementation of the EndInvoke method
  367. * HttpWebClientProtocol.cs:
  368. Set the UserAgent string appropriately
  369. Implemented the GetWebRequest method
  370. Implemented the GetWebResponse methods
  371. * SoapHttpClientProtocol.cs:
  372. Removed unused fields
  373. Implemented the GetWebRequest method
  374. * SoapMessage.cs:
  375. Implemented the EnsureStage method
  376. * WebClientProtocol.cs:
  377. Added a static constructor to construct the cache
  378. Implemented the Abort method
  379. Implemented the AddToCache, GetFromCache methods
  380. Implemented the GetWebRequest method
  381. Implemented the GetWebResponse methods
  382. 2002-07-23 Tim Coleman <[email protected]>
  383. * LogicalMethodTypes.cs:
  384. * SoapHeaderDirection.cs:
  385. * SoapMessageStage.cs:
  386. * SoapParameterStyle.cs:
  387. * SoapServiceRoutingStyle.cs:
  388. Explicitly define values in enum to match
  389. .NET.
  390. * SoapMessage.cs:
  391. Removed constructor which should not be present.
  392. * SoapException.cs:
  393. Made protected fields private as they should
  394. be.
  395. * SoapHeaderException.cs:
  396. Modifications to constructors to propertly
  397. call base class constructor
  398. 2002-07-22 Tim Coleman <[email protected]>
  399. * SoapHeaderException.cs:
  400. Fixed name error in constructor
  401. * SoapUnknownHeader.cs:
  402. Added reference to System.Xml.Serialization
  403. 2002-07-22 Tim Coleman <[email protected]>
  404. * SoapHeaderException.cs:
  405. New file added
  406. 2002-07-22 Tim Coleman <[email protected]>
  407. * AnyReturnReader.cs:
  408. * HtmlFormParameterReader.cs :
  409. * HtmlFormParameterWriter.cs :
  410. * HttpGetClientProtocol.cs :
  411. * HttpMethodAttribute.cs :
  412. * HttpPostClientProtocol.cs :
  413. * HttpSimpleClientProtocol.cs :
  414. * HttpWebClientProtocol.cs :
  415. * LogicalMethodInfo.cs :
  416. * LogicalMethodTypes.cs :
  417. * MatchAttribute.cs :
  418. * MimeFormatter.cs :
  419. * MimeParameterReader.cs :
  420. * MimeParameterWriter.cs :
  421. * MimeReturnReader.cs :
  422. * NopReturnReader.cs :
  423. * PatternMatcher.cs :
  424. * SoapClientMessage.cs :
  425. * SoapDocumentMethodAttribute.cs :
  426. * SoapDocumentServiceAttribute.cs :
  427. * SoapException.cs :
  428. * SoapExtension.cs :
  429. * SoapExtensionAttribute.cs :
  430. * SoapHeader.cs :
  431. * SoapHeaderAttribute.cs :
  432. * SoapHeaderCollection.cs :
  433. * SoapHeaderDirection.cs :
  434. * SoapHttpClientProtocol.cs :
  435. * SoapMessage.cs :
  436. * SoapMessageStage.cs :
  437. * SoapParameterStyle.cs :
  438. * SoapRpcMethodAttribute.cs :
  439. * SoapRpcServiceAttribute.cs :
  440. * SoapServerMessage.cs :
  441. * SoapServiceRoutingStyle.cs :
  442. * SoapUnknownHeader.cs :
  443. * TextReturnReader.cs :
  444. * UrlEncodedParameterWriter.cs :
  445. * UrlParameterReader.cs :
  446. * UrlParameterWriter.cs :
  447. * ValueCollectionParameterReader.cs :
  448. * WebClientAsyncResult.cs :
  449. * WebClientProtocol.cs :
  450. * WebServiceHandlerFactory.cs :
  451. * XmlReturnReader.cs :
  452. Add missing methods and attributes to make as few missing
  453. things as possible in this namespace. This is from the
  454. project status page.
  455. 2002-07-20 Tim Coleman <[email protected]>
  456. * AnyReturnReader.cs:
  457. * HtmlFormParameterReader.cs:
  458. * HtmlFormParameterWriter.cs:
  459. * HttpGetClientProtocol.cs:
  460. * HttpMethodAttribute.cs:
  461. * HttpPostClientProtocol.cs:
  462. * HttpSimpleClientProtocol.cs:
  463. * HttpWebClientProtocol.cs:
  464. * MatchAttribute.cs:
  465. * MimeFormatter.cs:
  466. * MimeParameterReader.cs:
  467. * MimeParameterWriter.cs:
  468. * MimeReturnReader.cs:
  469. * NopReturnReader.cs:
  470. * PatternMatcher.cs:
  471. * SoapClientMessage.cs:
  472. * SoapDocumentMethodAttribute.cs:
  473. * SoapDocumentServiceAttribute.cs:
  474. * SoapException.cs:
  475. * SoapExtensionAttribute.cs:
  476. * SoapExtension.cs:
  477. * SoapHeaderAttribute.cs:
  478. * SoapHeaderCollection.cs:
  479. * SoapHeader.cs:
  480. * SoapHeaderDirection.cs:
  481. * SoapHttpClientProtocol.cs:
  482. * SoapMessage.cs:
  483. * SoapMessageStage.cs:
  484. * SoapParameterStyle.cs:
  485. * SoapRpcMethodAttribute.cs:
  486. * SoapRpcServiceAttribute.cs:
  487. * SoapServerMessage.cs:
  488. * SoapServiceRoutingStyle.cs:
  489. * SoapUnknownHeader.cs:
  490. * TextReturnReader.cs:
  491. * UrlEncodedParameterWriter.cs:
  492. * UrlParameterReader.cs:
  493. * UrlParameterWriter.cs:
  494. * ValueCollectionParameterReader.cs:
  495. * WebClientAsyncResult.cs:
  496. * WebClientProtocol.cs:
  497. * WebServiceHandlerFactory.cs:
  498. * XmlReturnReader.cs:
  499. Added new stubbs and some implementation
  500. * LogicalMethodTypes.cs:
  501. Added [Serializable] attribute which was missing.
  502. 2002-07-19 Tim Coleman <[email protected]>
  503. * ChangeLog:
  504. * LogicalMethodInfo.cs:
  505. * LogicalMethodTypes.cs:
  506. Add required classes to maek System.Web.Services.Description
  507. buildable.