ChangeLog 21 KB

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