ChangeLog 39 KB

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