ChangeLog 48 KB

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