ChangeLog 44 KB

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