ChangeLog 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104
  1. 2006-11-30 Atsushi Enomoto <[email protected]>
  2. * SoapHeaderMapping.cs : Now HeaderInfo became this type to implement
  3. this class. Remapped some members (e.g. IsUnknownHeader -> Custom).
  4. * Methods.cs : so, split HeaderInfo from here.
  5. * SoapMessage.cs : Added alias HeaderInfo to SoapHeaderMapping.
  6. Renamed some properties.
  7. 2006-11-30 Atsushi Enomoto <[email protected]>
  8. * ServerType.cs : Now LogicalTypeInfo became this type to implement
  9. this class (and SoapTypeStubInfo to SoapServerType later).
  10. * TypeStubManager.cs : so, split LogicalTypeInfo from here.
  11. * XmlReturnReader.cs, XmlReturnWriter.cs, Methods.cs,
  12. HttpSimpleTypeStubInfo.cs, HttpGetTypeStubInfo.cs,
  13. HttpPostTypeStubInfo.cs : LogicalTypeInfo -> ServerType.
  14. 2006-11-30 Atsushi Enomoto <[email protected]>
  15. * SoapHttpClientProtocol.cs : looks like (only) the last Text is used
  16. instead of the first one in .net.
  17. 2006-11-28 Atsushi Enomoto <[email protected]>
  18. * Fault12.cs : they should be all internal.
  19. 2006-11-28 Atsushi Enomoto <[email protected]>
  20. * Fault12.cs, fault-12.genxs, Fault12Serializer.cs :
  21. SOAP 1.2 Fault serializer and its generation sources.
  22. * SoapException.cs :
  23. Fixed .ctor() whose initialization was incorrect.
  24. * WebServiceHelper.cs, Methods.cs, HttpSoapWebServiceHandler.cs,
  25. SoapHttpClientProtocol.cs :
  26. handle SOAP 1.2 Fault.
  27. 2006-11-22 Atsushi Enomoto <[email protected]>
  28. * SoapHeader.cs WebServiceHelper.cs SoapClientMessage.cs
  29. HttpSoapWebServiceHandler.cs SoapHttpClientProtocol.cs:
  30. SOAP 1.2 Envelope support has started. Though I will have to
  31. change its internals significantly, so it is in my branch.
  32. 2006-11-21 Atsushi Enomoto <[email protected]>
  33. * WebClientProtocol.cs HttpWebClientProtocol.cs SoapException.cs
  34. SoapHeaderException.cs HttpSimpleClientProtocol.cs
  35. SoapHttpClientProtocol.cs SoapMessage.cs:
  36. assorted cosmetic API fixes.
  37. 2006-11-19 Atsushi Enomoto <[email protected]>
  38. * HttpSoapWebServiceHandler.cs: on deserializing the request, do not
  39. close the input stream. Fixed bug #79954. Fix by Juan C. Olivares.
  40. 2006-11-16 Atsushi Enomoto <[email protected]>
  41. * HttpServerProtocol.cs : removed old code.
  42. * SoapServerProtocol.cs, ServerProtocol.cs : removed as well, and
  43. added up-to-date ones.
  44. * SoapHeaderHandling.cs, SoapHeaderMapping.cs,
  45. ServerProtocolFactory.cs, SoapServerType.cs,
  46. SoapServerProtocolFactory.cs, ServerType.cs,
  47. SoapServerProtocol.cs, ServerProtocol.cs,
  48. SoapServerMethod.cs :
  49. Added stubs for 2.0 server protocol model. For now I don't spend
  50. time on these ones but rather fill more important bits like
  51. SOAP 1.2 support.
  52. 2006-11-15 Atsushi Enomoto <[email protected]>
  53. * SoapHeaderException.cs, SoapException.cs, SoapFaultSubcode.cs,
  54. Soap12FaultCodes.cs : API fixes, mostly for SoapFaultSubCode.
  55. 2006-11-14 Atsushi Enomoto <[email protected]>
  56. * SoapHttpClientProtocol.cs : 2.0 API fix (WsiClaims -> WsiProfiles).
  57. 2006-09-06 Lluis Sanchez Gual <[email protected]>
  58. * ValueCollectionParameterReader.cs, MimeFormatter.cs: Support enums in
  59. the http get and post protocols. Fixes bug #78461.
  60. 2006-09-06 Lluis Sanchez Gual <[email protected]>
  61. * SoapException.cs: Fix property name.
  62. 2006-09-05 Ankit Jain <[email protected]>
  63. * LogicalMethodTypes.cs:
  64. * SoapMessageStage.cs:
  65. * SoapServiceRoutingStyle.cs:
  66. * SoapHeaderDirection.cs:
  67. * SoapParameterStyle.cs:
  68. * SoapProtocolVersion.cs: Remove [Serializable].
  69. 2006-08-30 Konstantin Triger <[email protected]>
  70. * WebClientProtocol.cs: implemented WebClientProtocol.UseDefaultCredentials().
  71. 2006-06-08 Chris Toshok <[email protected]>
  72. * WebServiceHandlerFactory.cs: remove the CONFIGURATION_2_0 from
  73. ifdefs. NET_2_0 implies this now.
  74. * SoapExtension.cs: same.
  75. * SoapDocumentationHandler.cs: same.
  76. 2006-03-15 Vladimir Krasnov <[email protected]>
  77. * SoapExtension.cs: fixed ExecuteProcessMessage signature, added
  78. stream parameter in order to update SoapMessage stream
  79. * SoapMessage.cs: removed unused ctor, added internal property to
  80. set SoapMessage's stream member
  81. * HttpSoapWebServiceHandler.cs, SoapHttpClientProtocol.cs: updated
  82. usage of ExecuteProcessMessage
  83. 2006-03-15 Vladimir Krasnov <[email protected]>
  84. * SoapServerMessage.cs: fixed SoapServerMessage constructors to
  85. remove quotes from SoapAction http header when initializing local
  86. action member
  87. 2006-03-15 Vladimir Krasnov <[email protected]>
  88. * HttpSoapWebServiceHandler.cs, SoapServerMessage.cs: fixed
  89. SoapMessage.ContentEncoding that used in ProcessMessage method
  90. in SoapExtension
  91. 2006-03-12 Vladimir Krasnov <[email protected]>
  92. * TypeStubManager.cs: fixed type_to_manager member to be initialized
  93. per appdoamin (within TARGET_JVM block)
  94. 2006-03-12 Vladimir Krasnov <[email protected]>
  95. * SoapDocumentationHandler.cs: TARGET_JVM blocks added to exclude
  96. not supported methods
  97. 2006-01-12 Ben Maurer <[email protected]>
  98. * WebClientProtocol.cs: Add a 2.0 stub
  99. 2006-01-04 Chris Toshok <[email protected]>
  100. * SoapDocumentationHandler.cs: add CONFIGURATION_2_0 stuff.
  101. 2006-01-04 Chris Toshok <[email protected]>
  102. * WebServiceHandlerFactory.cs: add CONFIGURATION_2_0 stuff.
  103. * SoapExtension.cs: add CONFIGURATION_2_0 stuff.
  104. 2005-09-26 Lluis Sanchez Gual <[email protected]>
  105. * LogicalMethodInfo.cs: GetCustomAttribute* does not return
  106. inherited attributes in MS.NET.
  107. 2005-08-15 Gert Driesen <[email protected]>
  108. * SoapException.cs: Only mark serializable on 2.0 profile.
  109. * SoapHeaderException.cs: Only mark serializable on 2.0 profile.
  110. * WebClientProtocol.cs: DefaultValue of RequestEncoding must be null
  111. to match MS.NET. Fixed line endings.
  112. 2005-08-03 Gonzalo Paniagua Javier <[email protected]>
  113. * SoapDocumentationHandler.cs: workaround for a bug in the HttpRequest
  114. QueryString property. Under MS, GetKey (0) yields null.
  115. 2005-06-30 Konstantin Triger <[email protected]>
  116. * HttpSoapWebServiceHandler.cs:
  117. * HttpSimpleWebServiceHandler.cs: Disposing the WebService instance
  118. after a WebMethod invocation.
  119. 2005-06-14 Lluis Sanchez Gual <[email protected]>
  120. * SoapHttpClientProtocol.cs:
  121. * WebServiceHelper.cs:
  122. * Methods.cs: Changed the way headers are serialized. Instead of having
  123. a serializer per header type, we now have a serializer per method, and
  124. headers are serialized using a member mapping.
  125. * HttpSoapWebServiceHandler.cs: Handle one way methods properly.
  126. Fixes bug #70699.
  127. 2005-06-10 Gonzalo Paniagua Javier <[email protected]>
  128. * HttpSoapWebServiceHandler.cs: use the HttpResponse.BufferOutput
  129. instead of our own MemoryStream when buffering is enabled. Flush the
  130. response instead of closing it, as that allows for Content-Length to
  131. be sent from HttpResponse and helps reusing connections.
  132. 2005-06-09 Gonzalo Paniagua Javier <[email protected]>
  133. * WebServiceHelper.cs: don't even try to read the response if its length
  134. is known to be 0.
  135. * SoapHttpClientProtocol.cs: for successful responses on methods that
  136. are not one-way, don't return immediately if the content length is 0 so
  137. that the check for Content-Type takes place.
  138. 2005-06-07 Kornél Pál <[email protected]>
  139. * WebServiceHandlerFactory.cs: Throw InvalidOperationException instead of
  140. returning DummyHttpHandler when the request format is not supported.
  141. 2005-06-06 Kornél Pál <[email protected]>
  142. * WebServiceHandlerFactory.cs: Added support for HttpPostLocalhost and HttpSoap12
  143. 2005-06-05 Konstantin Triger <[email protected]>
  144. * SoapHttpClientProtocol.cs: Close WebResponse to free resources
  145. * WebClientProtocol.cs, TypeStubManager.cs, SoapExtension.cs: moving static fields to AppDomain in Java builds
  146. 2005-02-07 Lluis Sanchez Gual <[email protected]>
  147. * XmlReturnWriter.cs, SoapDocumentationHandler.cs: Use utf-8 encoding
  148. when generating xml responses, wsdl documents and schemas. This fixes
  149. bug #72202.
  150. 2004-12-09 Lluis Sanchez Gual <[email protected]>
  151. * ValueCollectionParameterReader.cs: Parse parameters in the correct
  152. way, Convert.ChangeType is not enough. This fixes bug #70266.
  153. Removed some types that are not supported as parameters.
  154. * MimeFormatter.cs: Added methods for xml <-> object conversion.
  155. * UrlEncodedParameterWriter.cs: Use a more elaborate method for converting
  156. from object to string, ToString() is not enough.
  157. 2004-12-09 Lluis Sanchez Gual <[email protected]>
  158. * TypeStubManager.cs: Removed redundat hastable access.
  159. * SoapHttpClientProtocol.cs: Accept responses with ContentLength==0.
  160. This fixes bug #70310.
  161. 2004-12-03 Gonzalo Paniagua Javier <[email protected]>
  162. * SoapHttpClientProtocol.cs: dispose the StreamReader that wraps the
  163. response stream.
  164. 2004-09-15 Lluis Sanchez Gual <[email protected]>
  165. * Methods.cs: Use the service namespace as the base for the soap action.
  166. This fixes bug #60379.
  167. 2004-08-25 Lluis Sanchez Gual <[email protected]>
  168. * HttpSoapWebServiceHandler.cs, WebServiceHandler.cs: Do not assign the
  169. context to the service. It already gets it from HttpContext.Current.
  170. 2004-07-27 Lluis Sanchez Gual <[email protected]>
  171. * HttpSimpleClientProtocol.cs, HttpWebClientProtocol.cs,
  172. SoapHttpClientProtocol.cs: Implemented support for the new async model.
  173. * InvokeCompletedEventArgs.cs: Implemented.
  174. 2004-07-20 Lluis Sanchez Gual <[email protected]>
  175. * HttpWebClientProtocol.cs: Add received cookies to cookieContainer when
  176. getting the response, do not wait for the next request to do it.
  177. 2004-07-13 Lluis Sanchez Gual <[email protected]>
  178. * HttpWebClientProtocol.cs, Soap12FaultCodes.cs, SoapClientMessage.cs,
  179. SoapException.cs, SoapHeader.cs, SoapHeaderException.cs,
  180. SoapHttpClientProtocol.cs, SoapMessage.cs, SoapRpcMethodAttribute.cs,
  181. SoapRpcServiceAttribute.cs, SoapServerMessage.cs: Api fixage (mainly
  182. missing attributes).
  183. 2004-07-10 Lluis Sanchez Gual <[email protected]>
  184. * HttpSimpleClientProtocol.cs, HttpWebClientProtocol.cs,
  185. SoapClientMessage.cs, SoapHttpClientProtocol.cs, SoapServerMessage.cs:
  186. Added 2.0 stubs.
  187. * SoapException.cs, SoapHeader.cs, SoapHeaderException.cs, SoapMessage.cs,
  188. SoapRpcMethodAttribute.cs, SoapRpcServiceAttribute.cs: Implemented some
  189. new methods and properties.
  190. * WebClientProtocol.cs: uri field must be internal.
  191. 2004-07-05 Lluis Sanchez Gual <[email protected]>
  192. * Methods.cs: When using RPC, ignore RequestElementName and MessageName,
  193. and always uses the method name (MS.NET seems to do this).
  194. 2004-07-02 Lluis Sanchez Gual <[email protected]>
  195. * XmlReturnWriter.cs: Add XmlIncludes to the reflection importer when
  196. reflecting the return type.
  197. 2004-07-01 Lluis Sanchez Gual <[email protected]>
  198. * Methods.cs: Check for null when looking for a header serializer, since
  199. unknown headers don't have a serializer.
  200. * SoapHeader.cs: Check for empty string before setting
  201. EncodedMustUnderstand.
  202. 2004-07-01 Lluis Sanchez Gual <[email protected]>
  203. * Methods.cs, SoapMessage.cs: Added support for unknown headers.
  204. * SoapHeader.cs, SoapUnknownHeader.cs: Added new constructor that takes an
  205. XmlElement with header info.
  206. * WebServiceHelper.cs: Write the encodingStyle attribute when using the
  207. encoded format. Added support for unknown headers.
  208. 2004-06-22 Lluis Sanchez Gual <[email protected]>
  209. * XmlReturnReader.cs, XmlReturnWriter.cs: Generate the serializer with
  210. the root attribute taken from the method attributes.
  211. 2004-06-10 Lluis Sanchez Gual <[email protected]>
  212. * TypeStubManager.cs: Improved locking in GetLogicalTypeInfo().
  213. * WebServiceHandler.cs: Removed unneded methods.
  214. 2004-06-02 Lluis Sanchez Gual <[email protected]>
  215. * LogicalMethodInfo.cs: Don't crash in GetCustomAttribute if the requested
  216. attribute is not found.
  217. 2004-06-01 Gert Driesen <[email protected]>
  218. * HttpSoapWebServiceHandler.cs: Removed unused variables.
  219. * SoapHeaderAttribute.cs: Added Obsolete attribute.
  220. 2004-05-24 Lluis Sanchez Gual <[email protected]>
  221. * SoapClientMessage.cs: Get the MethodInfo from the corresponding
  222. SoapMethodStubInfo.
  223. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  224. * SoapHttpClientProtocol.cs: when the response has a not acceptable
  225. status code, the WebException we throw has a status of ProtocolError.
  226. Fixes bug #58564.
  227. 2004-05-12 Lluis Sanchez Gual <[email protected]>
  228. * LogicalMethodInfo.cs: Made EnableSession property internal.
  229. 2004-05-12 Lluis Sanchez Gual <[email protected]>
  230. * HttpSimpleWebServiceHandler.cs: Added GetRequestMethod(), which is used
  231. by the handler factory to check if the target method needs session or not.
  232. Also factorized error handling in WriteError().
  233. * HttpSoapWebServiceHandler.cs: Added GetRequestMethod(), for the same
  234. reason. Assign the context to the WebService just before invoking the
  235. method.
  236. * SoapHttpClientProtocol.cs: Use helper method to create the xml writer.
  237. * WebServiceHandler.cs: Added virtual GetRequestMethod().
  238. * WebServiceHandlerFactory.cs: Use an http handler wrapper when the target
  239. method requires session support.
  240. * WebServiceHelper.cs: Added some helper methods.
  241. 2004-05-11 Gonzalo Paniagua Javier <[email protected]>
  242. * SoapDocumentationHandler.cs: added internal property to get the page
  243. handler when available.
  244. * WebServiceHandlerFactory.cs: wrap the documentation handler in a class
  245. that implements IRequiresSessionState and, if requested,
  246. IReadOnlySessionState, so that we can use Sesion object in the default
  247. WSDL help generator.
  248. 2004-05-10 Gonzalo Paniagua Javier <[email protected]>
  249. * HttpSoapWebServiceHandler.cs: finish the request after serializing
  250. the fault message.
  251. 2004-05-05 Gonzalo Paniagua Javier <[email protected]>
  252. * HttpGetWebServiceHandler.cs:
  253. * HttpPostWebServiceHandler.cs: removed.
  254. * HttpSimpleWebServiceHandler.cs: changed ctor parameters and added
  255. EnableSession property.
  256. * WebServiceHandler.cs: added EnableSession virtual property.
  257. * WebServiceHandlerFactory.cs: added a new handler that implements
  258. IRequiresSessionState used for HttpGet and HttpPost.
  259. (GetHandler): for HttpGet and HttpPost check if the method requires to
  260. have a Session object and use the new SimpleSyncSessionHandler in that
  261. case.
  262. Still missing proper session handler for SOAP requests.
  263. 2004-05-05 Gonzalo Paniagua Javier <[email protected]>
  264. * HttpSimpleWebServiceHandler.cs:
  265. * HttpSoapWebServiceHandler.cs: use the session if the method has
  266. EnableSession set.
  267. * LogicalMethodInfo.cs: added EnableSession property.
  268. * WebServiceHandler.cs: set the Session object of the WebService.
  269. 2004-03-25 Lluis Sanchez Gual <[email protected]>
  270. * WebServiceHelper.cs: In GetContentEncoding, chop off the single & double
  271. quotes around the encoding name. Patch by George Kodinov. This fixes
  272. bug #55806.
  273. 2004-03-10 Lluis Sanchez Gual <[email protected]>
  274. * HttpSoapWebServiceHandler.cs: Set the properties ContentType and
  275. ContentEncoding in SoapServerMessage.
  276. * LogicalMethodInfo.cs: Implemented AsyncResultParameter, BeginInvoke and
  277. EndInvoke. Fixed ComputeParameters, so it computes the correct parameters
  278. for async logical methods.
  279. * Methods.cs: Check that client proxies have one and only one
  280. WebServiceBindingAttribute.
  281. * PatternMatcher.cs: Implemented (in fact, just moved code from
  282. TextReturnReader.cs)
  283. * SoapDocumentationHandler.cs: Add soap bindings in the generated
  284. discovery document.
  285. * SoapHttpClientProtocol.cs: Implemented method Discover().
  286. * SoapMessage.cs: Implemented property ContentEncoding.
  287. * TextReturnReader.cs: Moved code to PatternMatcher.cs.
  288. 2004-02-27 Lluis Sanchez Gual <[email protected]>
  289. * Fault.cs: Moved Fault class from Methods.cd to this file. It also includes
  290. a generated serializer.
  291. * HttpSoapWebServiceHandler.cs, WebServiceHelper.cs: Use the new static Fault serializer.
  292. * Methods.cs: Include types declared with XmlInclude and SoapInclude to the
  293. reflection importer. Moved Fault and its serializer to Fault.cs
  294. * SoapHttpClientProtocol.cs: Removed unused method.
  295. 2004-02-12 Lluis Sanchez Gual <[email protected]>
  296. * WebServiceHelper.cs: When reading a soap request, skip empty headers.
  297. This fixes bug #51846.
  298. 2004-01-27 Lluis Sanchez Gual <[email protected]>
  299. * WebServiceHandler.cs: inheritance from WebService is not mandatory.
  300. 2004-02-05 Alon Gazit <[email protected]>
  301. * HttpMethodAttribute.cs:
  302. * MatchAttribute.cs:
  303. * SoapDocumentMethodAttribute.cs:
  304. * SoapDocumentServiceAttribute.cs:
  305. * SoapHeaderAttribute.cs:
  306. * SoapRpcMethodAttribute.cs:
  307. * SoapRpcServiceAttribute.cs: This attribute is inherited by
  308. derived classes.changed the AttributeUsage attribute.
  309. 2004-02-05 Alon Gazit <[email protected]>
  310. * SoapHeaderAttribute.cs: This attribute is multiuse.
  311. Changed the AttributeUsage attribute.
  312. 2004-01-27 Lluis Sanchez Gual <[email protected]>
  313. * SoapDocumentMethodAttribute.cs: Fixed bug in ResponseNamespace.
  314. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  315. * HttpWebClientProtocol.cs: Added missing property.
  316. * Methods.cs: Default binding for a method must be null.
  317. * SoapHeaderDirection.cs: Added missing enum value.
  318. * SoapMessage.cs: Added missing property.
  319. * TypeStubManager.cs: Removed unneded check from AddBinding.
  320. In GetBinding(), return default binding if name is null.
  321. * ValueCollectionParameterReader.cs: IsPrimitive must be internal.
  322. 2004-01-21 Lluis Sanchez Gual <[email protected]>
  323. * HttpSoapWebServiceHandler.cs, SoapHttpClientProtocol.cs: Do not use
  324. indented format for requests and responses. SOAPAction header value
  325. must be quoted (fix by Yaacov Akiba Slama).
  326. 2004-01-21 Lluis Sanchez Gual <[email protected]>
  327. * Methods.cs: Set the correct namespaces for Fault. This fixes bug #53117.
  328. Based on the fix by Eran Domb.
  329. 2004-01-19 Lluis Sanchez Gual <[email protected]>
  330. * Methods.cs: Get the method namespace from the binding, not from the web
  331. service.
  332. * TypeStubManager.cs: When adding a binding, ignore it if it has already
  333. been added. Changed WebServiceLiteralNamespace by the method
  334. GetWebServiceLiteralNamespace. The literal namespace depends on the binding
  335. namespace, so it has to be provided as parameter.
  336. * XmlReturnReader.cs, XmlReturnWriter.cs: Use GetWebServiceLiteralNamespace
  337. instead of WebServiceLiteralNamespace.
  338. 2004-01-14 Lluis Sanchez Gual <[email protected]>
  339. * Methods.cs: Set the correct element name and namespace for headers (those
  340. are not managed like other data classes).
  341. 2004-01-10 Gonzalo Paniagua Javier <[email protected]>
  342. * HttpSoapWebServiceHandler.cs:
  343. * HttpSimpleWebServiceHandler.cs: set
  344. base.Context property.
  345. * WebServiceHandler.cs: added set_Context and set the context for the
  346. WebService when creating the instance.
  347. 2003-12-23 Lluis Sanchez Gual <[email protected]>
  348. * SoapDocumentationHandler.cs: Added support for DISCO file generation.
  349. 2003-12-16 Lluis Sanchez Gual <[email protected]>
  350. * HttpSimpleClientProtocol.cs: Do not encode the request url, since it is
  351. already encoded by the MimeParameterWriter.
  352. * MatchAttribute.cs: Set default value for Group to 1.
  353. * TextReturnReader.cs: Implemented. With this it is possible to create an
  354. XML web service that parse the contents of a web page.
  355. 2003-12-15 Lluis Sanchez Gual <[email protected]>
  356. * HttpSoapWebServiceHandler.cs: Added check for valid SOAPAction header.
  357. Fixed bug when routing style is RequestElement.
  358. Removed GetMethodFromAction. This is done now in the type stub.
  359. Other minor fixes.
  360. * Methods.cs, WebServiceHelper.cs: Faults are always serialized using
  361. literal format. Removed unneded code.
  362. 2003-12-12 Lluis Sanchez Gual <[email protected]>
  363. * Methods.cs: Added special handling for RPC format.
  364. 2003-11-27 Lluis Sanchez Gual <[email protected]>
  365. * Methods.cs: Added correct namespace for serialization in Fault class.
  366. * SoapHttpClientProtocol.cs: Changed the method used to check if the
  367. result is a fault. Now the check is done inside
  368. WebServiceHelper.ReadSoapMessage. Removed some debug writelines.
  369. * WebServiceHelper.cs: If the message body is a fault, use the fault
  370. serializer.
  371. 2003-11-24 Lluis Sanchez Gual <[email protected]>
  372. * Methods.cs, TypeStubManager.cs, SoapMessage.cs: Removed TODO comment.
  373. * SoapDocumentationHandler.cs: Check that the documentation page exist.
  374. * SoapHttpClientProtocol.cs: Removed cast from WebResponse to
  375. HttpWebResponse. This fixes bug #51281.
  376. 2003-11-20 Gonzalo Paniagua Javier <[email protected]>
  377. * HttpSoapWebServiceHandler.cs: WebException is ok here for wrong
  378. content encoding...
  379. * SoapHttpClientProtocol.cs: ... but here, we should throw an
  380. InvalidOperationException including the full response.
  381. * WebServiceHelper.cs:
  382. (GetContentEncoding): now fills an output variable with the name of the
  383. content encoding used.
  384. (InvalidOperation): new method to build the message for
  385. InvalidOperationException.
  386. 2003-11-20 Gonzalo Paniagua Javier <[email protected]>
  387. * SoapHttpClientProtocol.cs:
  388. * WebServiceHelper.cs: throw a WebException instead of an Exception.
  389. Fixes bug #51193.
  390. 2003-10-26 Miguel de Icaza <[email protected]>
  391. * WebServiceHelper.cs: Compute content type and encoding
  392. correctly in the absence of extra options.
  393. 2003-10-22 Lluis Sanchez Gual <[email protected]>
  394. * Methods.cs: Class Fault is now public, so it can be serialized.
  395. 2003-10-15 Lluis Sanchez Gual <[email protected]>
  396. * TypeStubManager.cs: Added OperationName property.
  397. 2003-10-13 Lluis Sanchez Gual <[email protected]>
  398. * HttpGetTypeStubInfo.cs, HttpPostTypeStubInfo.cs, HttpSimpleTypeStubInfo.cs,
  399. HttpSoapWebServiceHandler.cs, Methods.cs, SoapHttpClientProtocol.cs,
  400. TypeStubManager.cs
  401. Added class LogicalTypeInfo, which contains info common to all protocols
  402. through which a web service can be accessed. Also, modified the way
  403. Serializers are created. Instead of creating one by one, they are now
  404. created all at once. This will make serialization creation more efficient
  405. when the serializer code generator is in place.
  406. * SoapRpcMethodAttribute.cs: Set the correct default values for the
  407. properties.
  408. * WebServiceHelper.cs: Removed unused method GetServiceNamespace().
  409. * XmlReturnReader.cs, XmlReturnWriter.cs: Get the namespace for the return
  410. type from LogicalTypeInfo.
  411. 2003-10-12 Lluis Sanchez Gual <[email protected]>
  412. * SoapHttpClientProtocol.cs: Replaced AsyncInfo by a new
  413. SoapWebClientAsyncResult class derived from WebClientAsyncResult.
  414. * WebClientAsyncResult.cs: Removed unneeded members.
  415. 2003-10-10 Gonzalo Paniagua Javier <[email protected]>
  416. * SoapDocumentationHandler.cs: don't close the response stream here
  417. to allow filtering.
  418. 2003-10-06 Lluis Sanchez Gual <[email protected]>
  419. * HtmlFormParameterWriter.cs: Fixed WriteRequest().
  420. * HttpGetTypeStubInfo.cs, HttpPostTypeStubInfo.cs: Check that
  421. HttpMethodAttribute is present in proxy's method.
  422. * HttpSimpleClientProtocol.cs: Forgot to call InitializeRequest before
  423. getting the request stream.
  424. * UrlEncodedParameterWriter.cs: in Encode(), take into account that
  425. requestEncoding can be null.
  426. 2003-10-04 Lluis Sanchez Gual <[email protected]>
  427. * SoapDocumentationHandler.cs: Moved here the code from
  428. WebServiceHandlerFactory that generates the documentation page.
  429. * WebServiceHandlerFactory.cs: Moved the code that generates the doc page
  430. to SoapDocumentationHandler.cs.
  431. * HttpGetClientProtocol.cs, HttpGetWebServiceHandler.cs,
  432. HttpPostClientProtocol.cs, HttpPostWebServiceHandler.cs,
  433. HttpSimpleWebServiceHandler.cs, HttpSoapWebServiceHandler.cs,
  434. SoapHttpClientProtocol.cs: Changed parameters of GetTypeStub call.
  435. * HttpGetTypeStubInfo.cs, HttpPostTypeStubInfo.cs: Added ProtocolName
  436. property. Added check for valid parameters.
  437. * HttpSimpleTypeStubInfo.cs: Define return MimeFormatter in constructor.
  438. * Methods.cs: BindingInfo and related properties moved to base TypeStubInfo.
  439. Added properties for XmlImporter and SoapImporter.
  440. * TypeStubManager.cs: Added BindingInfo and related properties.
  441. Changed GetTypeStub method. Now it takes the name of the protocol for
  442. which to get the type stub info.
  443. * ValueCollectionParameterReader.cs: IsSupported should only return true
  444. for input primitive parameters or array of primitives.
  445. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  446. * SoapDocumentationHandler.cs: it does not generate the documentation
  447. page any more. GetDescription and GetSchemas are now internal.
  448. * WebServiceHandlerFactory.cs: generate the documentation page without
  449. doing a Transfer () but instead creating a Page instance from the wsdl
  450. help file. This file is located from the configuration file that
  451. contains the <wsdlHelpGenerator> tag.
  452. 2003-10-01 Lluis Sanchez Gual <[email protected]>
  453. * HtmlFormParameterReader.cs, HtmlFormParameterWriter.cs,
  454. HttpGetClientProtocol.cs, HttpPostClientProtocol.cs,
  455. HttpSimpleClientProtocol.cs, MimeFormatter.cs, MimeParameterWriter.cs,
  456. NopReturnReader.cs, UrlEncodedParameterWriter.cs, UrlParameterReader.cs,
  457. UrlParameterWriter.cs, ValueCollectionParameterReader.cs,
  458. WebClientAsyncResult.cs, XmlReturnReader.cs, XmlReturnWriter.cs
  459. : Implemented.
  460. * HttpSoapWebServiceHandler.cs, SoapClientMessage.cs, SoapServerMessage.cs,
  461. SoapDocumentationHandler.cs, SoapHttpClientProtocol.cs,
  462. WebServiceHelper.cs: Changed due to modifications in TypeStubInfo.
  463. * Methods.cs: Moved common code to TypeStubInfo.cs.
  464. * WebServiceHandler.cs: Moved invoke code to HttpSoapWebServiceHandler.cs
  465. * ServerProtocol.cs, SoapServerProtocol.cs: Fixed formatting.
  466. * WebServiceHandlerFactory.cs: Added support for HttpGet and HttpPost.
  467. 2003-09-29 Lluis Sanchez Gual <[email protected]>
  468. * Methods.cs: Little fix in binding check.
  469. * SoapExtension.cs: Implemented ChainStream. Changed some methods from
  470. public to internal.
  471. * SoapClientMessage: Implemented EnsureInStage.
  472. * SoapServerMessage: Implemented EnsureInStage, EnsureOutStage.
  473. 2003-09-28 Lluis Sanchez Gual <[email protected]>
  474. * HttpSoapWebServiceHandler.cs: In SerializeResponse method, improved
  475. management of exceptions. Also added support for BufferResponse flag.
  476. * Methods.cs: Added MethodAttribute property in MethodStubInfo. Added
  477. XmlImporter, SoapImporter and Type properties in TypeStubInfo.
  478. * SoapMessage.cs: little fix.
  479. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  480. * SoapDocumentationHandler.cs: Added support for on-the-fly proxy
  481. code generation in documentation pages.
  482. 2003-09-04 Lluis Sanchez Gual <[email protected]>
  483. * Methods.cs: Added support for bare parameter style. Fixed some defaults.
  484. 2003-09-01 Lluis Sanchez Gual <[email protected]>
  485. * Methods.cs: In TypeStubInfo, added Documentation field.
  486. 2003-07-28 Lluis Sanchez Gual <[email protected]>
  487. * HttpSoapWebServiceHandler.cs:
  488. * Methods.cs: Added SoapBindingStyle, SoapBindingUse, InputMembersMapping
  489. and OutputMembersMapping properties in MethodStubInfo.
  490. Use default value defined in TypeStubInfo for RequestNamespace,
  491. ResponseNamespace and other properties.
  492. Added class BindingInfo to store information about class bindings.
  493. In TypeStubInfo added SoapBindingStyle, DefaultBinding, Methods and
  494. Bindings properties.
  495. * SoapRpcMethodAttribute.cs: Use WebServiceAttribute.DefaultNamespace constant
  496. instead of hardcoded namespace name.
  497. * WebServiceHandlerFactory.cs: Create new SoapDocumentationHandler for
  498. documentation requests.
  499. * SoapDocumentationHandler.cs: new handler that generates WS documentation.
  500. 2003-07-22 Lluis Sanchez Gual <[email protected]>
  501. * WebServiceHandler.cs: Fixed Invoke(). ParameterInfo.Position is now
  502. zero-based, like in MS.NET.
  503. 2003-07-16 Lluis Sanchez Gual <[email protected]>
  504. * SoapHttpClientProtocol.cs: Removed debug WriteLine.
  505. 2003-07-10 Lluis Sanchez Gual <[email protected]>
  506. * HttpSoapWebServiceHandler.cs: MS puts the soap action in quotation marks??
  507. Fix for this case.
  508. * SoapHttpClientProtocol.cs: Implemented support for asynchronous calls
  509. (BeginInvoke and EndInvoke).
  510. 2003-07-09 Lluis Sanchez Gual <[email protected]>
  511. * SoapHttpClientProtocol.cs, HttpSoapWebServiceHandler.cs, Methods.cs:
  512. Added support for soap extensions. Moved some code to
  513. WebServiceHelper. Implemented support for the two types of RoutingStyle. Added support
  514. for In and Out headers. Improved management of exceptions.
  515. * SoapClientMessage.cs: code to retrieve soap headers moved to SoapMessage.
  516. * SoapExtension.cs: Added methods for getting and creating soap extensions.
  517. * SoapMessage.cs: Added methods for getting and assigning headers to an object.
  518. * SoapServerMessage.cs: Added setter for MethodStubInfo. Other minor fixes.
  519. * WebServiceHandler.cs: Added support for In and Out headers. Fixed management of exceptions.
  520. * WebServiceHandlerFactory.cs: Check if the request protocol is supported.
  521. * WebServiceHelper.cs: Added method for reading a soap request.
  522. 2003-07-04 Lluis Sanchez Gual <[email protected]>
  523. * LogicalMethodInfo.cs: Fixed Invoke method. If return type is void,
  524. then the result object array only contain output parameters.
  525. * Methods.cs: In class MethodStubInfo, added support from some server properties
  526. taken from WebMethodAttribute. Now MethodStubInfo can be created without SoapDocument*
  527. or SoapRpc* attributes, in which case takes default values from TypeStubInfo.
  528. Added method for getting header info.
  529. In class Fault: added constructor for creating a fault from a SoapException.
  530. In class TypeStubInfo: new way to manage serializers for headers. Now it is possible to
  531. get a header using a name and namespace (used when deserializing).
  532. * SoapHttpClientProtocol.cs: moved WriteSoapEnvelope method to WebServiceHelper (so it can be shared).
  533. Also moved other serialization stuff to WebServiceHelper.
  534. * SoapMessage.cs: Added some convenient constructors and internal properties.
  535. Implemented GetOutParameterValue and GetReturnValue.
  536. * SoapServerMessage.cs: Implemented.
  537. * WebServiceHandler.cs: Implemented method Invoke.
  538. * WebServiceHandlerFactory.cs: Basic implementation.
  539. * WebServiceHelper.cs: Added. Has some methods shared between client and server classes.
  540. * HttpSoapWebServiceHandler.cs: Added. IHttpHandler implementation for HttpSoap requests.
  541. 2003-06-21 Gonzalo Paniagua Javier <[email protected]>
  542. * HttpWebClientProtocol.cs: handle cookies if the request is a
  543. HttpWebRequest. It gets the cookies set in the response and sends them
  544. on subsequent requests.
  545. * SoapHttpClientProtocol.cs:
  546. (GetWebRequest): just calls the base method.
  547. (SendRequest): set the method here.
  548. (Invoke): call GetWebResponse instead of request.GetResponse.
  549. * WebClientProtocol.cs:
  550. (GetWebRequest): set some properties of the request.
  551. (GetWebResponse): if we get a WebException containing a response, return
  552. that as the response and ignore the exception.
  553. (GetWebResponse (req, async)): only call EndGetResponse.
  554. 2003-06-14 Lluis Sanchez Gual <[email protected]>
  555. * Methods.cs: Added information about headers in MethodStubInfo. Added cache of serializers
  556. in TypeStubInfo so serializers for headers they can be shared by several methods.
  557. * SoapClientMessage.cs: Headers added in the constructor.
  558. * SoapMessage.cs: Added header list initialization.
  559. * SoapHttpClientProtocol.cs: Added support soap headers.
  560. 2003-06-13 Lluis Sanchez Gual <[email protected]>
  561. * Methods.cs: Added serializer to MethodStubInfo for deserializing faults.
  562. * SoapHttpClientProtocol.cs: Added support for faults.
  563. 2003-06-10 Lluis Sanchez Gual <[email protected]>
  564. * Methods.cs: removed handler for UnknownNode event
  565. 2003-06-05 Lluis Sanchez Gual <[email protected]>
  566. * Methods.cs: added support for encoded format
  567. 2003-06-01 Miguel de Icaza <[email protected]>
  568. * Methods.cs (MethodStubInfo): If creating an RPC call, pass an
  569. optional XmlElementAttribute with the namespace set to null; Use
  570. this on each element of the request and response serializers.
  571. (MakeRequestSerializer, MakeResponseSerializer): Use the empty
  572. element for the return values.
  573. * SoapRpcMethodAttribute.cs: Drop the default name on the
  574. SoapRpcMethodAttribute, it was incorrectly given a default name.
  575. 2003-05-30 Miguel de Icaza <[email protected]>
  576. * Methods.cs (MethodStubInfo): Start support for RPC style as well
  577. as Literal style. Take an object instead of a
  578. SoapDocumentMethodAttribute, and allow the value to be also a
  579. SoapRpcMethodAttribute. Pull data from both.
  580. Kill SoapBindingUse, we only use this during validation.
  581. Turn out Google uses RPC/Literal, and its a good demo.
  582. (MakeResponseSerializer): OneWay is not the only
  583. condition to catch; Also void return types are not required to
  584. have a response.
  585. (MakeRequestSerializer): InParameters *might* be ref parameters,
  586. deal with that here too.
  587. Add some debugging code for tracking down missing implementation
  588. details in serialization creation.
  589. (MakeResponseSerializer): DUH. Use the
  590. ResponseName/ResponseNamespace for the member import, not the
  591. RequestName and RequestNamespace. The bugs of cut-and-paste.
  592. 2003-05-29 Miguel de Icaza <[email protected]>
  593. * SoapHttpClientProtocol.cs (CreateMessage): Kill. Move
  594. functionality to Invoke.
  595. (Invoke): Use new TypeStubInfo/MethodStubInfo instead.
  596. * SoapClientMessage.cs: Drop old mechanism, use MethodStubInfo instead.
  597. * Methods.cs: New file. Contains the managed for TypeStubs and
  598. MethodInfoStubs.
  599. A MethodInfoStub contains the serializers we use for the SOAP
  600. request.
  601. * SoapClientMessage.cs: Drop parameters from the clientmessage, it
  602. does not belong here. Drop oneway, we canextract that from the
  603. SoapDocumentMethodAttribute class that we pass.
  604. 2003-05-28 Miguel de Icaza <[email protected]>
  605. * LogicalMethodInfo.cs (Create): Implement begin/end method
  606. pairing.
  607. (Name): Implement.
  608. (EndMethodInfo): Always return end_method_info.
  609. 2003-04-30 Miguel de Icaza <[email protected]>
  610. * SoapHttpClientProtocol.cs: Flag the methods in the chain that
  611. gets the caller method as non-inlineable.
  612. 2003-04-29 Miguel de Icaza <[email protected]>
  613. * SoapHttpClientProtocol.cs (CreateMessage): Extract information
  614. from the method to be called.
  615. * SoapDocumentMethodAttribute.cs: Do not initialize all the fields
  616. on the attribute at bootstrap, for default values, just compute
  617. them when queried.
  618. * SoapMessage.cs (SetStage): New internal method, used to register
  619. the stage as we move along the soap pipeline.
  620. * LogicalMethodInfo.cs: Most of this is implemented. Its only
  621. missing a few bits in the Create() method.
  622. * SoapHttpClientProtocol.cs: Begin implementation of Invoke, which
  623. lead to other dependencies to be implemented.
  624. * LogicalMethodInfo.cs: Mostly complete. It is only missing the
  625. async features (BeginInvoke/EndInvoke) on a LogicalMethodInfo.
  626. * WebClientProtocol.cs (GetWebRequest): Track the web request, so
  627. we can abort it later.
  628. (Abort): Call abort on the underlying transport.
  629. 2002-08-24 Tim Coleman <[email protected]>
  630. * HttpServerProtocol.cs:
  631. * WebServiceHandler.cs:
  632. Some commented code added, from analysing
  633. an exception trace.
  634. * MimeReturnWriter.cs:
  635. * XmlReturnWriter.cs:
  636. New stubs added.
  637. 2002-08-23 Tim Coleman <[email protected]>
  638. * ServerProtocol.cs:
  639. * SoapServerProtocol.cs:
  640. More cleanup, comparison with class status.
  641. * WebServiceHandler.cs:
  642. * HttpServerProtocol.cs:
  643. New stubs added.
  644. 2002-08-15 Tim Coleman <[email protected]>
  645. * ServerProtocol.cs:
  646. * SoapServerProtocol.cs:
  647. Some more implementation.
  648. 2002-08-06 Tim Coleman <[email protected]>
  649. * ServerProtocol.cs:
  650. Add new class as implied by class statuc page.
  651. SoapServerProtocol is derived from this.
  652. * SoapServerProtocol.cs:
  653. Change base class to ServerProtocol. Add some
  654. properties shown by class status page.
  655. * SoapClientMethod.cs:
  656. This class should not be sealed. Add some
  657. fields shown by the class status page.
  658. 2002-07-25 Tim Coleman <[email protected]>
  659. * SoapClientMethod.cs:
  660. * SoapServerProtocol.cs:
  661. Add new internal classes as discovered.
  662. * SoapClientMessage.cs:
  663. * SoapMessage.cs:
  664. * SoapServerMessage.cs:
  665. * WebClientAsyncResult.cs:
  666. Add internal constructor, as found on class
  667. status page; modify some properties.
  668. 2002-07-23 Tim Coleman <[email protected]>
  669. * SoapException.cs: modified constructors to
  670. call base class correctly.
  671. * WebClientAsyncResult: some implementation
  672. 2002-07-23 Tim Coleman <[email protected]>
  673. * HttpGetClientProtocol.cs:
  674. * HttpPostClientProtocol.cs
  675. Implemented the GetWebRequest method
  676. * HttpSimpleClientProtocol:
  677. Some implementation of the EndInvoke method
  678. * HttpWebClientProtocol.cs:
  679. Set the UserAgent string appropriately
  680. Implemented the GetWebRequest method
  681. Implemented the GetWebResponse methods
  682. * SoapHttpClientProtocol.cs:
  683. Removed unused fields
  684. Implemented the GetWebRequest method
  685. * SoapMessage.cs:
  686. Implemented the EnsureStage method
  687. * WebClientProtocol.cs:
  688. Added a static constructor to construct the cache
  689. Implemented the Abort method
  690. Implemented the AddToCache, GetFromCache methods
  691. Implemented the GetWebRequest method
  692. Implemented the GetWebResponse methods
  693. 2002-07-23 Tim Coleman <[email protected]>
  694. * LogicalMethodTypes.cs:
  695. * SoapHeaderDirection.cs:
  696. * SoapMessageStage.cs:
  697. * SoapParameterStyle.cs:
  698. * SoapServiceRoutingStyle.cs:
  699. Explicitly define values in enum to match
  700. .NET.
  701. * SoapMessage.cs:
  702. Removed constructor which should not be present.
  703. * SoapException.cs:
  704. Made protected fields private as they should
  705. be.
  706. * SoapHeaderException.cs:
  707. Modifications to constructors to propertly
  708. call base class constructor
  709. 2002-07-22 Tim Coleman <[email protected]>
  710. * SoapHeaderException.cs:
  711. Fixed name error in constructor
  712. * SoapUnknownHeader.cs:
  713. Added reference to System.Xml.Serialization
  714. 2002-07-22 Tim Coleman <[email protected]>
  715. * SoapHeaderException.cs:
  716. New file added
  717. 2002-07-22 Tim Coleman <[email protected]>
  718. * AnyReturnReader.cs:
  719. * HtmlFormParameterReader.cs :
  720. * HtmlFormParameterWriter.cs :
  721. * HttpGetClientProtocol.cs :
  722. * HttpMethodAttribute.cs :
  723. * HttpPostClientProtocol.cs :
  724. * HttpSimpleClientProtocol.cs :
  725. * HttpWebClientProtocol.cs :
  726. * LogicalMethodInfo.cs :
  727. * LogicalMethodTypes.cs :
  728. * MatchAttribute.cs :
  729. * MimeFormatter.cs :
  730. * MimeParameterReader.cs :
  731. * MimeParameterWriter.cs :
  732. * MimeReturnReader.cs :
  733. * NopReturnReader.cs :
  734. * PatternMatcher.cs :
  735. * SoapClientMessage.cs :
  736. * SoapDocumentMethodAttribute.cs :
  737. * SoapDocumentServiceAttribute.cs :
  738. * SoapException.cs :
  739. * SoapExtension.cs :
  740. * SoapExtensionAttribute.cs :
  741. * SoapHeader.cs :
  742. * SoapHeaderAttribute.cs :
  743. * SoapHeaderCollection.cs :
  744. * SoapHeaderDirection.cs :
  745. * SoapHttpClientProtocol.cs :
  746. * SoapMessage.cs :
  747. * SoapMessageStage.cs :
  748. * SoapParameterStyle.cs :
  749. * SoapRpcMethodAttribute.cs :
  750. * SoapRpcServiceAttribute.cs :
  751. * SoapServerMessage.cs :
  752. * SoapServiceRoutingStyle.cs :
  753. * SoapUnknownHeader.cs :
  754. * TextReturnReader.cs :
  755. * UrlEncodedParameterWriter.cs :
  756. * UrlParameterReader.cs :
  757. * UrlParameterWriter.cs :
  758. * ValueCollectionParameterReader.cs :
  759. * WebClientAsyncResult.cs :
  760. * WebClientProtocol.cs :
  761. * WebServiceHandlerFactory.cs :
  762. * XmlReturnReader.cs :
  763. Add missing methods and attributes to make as few missing
  764. things as possible in this namespace. This is from the
  765. project status page.
  766. 2002-07-20 Tim Coleman <[email protected]>
  767. * AnyReturnReader.cs:
  768. * HtmlFormParameterReader.cs:
  769. * HtmlFormParameterWriter.cs:
  770. * HttpGetClientProtocol.cs:
  771. * HttpMethodAttribute.cs:
  772. * HttpPostClientProtocol.cs:
  773. * HttpSimpleClientProtocol.cs:
  774. * HttpWebClientProtocol.cs:
  775. * MatchAttribute.cs:
  776. * MimeFormatter.cs:
  777. * MimeParameterReader.cs:
  778. * MimeParameterWriter.cs:
  779. * MimeReturnReader.cs:
  780. * NopReturnReader.cs:
  781. * PatternMatcher.cs:
  782. * SoapClientMessage.cs:
  783. * SoapDocumentMethodAttribute.cs:
  784. * SoapDocumentServiceAttribute.cs:
  785. * SoapException.cs:
  786. * SoapExtensionAttribute.cs:
  787. * SoapExtension.cs:
  788. * SoapHeaderAttribute.cs:
  789. * SoapHeaderCollection.cs:
  790. * SoapHeader.cs:
  791. * SoapHeaderDirection.cs:
  792. * SoapHttpClientProtocol.cs:
  793. * SoapMessage.cs:
  794. * SoapMessageStage.cs:
  795. * SoapParameterStyle.cs:
  796. * SoapRpcMethodAttribute.cs:
  797. * SoapRpcServiceAttribute.cs:
  798. * SoapServerMessage.cs:
  799. * SoapServiceRoutingStyle.cs:
  800. * SoapUnknownHeader.cs:
  801. * TextReturnReader.cs:
  802. * UrlEncodedParameterWriter.cs:
  803. * UrlParameterReader.cs:
  804. * UrlParameterWriter.cs:
  805. * ValueCollectionParameterReader.cs:
  806. * WebClientAsyncResult.cs:
  807. * WebClientProtocol.cs:
  808. * WebServiceHandlerFactory.cs:
  809. * XmlReturnReader.cs:
  810. Added new stubbs and some implementation
  811. * LogicalMethodTypes.cs:
  812. Added [Serializable] attribute which was missing.
  813. 2002-07-19 Tim Coleman <[email protected]>
  814. * ChangeLog:
  815. * LogicalMethodInfo.cs:
  816. * LogicalMethodTypes.cs:
  817. Add required classes to maek System.Web.Services.Description
  818. buildable.