ChangeLog 24 KB

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