ChangeLog 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384
  1. 2005-04-16 Gonzalo Paniagua Javier <[email protected]>
  2. * WebConnectionStream.cs: call SetComplete in EndWrite when we're not
  3. buffering the request body. Fixes bug #74673.
  4. * WebAsyncResult.cs: renamed field.
  5. 2005-04-14 Gonzalo Paniagua Javier <[email protected]>
  6. * WebConnectionStream.cs:
  7. * WebAsyncResult.cs: ensure we only call EndRead once per async. result.
  8. Update total before invoking the callback when present.
  9. 2005-04-11 Gonzalo Paniagua Javier <[email protected]>
  10. * WebConnection.cs:
  11. * WebConnectionStream.cs: don't start reading until we've sent at least
  12. the headers. This way we ensure that a Write happens before any Read,
  13. which is needed by the SSL code.
  14. 2005-04-11 Gonzalo Paniagua Javier <[email protected]>
  15. * HttpWebRequest.cs: ensure we read everything before redirecting.
  16. 2005-04-11 Gonzalo Paniagua Javier <[email protected]>
  17. * WebConnectionStream.cs: provide a default callback when doing async.
  18. read/write and waiting for a timeout so that the callback sets the
  19. event and we don't block forever. Fixes bug #74539 take 3.
  20. 2005-04-10 Gonzalo Paniagua Javier <[email protected]>
  21. * WebConnection.cs:
  22. * HttpWebRequest.cs: now Abort() works properly. Fixes bug #74177.
  23. 2005-04-10 Gonzalo Paniagua Javier <[email protected]>
  24. * WebConnection.cs: fix some breakage from my last patch.
  25. * WebConnectionStream.cs: invoke the callback when done even in EndRead.
  26. 2005-04-10 Sebastien Pouliot <[email protected]>
  27. * WebConnection.cs: Added support for TrustFailure when throwing a
  28. WebException. Fix bug #74286.
  29. 2005-04-10 Gonzalo Paniagua Javier <[email protected]>
  30. * HttpWebRequest.cs:
  31. * WebConnectionStream.cs: implemented support for ReadWriteTimeout.
  32. 2005-04-10 Gonzalo Paniagua Javier <[email protected]>
  33. * WebConnection.cs: if we're reading chunked data and didn't use the
  34. stream to read, we gotta set the async. result as complete and invoke
  35. the callback. Don't call nstream.EndRead with the wrong IAsyncResult.
  36. * WebConnectionStream.cs: in EndRead, pass the correct IAsyncResult to
  37. cnc.EndRead. Lock on a field instead of 'this'.
  38. 2005-04-09 Gonzalo Paniagua Javier <[email protected]>
  39. * HttpWebRequest.cs: throw the exception if we got an error, as now
  40. it's catched in the redirection handling code.
  41. 2005-04-08 Gonzalo Paniagua Javier <[email protected]>
  42. * HttpWebRequest.cs: moved redirection handling to a proper place.
  43. 2005-04-07 Gonzalo Paniagua Javier <[email protected]>
  44. * WebHeaderCollection.cs: added if-modified-since to the list of
  45. restricted headers.
  46. * ServicePoint.cs: use a field object when locking.
  47. 2005-04-07 Gonzalo Paniagua Javier <[email protected]>
  48. * WebConnectionStream.cs: ForceCompletion actually calls NextRead. No
  49. need to wait for a Close/ReadAll when we have no content.
  50. 2005-04-04 Gonzalo Paniagua Javier <[email protected]>
  51. * NtlmClient.cs: fix typo in assembly name.
  52. 2005-03-30 Gonzalo Paniagua Javier <[email protected]>
  53. * CookieContainer.cs: adding to a CookieCollection might not increment
  54. the number of items if the cookie is replaced. Now Count works properly.
  55. Fixed an array index exception (typo).
  56. * CookieCollection.cs: also compare the version.
  57. * HttpWebResponse.cs: when we have cookies, add them to the request
  58. container.
  59. * HttpWebRequest.cs: changed last parameter of HttpWebResponse ctor.
  60. 2005-03-30 Miguel de Icaza <[email protected]>
  61. * Cookie.cs: Compare using the InvariantCulture, to match the
  62. behavior of CookieContainer that already did this.
  63. 2005-03-30 Gonzalo Paniagua Javier <[email protected]>
  64. * WebConnection.cs: we don't need to trigger the next queued request
  65. until the response is closed.
  66. 2005-03-29 Miguel de Icaza <[email protected]>
  67. * HttpWebResponse.cs: Handle quotations in the cookies values, per
  68. the spec http://www.faqs.org/rfcs/rfc2109.html, it is allowed to
  69. have quotations.
  70. 2005-03-18 Gonzalo Paniagua Javier <[email protected]>
  71. * BasicClient.cs:
  72. * DigestClient.cs: check that GetCredential() does not return null.
  73. 2005-03-16 Gonzalo Paniagua Javier <[email protected]>
  74. * BasicClient.cs: ensure credentials are not null.
  75. 2005-03-10 Gonzalo Paniagua Javier <[email protected]>
  76. * HttpWebResponse.cs: moved cookie parsing into its own class.
  77. * WebHeaderCollection.cs: remove (probably bogus) GetMultipleValues
  78. call.
  79. * HttpWebRequest.cs: don't let exception raised in the ctor of
  80. HttpWebResponse vanish.
  81. Fixes bug #73275.
  82. 2005-03-01 Gonzalo Paniagua Javier <[email protected]>
  83. * WebHeaderCollection.cs: handle commas inside quotes when splitting
  84. a multi-value header. Fixes bug #73151.
  85. 2005-02-13 Gonzalo Paniagua Javier <[email protected]>
  86. * DigestClient.cs: fix for digest auth. and URIs containing query. Patch
  87. by James Wilcox. Fixes bug #72571.
  88. 2005-02-12 Gonzalo Paniagua Javier <[email protected]>
  89. * HttpWebResponse.cs:
  90. * WebConnection.cs:
  91. * HttpWebRequest.cs:
  92. * WebConnectionStream.cs: don't read the entire response unless the
  93. user requests it. Fixes bug #72443.
  94. 2005-02-08 Zoltan Varga <[email protected]>
  95. * IPv6Address.cs: Fix endianess problems.
  96. * IPAddress.cs: Fix misleading comments.
  97. 2005-02-04 Gonzalo Paniagua Javier <[email protected]>
  98. * HttpWebRequest.cs: send the headers when we're supposed to write
  99. a POST/PUT but call GetResponse before GetRequestStream.
  100. * WebConnectionStream.cs: new RequestWritten property.
  101. 2005-01-20 Jonathan Pryor <[email protected]>
  102. * EndpointPermission.cs: Fix IsSubsetof(hostname) so that the regression
  103. tests work. In particular, IsSubsetOf ("12.13.*.*", "12.13.14.*") failed
  104. because 14 wasn't a subset of * (which it is). Fix: if part1 is we
  105. continue to the next portion.
  106. 2005-01-20 Jonathan Pryor <[email protected]>
  107. * IPAddress.cs (ParseIPV4): Fix so that the regression tests work. In
  108. particular, " foo" and ".1.1.6" weren't being caught (" foo" because it
  109. started with a space, and ".1.1.6" because the split string accepted a
  110. 0-length portion, which would make 1...6 valid, but isn't valid based on
  111. similar test cases).
  112. 2005-01-20 Jonathan Pryor <[email protected]>
  113. * WebHeaderCollection.cs: Fix GetValues(string) to split the values on
  114. commas if the header is a Multi-Value header. This matches
  115. MonoTests.System.Net.WebHeaderCollectionTest.
  116. 2005-01-19 Sebastien Pouliot <[email protected]>
  117. * WebPermissionAttribute.cs: Fixed NET_1_1 behaviour.
  118. 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
  119. * WebConnectionStream.cs: remove unneeded check. Write detects and
  120. triggers the exception now.
  121. 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
  122. * AuthenticationManager.cs: don't lock on a public Type.
  123. * HttpWebRequest.cs: read the error response for auth. errors.
  124. 2004-12-12 Gonzalo Paniagua Javier <[email protected]>
  125. * HttpWebRequest.cs: set webResponse back to null when redirecting.
  126. Fix the previous patch so that it reads the whole response even if
  127. auto-redirect is not enabled. Closes bug #70484.
  128. 2004-12-12 Gonzalo Paniagua Javier <[email protected]>
  129. * HttpWebResponse.cs: added ReadAll method.
  130. * WebConnection.cs: in HandleError, set the response error after
  131. closing the socket. Use an async. delegate to finish reading any prior
  132. WebConnectionStream.
  133. * HttpWebRequest.cs: for error responses that allow content, read the
  134. stream immediately. Fixes bug #70483.
  135. 2004-12-11 Gonzalo Paniagua Javier <[email protected]>
  136. * CookieContainer.cs: quote the port number.
  137. 2004-12-10 Gonzalo Paniagua Javier <[email protected]>
  138. * WebConnection.cs:
  139. * WebConnectionStream.cs: removed TryReconnect. It's no longer needed.
  140. 2004-12-05 Gonzalo Paniagua Javier <[email protected]>
  141. * WebConnection.cs: set the event in Close so that if the queue is
  142. empty, we won't block forever on next request. The finalizer was
  143. removed because we're not implementing IDisposable pattern here.
  144. 2004-12-04 Gonzalo Paniagua Javier <[email protected]>
  145. * WebConnection.cs: handle errors on chunked streams. Fixes bug #66858.
  146. * ChunkStream.cs: added error checking all over.
  147. * HttpWebRequest.cs: throw the exception received in SetResponseError
  148. if we already have a response.
  149. (SetRequestData): Don't nest the exception if it's a WebException.
  150. 2004-12-03 Gonzalo Paniagua Javier <[email protected]>
  151. * WebConnection.cs: remove prevStream and don't set busy to false in
  152. HandleError. prevStream is not needed any more and setting 'busy' so
  153. early might let a request skip the queue.
  154. * WebConnectionGroup.cs: decrement the indexer when removing a dead
  155. reference from the arraylist.
  156. * WebConnectionStream.cs:
  157. (ReadAll): call NextRead if it has not been called before even when
  158. we have completed the request. Reuse the read buffer when reading a
  159. response of unknown size. Increase the buffer to 8kB.
  160. (BeginRead): increase pendingReads earlier and even when reading from
  161. the internal buffer.
  162. (EndRead): decrease pendingReads later and always.
  163. 2004-12-01 Gonzalo Paniagua Javier <[email protected]>
  164. * CookieContainer.cs: style, fixed checks for properties, implemented
  165. the MonoTODOs for the method that take an Uri. GetCookies and
  166. GetCookieHeaders now really return only the cookies that are requested
  167. filtering by the Uri parameter.
  168. * Cookie.cs: style, added default values for Comment, Domain and Port.
  169. 2004-12-01 Gonzalo Paniagua Javier <[email protected]>
  170. * CookieCollection.cs: reformatted, fixed Add by adding a new method to
  171. search across the arraylist, as list.IndexOf is not what we want.
  172. 2004-11-19 Gonzalo Paniagua Javier <[email protected]>
  173. * WebConnection.cs: check for FIN or RST on the socket before reusing.
  174. Fixes bug #69388.
  175. 2004-11-09 Gonzalo Paniagua Javier <[email protected]>
  176. * ChunkStream.cs: simplified condition for WantMore property.
  177. * WebConnection.cs: in Connect(), finish any pending reads we might
  178. have for chunked data. Ignore possible blank lines at the very
  179. beginning of the server response. Honor user set KeepAlive in
  180. HttpWebRequest for HTTP/1.1 connections. Thanks to Eyal Alayuf for
  181. his suggestions and code.
  182. 2004-11-01 Gonzalo Paniagua Javier <[email protected]>
  183. * HttpWebResponse.cs: don't lock up when the cookie received ends with
  184. a semicolon. Patch by Darryl VanDorp. Fixes bug #68956.
  185. 2004-10-27 Gonzalo Paniagua Javier <[email protected]>
  186. * HttpWebRequest.cs: don't fail if the request has already been sent
  187. when accessing ContentType setter. Fixes bug #68848.
  188. 2004-10-25 Gonzalo Paniagua Javier <[email protected]>
  189. * ChunkStream.cs:
  190. (WantMore): we're not done until we get a 0 chunk size and the trailer.
  191. The 0 can be expressed as more than one character too (ie, 000000).
  192. * HttpWebRequest.cs: new argument in SetResponseError.
  193. * WebConnection.cs: added argument to HandleError as a hint for
  194. debugging.
  195. (Connect): make the chunked stream be in the expected state when
  196. reusing.
  197. * WebConnectionStream.cs: removed unused method (ResetWriteBuffer).
  198. 2004-10-10 David Sheldon <[email protected]>
  199. * HttpWebRequest.cs: Use RemoveAndAdd for AddRange. Fixes unittest.
  200. 2004-10-05 Gonzalo Paniagua Javier <[email protected]>
  201. * HttpWebRequest.cs: use RemoveAndAdd for headers multivalue headers.
  202. * WebHeaderCollection.cs: added RemoveAndAdd that behaves like the old
  203. SetInternal.
  204. 2004-10-04 Gonzalo Paniagua Javier <[email protected]>
  205. * HttpWebRequest.cs: ProxyQuery returns true when we use a proxy without
  206. tunneling a secure connection.
  207. * ServicePoint.cs: added UseConnect property.
  208. * ServicePointManager.cs: set the UseConnect property when we use a http
  209. proxy for a https connection.
  210. * WebConnection.cs: setup the tunnled connection when using a proxy and
  211. https.
  212. 2004-09-13 Gonzalo Paniagua Javier <[email protected]>
  213. * HttpWebResponse.cs: remove unused SplitValue method.
  214. 2004-09-10 Sebastien Pouliot <[email protected]>
  215. * DnsPermission.cs: Updated to pass new unit tests.
  216. * DnsPermissionAttribute.cs: Cleanup.
  217. * SocketPermission.cs: Updated to pass new unit tests.
  218. * SocketPermissionAttribute.cs: Updated to pass new unit tests.
  219. * WebPermission.cs: Implemented some TODO - not complete yet.
  220. * WebPermissionAttribute.cs: Updated to pass new unit tests.
  221. 2004-08-11 Gonzalo Paniagua Javier <[email protected]>
  222. * Cookie.cs: don't fail when using default constructor. Fixes bug
  223. #62890.
  224. 2004-08-11 Gonzalo Paniagua Javier <[email protected]>
  225. * HttpWebResponse.cs: set-cookie and set-cookie2 can be present more
  226. than once and have multiple values. Don't rely on string.split when
  227. parsing cookie values.
  228. * WebHeaderCollection.cs: same thing for set-cookie and set-cookie2.
  229. Fixed GetValues (it was splitting values that contained a comma) and
  230. changed SetInternal to handle multi-value headers.
  231. Fixes bug #62744.
  232. 2004-07-26 Gonzalo Paniagua Javier <[email protected]>
  233. * WebProxy.cs: fix scheme detection. Patch by Konstantin Triger
  234. ([email protected]).
  235. 2004-07-16 Gonzalo Paniagua Javier <[email protected]>
  236. * HttpWebRequest.cs: detect changes in scheme or port when redirecting.
  237. Fixes las take on bug 61218.
  238. 2004-07-14 Gonzalo Paniagua Javier <[email protected]>
  239. * WebConnection.cs: moved loading of the ssl stream Type to its own
  240. method. Don't create a new ssl stream if we're reusing the connection.
  241. * WebConnectionStream.cs: ensure the number of bytes copied in ReadAll
  242. is the expected even if the dta from the server has extra bytes.
  243. 2004-07-12 Gonzalo Paniagua Javier <[email protected]>
  244. * WebConnection.cs:
  245. * WebConnectionStream.cs: when the status code is 1xx, 204 or 304,
  246. "responses MUST NOT include a message-body". We tried to read the
  247. stream even when getting those codes and considered the 0 length
  248. read as a failure.
  249. 2004-07-09 Gonzalo Paniagua Javier <[email protected]>
  250. * HttpWebRequest.cs: removed bogus Monitor.Exit.
  251. * WebConnection.cs: use Address instead of RequestUri when checking for
  252. the scheme in order to select the stream type. Fixes bug #61218.
  253. 2004-06-06 Gonzalo Paniagua Javier <[email protected]>
  254. * ChunkStream.cs: added ChunkLeft property.
  255. * WebConnection.cs:
  256. (EndRead): when using small byte arrays to read from a chunked stream,
  257. ensure we've read the chunk size and try to fulfill the request
  258. completely. fixes bug 59653.
  259. 2004-05-29 Gonzalo Paniagua Javier <[email protected]>
  260. * WebConnectionStream.cs: fixed CanRead property. Closes bug #59273.
  261. 2004-05-28 Gonzalo Paniagua Javier <[email protected]>
  262. * DigestClient.cs: cache the sessions based on address and
  263. credentials, not only address. Added poor men's expiration to
  264. the session cache. Fixes bug #59202.
  265. 2004-05-26 Gonzalo Paniagua Javier <[email protected]>
  266. * IPAddress.cs:
  267. * IPEndPoint.cs:
  268. * IPv6Address.cs: no more warnings about IPAddress.Address.
  269. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  270. * WebException.cs: implemented serialization .ctor and
  271. GetObjectData().
  272. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  273. * WebAsyncResult.cs: don't create the WaitHandle if not needed.
  274. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  275. * HttpWebRequest.cs: added 3 missing properties for 1.1. They are not
  276. used yet.
  277. * NetConfig.cs: added MaxResponseHeadersLength field.
  278. * ServicePoint.cs:
  279. * ServicePointManager.cs: added missing properties for 1.1.
  280. 2004-05-03 Sebastien Pouliot <[email protected]>
  281. * WebConnection.cs: Use assembly name const to load Mono.Security.
  282. 2004-05-03 Lluis Sanchez Gual <[email protected]>
  283. * NtlmClient.cs: Use assembly name const to load Mono.Security.
  284. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  285. * WebConnectionStream.cs: avoid the exception when getting the content
  286. length if possible.
  287. 2004-03-29 Lluis Sanchez Gual <[email protected]>
  288. * HttpWebRequest.cs: Use a lock block instead of Monitor.Enter/Exit, so
  289. the lock is released in case of exception (for example, a
  290. ThreadAbortException). This also "fixes" bug #52417.
  291. Beware, this requires a runtime update (due to a bug in Monitor.Exit).
  292. * ServicePoint.cs: Changed method from internal to private, since it
  293. is not called from outside the class.
  294. 2004-03-24 Gonzalo Paniagua Javier <[email protected]>
  295. * HttpWebRequest.cs: added the exception status to the error message.
  296. * WebConnection.cs: add headers using SetInternal instead of Add to
  297. bypass header name validation. Fixes bug #55994.
  298. * WebHeaderCollection.cs: added SetInternal (string header).
  299. 2004-03-04 Gonzalo Paniagua Javier <[email protected]>
  300. * WebConnection.cs:
  301. * WebConnectionGroup.cs: the requests queue is now shared for all the
  302. connections belonging to the same connection group.
  303. 2004-02-26 Sebastien Pouliot <[email protected]>
  304. * DefaultCertificatePolicy.cs: New. Certificate validation
  305. policy compatible with the documented one present in Fx. It
  306. allows valid certificates and expired certificates to be used
  307. for SSL connections.
  308. * ServicePointManager.cs: Removed the DummyPolicy. Now creates
  309. a DefaultCertificatePolicy to validate certificates.
  310. 2004-02-26 Gonzalo Paniagua Javier <[email protected]>
  311. * ServicePoint.cs: SendContinue is always false for HTTP/1.0
  312. * WebConnection.cs: get rid of WaitForContinue() (yes!) and prevent
  313. calling more the ContinueDelegate more than once when we get the
  314. headers in several packets.
  315. * WebConnectionStream.cs: removed call to WaitForContinue.
  316. 2004-02-25 Sebastien Pouliot <[email protected]>
  317. * WebConnection.cs: Update previous patch to use HttpsClientStream
  318. (internal in Mono.Security assembly) in place of SslClientStream.
  319. This will reduce reflection and allow to use ICertificatePolicy.
  320. 2004-02-25 Gonzalo Paniagua Javier <[email protected]>
  321. * DigestClient.cs: fix quote handling. Reordered attributes in response.
  322. Fixed typo (QOP->CNonce). Now Digest works with apache2.
  323. 2004-02-25 Gonzalo Paniagua Javier <[email protected]>
  324. * DigestClient.cs: removed Console.
  325. * HttpWebRequest.cs: 401/407 were hanging for GET. Fixed.
  326. 2004-02-24 Sebastien Pouliot <[email protected]>
  327. * DigestClient.cs: Fixed issue with Apache server which do not use "
  328. for specifying the digest algorithm (.e.g. algorithm=MD5 not ="MD5").
  329. 2004-02-20 Gonzalo Paniagua Javier <[email protected]>
  330. * HttpWebRequest.cs: arghhh. I used the server response headers instead
  331. of what the client is supposed to send. Thanks to Helge Hess.
  332. 2004-02-19 Gonzalo Paniagua Javier <[email protected]>
  333. * AuthenticationManager.cs: implemented PreAuthenticate().
  334. * HttpWebRequest.cs: once we know the version of the server, use it if
  335. below the requested one. Remove 'Expect', 'Content-Length' and /or
  336. 'Transfer-Encoding' if appropiate due to changes in version. Fixed
  337. 'Host' header for non-standard ports. Support preauthentication. Closes
  338. bug #50530.
  339. 2004-02-19 Gonzalo Paniagua Javier <[email protected]>
  340. * HttpWebRequest.cs: check for missing or wrong URI in Location header
  341. when redirecting.
  342. * WebConnection.cs: if the data read does not contain all the headers,
  343. keep it around and read the rest until we get to the response body.
  344. Allow response code with no description. Fixed bug #54543.
  345. 2004-02-18 Sebastien Pouliot <[email protected]>
  346. * SecurityProtocolType.cs: Added missing [Serializable] to enum. Added
  347. Default and Ssl2 to NET_2_0 profile. Enum is now internal for NET_1_0
  348. profile (as we need it for SslClientStream).
  349. * ServicePoint.cs: Added internal SetCertificates(client,server).
  350. * ServicePointManager.cs: Added CheckCertificateRevocationList and
  351. CheckCertificateRevocationList static properties (public in 1.1,
  352. internal for 1.0).
  353. * WebConnection.cs: Dynamically creates a SslClientStream (from
  354. Mono.Security assembly) in case of https. Changed NetworkStream to
  355. Stream everywhere.
  356. 2004-02-18 Gonzalo Paniagua Javier <[email protected]>
  357. * HttpWebRequest.cs: send the 'Connection: keep-alive' header when we
  358. don't know the server version or it's 1.0.
  359. * ServicePoint.cs: added SetVersion.
  360. * WebAsyncResult.cs: remove ChunkAsyncResult.
  361. * WebConnection.cs: set the ServicePoint version when getting a response
  362. from the server.
  363. * WebConnectionStream.cs: when posting chunked content, send the head,
  364. body and trailer of the chunk at once instead of doing 3 separate
  365. writes, which may cause troubles.
  366. 2004-02-18 Gonzalo Paniagua Javier <[email protected]>
  367. * WebConnection.cs: if we get a 100 when we're not waiting for it, set
  368. that information in the ServicePoint.
  369. * WebConnectionStream.cs: send headers in the right order for
  370. non-chunked POST.
  371. 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
  372. * WebConnectionStream.cs: fixed nullrefs in BeginWrite/EndWrite.
  373. 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
  374. * HttpWebRequest.cs: on second and sucesive tries when authenticating,
  375. don't use chunked encoding for POST, as we know the content length and
  376. have the body. Nullify bodyBuffer always in CheckFinalStatus.
  377. * WebAsyncResult.cs: added ChunkAsyncResult property. It holds the
  378. IAsyncResult when writing CRLF at the end of a chunk.
  379. * WebConnectionStream.cs: support sending chunked data.
  380. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  381. * HttpWebRequest.cs: When retrying a POST request after an
  382. authentication failure, resend the body. This fixes bug #51841.
  383. * WebConnectionStream.cs: Added properties for getting what's been
  384. written.
  385. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  386. * HttpWebRequest.cs: don't send 'Expect: 100-continue' for 1.0 version.
  387. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  388. * HttpWebRequest.cs: support proxy authentication.
  389. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  390. * BasicClient.cs:
  391. * DigestClient.cs: use IndexOf instead of StartsWith to deal with
  392. servers that provide several authentication schemas.
  393. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  394. * ChunkStream.cs: use an array of buffers instead of a MemoryStream for
  395. storing the chunks. This way, we won't miss traling data from the
  396. previous chunk when a new one is received before the other is fully
  397. read.
  398. 2004-01-27 Nick Drochak <[email protected]>
  399. * DigestClient.cs:
  400. * HttpWebRequest.cs:
  401. * IPv6Address.cs:
  402. * WebClient.cs:
  403. * WebConnection.cs:
  404. * WebConnectionStream.cs: Remove unused variables thus eliminating some
  405. build warnings.
  406. 2004-01-26 Gonzalo Paniagua Javier <[email protected]>
  407. * WebConnection.cs: patch by Yaacov Akiba Slama that fixes 100-continue
  408. handling for the case when the same packet also contains the actual
  409. [2-5]xx response.
  410. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  411. * HttpWebRequest.cs: Added missing property.
  412. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  413. * Dns.cs: don't block forever in EndResolve and EndGetHostByName. Fixes
  414. bug #53222.
  415. 2004-01-16 Lluis Sanchez Gual <[email protected]>
  416. * ChunkStream.cs: The "size" parameter of Write is not the number of
  417. bytes to write, but the last offset to be written. Thus, in WriteAndRead
  418. Back, since "read" is not an offset but the number of bytes, it must be
  419. added to the offset. Maybe it would be a good idea to change the name of
  420. the parameter, since it is confusing. This should fix bug #52591.
  421. 2004-01-12 Lluis Sanchez Gual <[email protected]>
  422. * WebConnection.cs: Yet another fix for WebConnection. This fixes
  423. bug #52169.
  424. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  425. * WebConnection.cs: Data.Init is a bad boy. Lluis realized. He also
  426. tidied up the end of ReadDone. Disabled relaunching the request if 2
  427. InitRead are called, since now we don't throw everything into
  428. RegisterWaitForSingleObject but one request at a time.
  429. * WebConnectionGroup.cs: when checking available connections, allow them
  430. not to be Connected but allocated to honor the connection limit.
  431. * WebConnectionStream.cs: CheckComplete() now checks for nextReadCalled
  432. too. ReadAll don't mess contentLength if it's provided in the headers.
  433. BIG thanks to Lluis. Turns out that we were debugging the same stuff and
  434. his Data.Init discovery was THE thing I was missing.
  435. Fixes bug #51277.
  436. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  437. * ServicePointManager.cs: use GetMaxConnections to get the appropiate
  438. number of connections limit.
  439. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  440. * MonoHttpDate.cs: use the invariant culture, not en-US. Suspected
  441. guilty for bug 52629.
  442. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  443. * CredentialCache.cs: return null instead of throwing NotImplemented.
  444. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  445. * HttpWebRequest.cs: fixed checking if method allows a body. Patch by
  446. Benjamin Jemlich ([email protected]).
  447. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  448. * HttpWebRequest.cs: deal with authentication schemes that have more
  449. than 1 round trip (Ntlm).
  450. 2003-12-11 Gonzalo Paniagua Javier <[email protected]>
  451. * NtlmClient.cs: new class that actually uses one from Mono.Http to do
  452. the authentication.
  453. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  454. * HttpWebRequest.cs: when building the redirect URI, use the previous
  455. one as the base URI, which makes relative URIs work.
  456. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  457. * DigestClient.cs: merged in code from Sebastien Pouliot and Greg
  458. Reinacker that Supports cnonce and preauthentication.
  459. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  460. * DigestClient.cs: initial Digest authentication. Works with apache
  461. mod_digest.
  462. 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
  463. * HttpWebRequest.cs: removed unneeded StringBuilder.
  464. * WebConnection.cs: default to keep the connection open for HTTP/1.1
  465. only or HTTP/1.0 + (Proxy-)Connection header. Fixes bug #51208.
  466. 2003-11-17 Gonzalo Paniagua Javier <[email protected]>
  467. * WebConnection.cs: turns out that socket.Connected is not useful until
  468. we actually try to send/receive data, even if the other end has already
  469. closed the socket. Added TryReconnect() and Connected.
  470. * WebConnectionData.cs: default value for StatusCode is 0 now.
  471. * WebConnectionGroup.cs: reuse the connection since the beginning,
  472. instead of opening up to ConnectionLimit and then reusing.
  473. * WebConnectionStream.cs: reopen the socket if we're trying to reuse
  474. one which fails on first write.
  475. 2003-11-14 Gonzalo Paniagua Javier <[email protected]>
  476. * WebConnectionStream.cs: when a callback is passed to BeginRead/Write,
  477. wrap it and do our job before calling it. Fixes bug #48497.
  478. 2003-11-12 Andreas Nahr <[email protected]>
  479. * WebExceptionStatus.cs: Restyled, Added .Net 1.1 members
  480. * SecurityProtocolType.cs: Added and implemented
  481. 2003-11-12 Gonzalo Paniagua Javier <[email protected]>
  482. * HttpWebRequest.cs: fixed redirects when they target another host.
  483. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  484. * IPAddress.cs: prevent exceptions when trying to parse the static IPv6
  485. addresses.
  486. 2003-10-17 Pedro Martínez Juliá <[email protected]>
  487. * WebClient.cs: use Path.DirectorySeparator instead of "/" for
  488. windows compatibility. Add some checks for file paths like
  489. "C:/xxx/yyy/..." and like "/home/xxx/...".
  490. 2003-10-16 Pedro Martínez Juliá <[email protected]>
  491. * WebClient.cs: added a slash between directory and file names.
  492. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  493. * HttpWebRequest.cs:
  494. * HttpWebResponse.cs: better abort handling and leave the stream in a
  495. stable status on abort.
  496. 2003-10-12 Pedro Martínez Juliá <[email protected]>
  497. * WebClient.cs: refine reading of local files (like MS.NET).
  498. 2003-10-10 Pedro Martínez Juliá <[email protected]>
  499. * WebClient.cs: MS.NET works right when we try OpenRead("file.txt")
  500. but we didn't. Now, when Uri fails with an exception, it adds
  501. "file://" before the URI and tries again.
  502. 2003-10-09 Gonzalo Paniagua Javier <[email protected]>
  503. * ServicePoint.cs: preparing for recycling. Not yet finished.
  504. * ServicePointManager.cs: this is the one that reads config.
  505. * WebConnectionGroup.cs: don't read config here.
  506. * WebConnection.cs: added the queue again. Launch queued requests on
  507. error.
  508. 2003-10-08 Gonzalo Paniagua Javier <[email protected]>
  509. * WebConnection.cs: the queue is now handled by the threadpool.
  510. Initialize the connection data in a place where it does not depend on
  511. the execution order of the requests in threadpool. More error handling.
  512. * WebConnectionGroup.cs: use the limits in the config file and reuse
  513. connections when the limit is reached.
  514. 2003-10-02 Gonzalo Paniagua Javier <[email protected]>
  515. * HttpWebRequest.cs: handle 304 à la MS.
  516. * WebConnection.cs: set the response data when reading 0 bytes.
  517. 2003-09-16 Gonzalo Paniagua Javier <[email protected]>
  518. * WebConnectionStream.cs: fix by Lluis to avoid the stream being in an
  519. invalid state.
  520. 2003-08-14 Nick Drochak <[email protected]>
  521. * WebRequest.cs: Check lower case string since that is what we will add.
  522. 2003-08-04 Jerome Laban <[email protected]>
  523. * IPHostEntry.cs: Default contructor must not initialize members.
  524. (Fixes bug #45575).
  525. 2003-07-27 Andreas Nahr <[email protected]>
  526. * CredentialCache.cs: Removed undefined serializable attribute
  527. 2003-07-20 Gonzalo Paniagua Javier <[email protected]>
  528. * ChunkStream.cs:
  529. (WantMore): true if we've not received the last chunk yet. Fixes
  530. bug #45463. Thanks to Miguel for tracking this down and providing a
  531. test case.
  532. * WebConnection.cs: removed bogus ^M's.
  533. * WebHeaderCollection.cs: provide more info when the header or value is
  534. wrong.
  535. 2003-07-15 Andreas Nahr <[email protected]>
  536. * ChunkStream.cs: Removed unused members
  537. * IPAddress.cs: Removed unused exception variable, fixes compiler
  538. warning.
  539. * WebConnection.cs: Removed unused exception variables, fixes compiler
  540. warnings.
  541. 2003-07-14 Lluis Sanchez Gual <[email protected]>
  542. * NetConfig.cs: If Clone method is not public, then it must use
  543. explicit interface method implementation syntax.
  544. 2003-07-14 Jerome Laban <[email protected]>
  545. * Dns.cs: Reworked indentation.
  546. Added IPv6 support.
  547. Added literal address checking in GetHostByAddress.
  548. Changed Dns.Resolve behavior.
  549. * IPAddress.cs:
  550. * IPEndPoint.cs: Added IPv6 support.
  551. * IPv6Address.cs: Added address compression.
  552. * NetConfig.cs: Added configuration section.
  553. 2003-07-14 Jerome Laban <[email protected]>
  554. * ServicePoint.cs: Removed Connect and GetEndPoint methods.
  555. Removed reverse resolution when uri is literal IP address.
  556. * WebConnection.cs: IPv6 compatibility update: Try to connect
  557. to all addresses returned by IPHostEntry.
  558. * WebConnectionGroup.cs: Removed unused parameter.
  559. 2003-07-13 Andreas Nahr <[email protected]>
  560. * WebProxy.cs: Add serialization/ deserialization support
  561. 2003-07-10 Andreas Nahr <[email protected]>
  562. * ProxyUseType.cs:
  563. * WebStatus.cs: Deleted (do not exist in this assembly)
  564. * IPv6Address.cs: Made internal
  565. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  566. * HttpWebRequest.cs:
  567. * ServicePointManager.cs:
  568. * WebConnection.cs: added support for proxies.
  569. 2003-07-05 Andreas Nahr <[email protected]>
  570. * DnsPermissionAttribute.cs:
  571. * SocketPermissionAttribute.cs: Fixed wrong AttributeUsageAttribute
  572. 2003-07-05 Andreas Nahr <[email protected]>
  573. * WebPermission.cs: Added and partially implemented
  574. * WebPermissionAttribute.cs: Added and implemented
  575. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  576. * WebClient.cs: fixed bug #45651.
  577. 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
  578. * WebClient.cs: Small fix by Sebastian <[email protected]>.
  579. 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
  580. * WebConnection.cs: fixed header writing the reusing a connection and
  581. the server does not send 100-continue response.
  582. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  583. * WebConnection.cs: close the socket and connection when disposing.
  584. * WebRequest.cs: removed setter for RequestUri. Allow non-public ctors
  585. when creating instances.
  586. * HttpWebRequest.cs:
  587. * HttpWebResponse.cs:
  588. * FileWebRequest.cs: support serialization.
  589. * FileWebResponse.cs: support serialization and fixed dispose checks.
  590. * FileWebRequestCreator.cs:
  591. * HttpRequestCreator.cs: added internal .ctor.
  592. 2003-06-24 Lluis Sanchez Gual <[email protected]>
  593. * HttpWebRequest.cs: SetWriteStream(): SendRequestHeaders should be
  594. called before asyncWrite.SetCompleted, to make sure that the waiting
  595. thread does not start to send more information before
  596. SendRequestHeaders has finished.
  597. 2003-06-22 Lluis Sanchez Gual <[email protected]>
  598. * WebConnectionStream.cs: Only increment pendingReads if an asynchronous
  599. read is really needed.
  600. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  601. * WebHeaderCollection.cs: prevent duplication headers used niternally.
  602. 2003-06-14 Gonzalo Paniagua Javier <[email protected]>
  603. * HttpWebRequest.cs: if CookieContainer has not been set, make
  604. HttpWebResponse ignore Set-Cookie* headers.
  605. * HttpWebResponse.cs: Set-Cookie and Set-Cookie headers removed if
  606. CookieContainer have been provided to the request.
  607. 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
  608. * AuthenticationManager.cs: get the list of authentication modules from
  609. the configuration files. Added Clear and fixed Unregister.
  610. * BasicClient.cs: fully implemented.
  611. * HttpWebRequest.cs: added support for Basic authentication when
  612. credentials are set.
  613. * NetworkCredential.cs: fixed GetCredential.
  614. 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
  615. * HttpWebRequest.cs: *really* take care of requestSent to prevent
  616. sending the same request twice.
  617. * WebAsyncResult.cs: don't close the handle. Just Reset.
  618. * WebConnectionStream.cs: removed unneeded line.
  619. 2003-06-12 Gonzalo Paniagua Javier <[email protected]>
  620. * HttpWebRequest.cs: use InternalClose when we are not going to send the
  621. rest of the request stream because of an error after sending the
  622. headers.
  623. * WebConnection.cs: check for completion after setting the response.
  624. Enable reading in NextRead.
  625. * WebConnectionStream.cs: re-fixed the count for partially buffered
  626. reads. If the network stream returns 0 bytes, we're done.
  627. 2003-06-11 Gonzalo Paniagua Javier <[email protected]>
  628. * WebClient.cs: implemented UploadFile. Fixed SetupRequest to set the
  629. special headers *after* the others.
  630. 2003-06-10 Gonzalo Paniagua Javier <[email protected]>
  631. * WebConnectionStream.cs: when the read is partially filled from the
  632. initial buffer, add those bytes too. Thanks to Lluis for debugging this.
  633. 2003-06-09 Gonzalo Paniagua Javier <[email protected]>
  634. * HttpWebRequest.cs: added ExpectContinue property.
  635. * WebConnection.cs: allow 100 Continue to be delayed after waiting for
  636. it.
  637. 2003-06-08 Gonzalo Paniagua Javier <[email protected]>
  638. * HttpWebRequest.cs: don't send "Expect: 100-continue" is the server
  639. is known not to respond to that.
  640. * ServicePoint.cs: added SendContinue property.
  641. * WebConnection.cs: only wait 2 seconds for a continue reply. If it
  642. timeouts, set SendContinue to false and proceeed sending data.
  643. * WebConnectionStream.cs: if 100-continue is not received and instead we
  644. get a 417 or anything else, don't send the data.
  645. * WebClient.cs: implemented all missing properties and methods except
  646. UploadFile.
  647. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  648. * FileWebRequestCreator.cs: splitted from WebRequest.
  649. * HttpRequestCreator.cs: splitted fromWebRequest.
  650. * WebRequest.cs: added methods that are used by the new configuration
  651. handler to set prefix/type name requests creators.
  652. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  653. * AuthenticationManager.cs:
  654. * Authorization.cs:
  655. * BasicClient.cs: new file.
  656. * ChunkStream.cs: new file.
  657. * Cookie.cs:
  658. * CookieContainer.cs:
  659. * GlobalProxySelection.cs:
  660. * HttpWebRequest.cs:
  661. * HttpWebResponse.cs:
  662. * IAuthenticationModule.cs:
  663. * ServicePoint.cs:
  664. * ServicePointManager.cs:
  665. * WebAsyncResult.cs: new file.
  666. * WebConnection.cs: new file.
  667. * WebConnectionData.cs: new file.
  668. * WebConnectionGroup.cs: new file.
  669. * WebConnectionStream.cs: new file.
  670. * WebException.cs:
  671. * WebHeaderCollection.cs:
  672. * WebProxy.cs:
  673. * WebResponse.cs:
  674. Reworked HttpWebRequest and related classes.
  675. 2003-05-30 Miguel de Icaza <[email protected]>
  676. * HttpWebRequest.cs (EndGetResponse): Do not throw exceptions on
  677. InternalServerError (500)
  678. 2003-05-29 Miguel de Icaza <[email protected]>
  679. * HttpWebRequest.cs (Close): Move the code that accumulates the
  680. output to Close from Flush. Flush could have been called in the
  681. middle of the processing, and would have generated invalid results
  682. (which it did).
  683. 2003-05-23 Zoltan Varga <[email protected]>
  684. * Dns.cs (GetHostByAddress): Return the local host when called with
  685. IF_ANY.
  686. 2003-04-29 Miguel de Icaza <[email protected]>
  687. * WebClient.cs (DownloadData): Close the underlyng stream.
  688. (DownloadFile): Use using, so the file gets closed.
  689. 2003-04-24 Miguel de Icaza <[email protected]>
  690. * WebClient.cs (DownloadData): Instead of using a MemoryStream,
  691. keep track of all the small chunks in an ArrayList. The
  692. MemoryStream had the property of reallocating itself, and the
  693. problem was that MemoryStream.GetBuffer would return the buffer
  694. (correctly), but not something of the right size. So clients of
  695. DownloadData would get the extra unused bytes as part of the
  696. result.
  697. The solution would have been to make another copy at this point,
  698. instead, we only keep the small allocations around in the
  699. ArrayList, and we only do one large allocation at the end.
  700. * HttpWebResponse.cs: If there is a Content-Length header, pass
  701. this information to our HttpWebResponseStream, so it knows when to
  702. stop, instead of waiting for the stream to be shut down by the
  703. other end.
  704. * HttpWebRequest.cs: Only set the `delay-header-writing' mode on
  705. the underlying stream if the method will do a content transfer and
  706. no Content-Length was provided. If not (HEAD and GET or
  707. Content-Length provided), keep going.
  708. 2003-04-23 Miguel de Icaza <[email protected]>
  709. * HttpWebRequest.cs: .NET Allows the HttpWebRequest to not have
  710. the ContentLength specified on the request. If that happens, we
  711. have to accumulate all the data written, and once we accumulate
  712. the data, we send it off.
  713. Notice that the documentation in .NET is actually incorrect, they
  714. state that setting ContentLength is mandatory. It is not.
  715. 2003-04-12 Gonzalo Paniagua Javier <[email protected]>
  716. * HttpWebResponse.cs: fixes bug #41180.
  717. 2003-03-25 Gonzalo Paniagua Javier <[email protected]>
  718. * HttpWebRequest.cs: throw an exception is the response code is >= 300.
  719. 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
  720. * HttpWebRequest.cs: implemented IDisposable, make the request stream
  721. read only. Changed the way of disposing the socket.
  722. * HttpWebResponse.cs: wrapped the socket in a write-only NetworkStream,
  723. handle chunked transfer encoding (no more hangs), added serialization
  724. stuff, call CheckDisposed at the beginning of methods/properties (not
  725. in a finally clause).
  726. 2003-02-17 Nick Drochak <[email protected]>
  727. * WebClient.cs : Implemented Credentials property.
  728. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  729. * SocketAddress.cs: byte 1 of the data is the high byte of the family,
  730. not the size.
  731. 2003-01-29 Atsushi Enomoto <[email protected]>
  732. * WebClient.cs : hacked OpenRead, DownloadData and DownloadFile.
  733. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  734. * HttpWebRequest.cs: applied patch from Tim Haynes
  735. ([email protected]).
  736. Avoided double-sending of the request to the server when both
  737. GetRequestStream() and GetResponse() are called.
  738. System Header attributes survive the Headers attribute set.
  739. Added handling of Connection: KeepAlive/Close
  740. 2002-10-03 Dick Porter <[email protected]>
  741. * Dns.cs: Fixed GetHostName()
  742. 2002-09-09 Gonzalo Paniagua Javier <[email protected]>
  743. * HttpWebRequest.cs:
  744. * HttpWebResponse.cs: applied another patch from Shahms E. King
  745. ([email protected]).
  746. 2002-09-03 Gonzalo Paniagua Javier <[email protected]>
  747. * HttpWebRequest.cs:
  748. * HttpWebResponse.cs: applied patch from Shahms E. King
  749. ([email protected]).
  750. 2002-05-29 Lawrence Pit <[email protected]>
  751. * MonoHttpDate.cs: added
  752. * HttpWebRequest.cs: using MonoHttpDate
  753. * HttpWebResponse.cs: using MonoHttpDate
  754. * DnsPermission.cs: correct XML output
  755. * SocketPermission.cs: correct XML output
  756. 2002-05-21 Lawrence Pit <[email protected]>
  757. * WebClient.cs: stubbed
  758. * WebProxy.cs: fixed bug; had to change internal representation
  759. of bypasslist to ArrayList, different implementation of checking
  760. regex's.
  761. 2002-05-20 Lawrence Pit <[email protected]>
  762. * WebProxy.cs: added, implemented
  763. * ServicePoint.cs: implemented most
  764. * ServicePointManager.cs: implemented
  765. * HttpWebRequest.cs: started implementation
  766. * HttpWebResponse.cs: improved disposable routines
  767. * FileWebRequest.cs: slight improvement of Close method
  768. 2002-05-19 Lawrence Pit <[email protected]>
  769. * FileWebRequest.cs: finished implementation of async methods.
  770. * FileWebResponse.cs: improved disposable routines.
  771. * IPEndPoint.cs: fixed bug #24666 in Serialize and Create methods,
  772. byte ordering of address was backwards.
  773. 2002-05-13 Lawrence Pit <[email protected]>
  774. * Dns.cs: Reimplemented (simplified and fixed) asynchronous methods by
  775. relying on standard asynchronous delegate features. Added checks for
  776. null strings.
  777. * HttpWebResponse.cs: implemented properties
  778. * FileWebResponse.cs: improved the way resources are disposed.
  779. * FileWebRequest.cs: started implementation of asynchronous methods
  780. * ServicePointManager.cs: implemented properties
  781. 2002-05-12 Lawrence Pit <[email protected]>
  782. * HttpWebRequest.cs: properties implemented
  783. * HttpWebResponse.cs: added
  784. * GlobalProxySelection.cs: implemented
  785. * FileWebResponse.cs: added
  786. * FileWebRequest.cs: some methods implemented
  787. 2002-05-11 Lawrence Pit <[email protected]>
  788. * WebHeaderCollection.cs: implemented
  789. * WebRequest.cs: implemented
  790. * FileWebRequest.cs and HttpWebRequest.cs stubs added
  791. 2002-05-09 Lawrence Pit <[email protected]>
  792. * Rewrote IPAddress.Parse method, passing all unit tests
  793. 2002-05-09 Lawrence Pit <[email protected]>
  794. * fixed bug in IPEndPoint.Equals method
  795. * fixed bug in IPAddress.Parse method
  796. * fixed bug in IPAddress.SwapLong method
  797. * fixed several bugs in Cookie.cs
  798. 2002-05-06 Lawrence Pit <[email protected]>
  799. * WebRequest.cs: added
  800. * WebResponse.cs: implemented
  801. * WebException.cs: implemented
  802. * WebHeaderCollection.cs: added
  803. * HttpVersion.cs: implemented
  804. * HttpContinueDelegate.cs: added
  805. * IWebProxy.cs: added
  806. * IWebRequestCreate.cs: added
  807. * ICertificatePolicy.cs: added
  808. * ServicePoint.cs: stubbed
  809. * ServicePointManager.cs: stubbed
  810. * CookieContainer.cs: added
  811. * Authorization.cs: implemented
  812. 2002-05-05 Lawrence Pit <[email protected]>
  813. * CredentialCache.cs: implemented
  814. 2002-05-05 Lawrence Pit <[email protected]>
  815. * IPAddress.cs: fixed IsLoopback, address was already in host order
  816. 2002-05-05 Lawrence Pit <[email protected]>
  817. * IPv6Address.cs: added (note: not part of .net spec)
  818. 2002-05-01 Lawrence Pit <[email protected]>
  819. * DnsPermission.cs: implemented
  820. * DnsPermissionAttribute.cs: implemented
  821. 2002-04-28 Lawrence Pit <[email protected]>
  822. * EndpointPermission.cs: implemented
  823. * SocketPermission.cs: implemented
  824. * SocketPermissionAttribute.cs: implemented
  825. * ProtocolViolationException.cs: implemented
  826. * Dns.c: passing w32 error code when no host found
  827. 2002-04-27 Lawrence Pit <[email protected]>
  828. * Cookie.cs: implemented
  829. * CookieCollection.cs: implemented
  830. * CookieException.cs: implemented
  831. 2002-04-24 Gonzalo Paniagua Javier <[email protected]>
  832. * IPAddress.cs: initialize the read only fields with Parse().
  833. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  834. * IPAddress.cs: little changes to behave as MS.
  835. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  836. * Dns.cs (Resolve): behave as MS. Agreed with Mads.
  837. 2002-04-17 Gonzalo Paniagua Javier <[email protected]>
  838. * IPAddress.cs: the icalls for sockets are endianness-aware. So I
  839. changed a few things. Also included a workaround for bug #23547.
  840. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  841. * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
  842. by Paolo) instead of guessing the endianness.
  843. * SocketAddress.cs: implemented Equals() and GetHashcode().
  844. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  845. * IPEndPoint.cs: modifications to constructors according to the
  846. specifications (suggested by Lawrence Pit).
  847. 2002-04-15 Patrik Torstensson <[email protected]>
  848. * IPEndPoint.cs: Fixed build breaker.
  849. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  850. * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
  851. complete.
  852. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  853. * IPAddress.cs: finished all MonoTODO's. Use network order to store
  854. the address. Check for max and min values in Address:set. IsLoopback()
  855. returns now true for all 127.x.y.z. Some more checks in Parse ().
  856. Some changes to behave as MS does.
  857. 2002-02-24 Duncan Mak <[email protected]>
  858. * ICredentialLookup.cs: Added the GetCredential method to the
  859. interface. The interface is named "ICredentials", should this file
  860. be renamed?
  861. * NetworkCredential.cs: Added to CVS. Need to investigate on how
  862. GetCredential() works
  863. 2002-01-23 Dick Porter <[email protected]>
  864. * SocketAddress.cs: Implemented.
  865. * IPEndPoint.cs: Turned 'Address' field into a real property.
  866. Implemented Create() and Serialize() methods.
  867. * IPAddress.cs: Fixed class constructor, turned 'Address' field
  868. into a real property. Removed undocumented "public
  869. IPAddress(string)" constructor.
  870. * EndPoint.cs: Implemented. All methods return
  871. NotSupportedException to enforce subclass overriding.
  872. * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
  873. P/Invokes with portable internal calls.
  874. 2002-01-17 Miguel de Icaza <[email protected]>
  875. * Dns.cs: Updated to API changes.
  876. * IPAddress.cs: Updated API. Much left to implement.
  877. * Dns.cs: Remove IPToString method
  878. 2002-01-06 Ravi Pratap <[email protected]>
  879. * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
  880. attribute insertion.
  881. 2001-11-22 Nick Drochak <[email protected]>
  882. * IPAddress.cs: Fix constructor bug, properly name Address property,
  883. and use triple-slash for comments.
  884. 2001-11-20 Miguel de Icaza <[email protected]>
  885. * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
  886. None as suggested by Phillip.
  887. 2001-09-26 Mads Pultz <[email protected]>
  888. * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
  889. 2001-09-24 Mads Pultz <[email protected]>
  890. * Dns.cs: Minor changes (some print statements removed)
  891. 2001-09-23 Mads Pultz <[email protected]>
  892. * Dns.cs: Initial work submitted to repository.
  893. * IPHostEntry.cs: Initial work submitted to repository.
  894. 2001-07-12 Sean MacIsaac <[email protected]>
  895. * Authorization.cs: Fixed compiler error.
  896. * IAuthenticationModule.cs: Changes for Beta2.
  897. * IPAddress.cs: Internal storage changed to be uint not int.
  898. * IPEndPoint.cs: Fixed compiler error.
  899. * EndPoint.cs: Fixed compiler error.
  900. * AuthenticationManager.cs: Fixed typo.