| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614 |
- 2005-12-06 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebResponse.cs: don't fail if the cookie ends with a 'name'
- without a value. Fixes bug #76922.
- 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
- * EndPointListener.cs:
- * HttpListenerRequest.cs: don't require the Host header for 1.0. Just
- map that to the '*' or '+' host.
- 2005-11-22 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: the byte[] ctor supports length 4 in .NET 2.0.
- Fixes bug #76792.
- 2005-11-21 Senganal T <[email protected]>
- * Dns.cs : corrected a mistake in GetHostEntry ()
- 2005-11-21 Senganal T <[email protected]>
- * Dns.cs : added GetHostEntry() method for 2.0 api conformance
- 2005-11-18 Gonzalo Paniagua Javier <[email protected]>
- * HttpRequestHeader.cs: add missing values.
- 2005-11-17 Gonzalo Paniagua Javier <[email protected]>
- * HttpListenerPrefixCollection.cs:
- * HttpWebResponse.cs:
- * Dns.cs:
- * HttpListenerRequest.cs:
- * HttpWebRequest.cs:
- * HttpListenerResponse.cs: a few signature fixes for 2.0.
- 2005-11-17 Gonzalo Paniagua Javier <[email protected]>
- * HttpListenerPrefixCollection.cs:
- * EndPointListener.cs:
- * HttpStreamAsyncResult.cs:
- * HttpListenerContext.cs:
- * HttpListenerBasicIdentity.cs:
- * AuthenticationSchemeSelector.cs:
- * HttpListener.cs:
- * WebHeaderCollection.cs:
- * ListenerPrefix.cs:
- * HttpListenerException.cs:
- * HttpResponseHeader.cs:
- * EndPointManager.cs:
- * HttpListenerRequest.cs:
- * HttpRequestHeader.cs:
- * BindIPEndPoint.cs:
- * ResponseStream.cs:
- * ChunkedInputStream.cs:
- * HttpStatusCode.cs:
- * ListenerAsyncResult.cs:
- * ChunkStream.cs:
- * HttpConnection.cs:
- * HttpUtility.cs:
- * HttpListenerResponse.cs:
- * RequestStream.cs: initial implementation of HttpListener. There are
- a few TODOs left (cookies, HTTPS) but almost everything else is in.
- 2005-11-15 Sebastien Pouliot <[email protected]>
- * IPv6Address.cs: Added on overload to ToString to get a the full
- length address returned (as required by System.Uri).
- 2005-11-15 Carlos Alberto Cortez <[email protected]>
- * WebRequestMethods.cs: New 2.0 class.
-
- 2005-11-05 Atsushi Enomoto <[email protected]>
- * WebClient: use POST for DownloadData(). Fixed bug #76631.
- 2005-10-26 Atsushi Enomoto <[email protected]>
- * AuthenticationSchemes.cs : Fixed enum values and added [Flags].
- 2005-10-19 Atsushi Enomoto <[email protected]>
- * WebClient.cs : added net_2_0 DownloadString() and DownloadData()
- with HTTP method as well.
- 2005-10-19 Atsushi Enomoto <[email protected]>
- * WebClient.cs : added UploadString() and Encoding (net_2_0). Added
- some new overloaded stuff that takes Uri instead of string address.
- 2005-10-17 Sebastien Pouliot <[email protected]>
- * ICredentialPolicy.cs: New. Interface for 2.0.
- 2005-10-05 Atsushi Enomoto <[email protected]>
- * AuthenticationSchemes.cs : new 2.0 enum.
- 2005-08-27 Gonzalo Paniagua Javier <[email protected]>
- * GlobalProxySelection.cs: remove double lock.
- * HttpWebRequest.cs: remove double lock in GetServicePoint() and use
- a private object when locking.
- 2005-07-15 Miguel de Icaza <[email protected]>
- * DigestClient.cs: Fix bug #75556, the qop argument must be
- quoted, per http://www.faqs.org/rfcs/rfc2617.html section
- `quo-options'.
- 2005-07-03 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: initiate writing the body before trying to
- read. This fixes the performance problems observed in web services.
- Closes bug #75455.
- 2005-06-27 Lluis Sanchez Gual <[email protected]>
- * IPAddress.cs: Changed field names for the sake of serialization
- interoperability with MS.NET.
-
- 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: if cnc.EndRead throws, mark the asyncresult as done.
- * WebConnectionStream.cs: if we're done with the body of a chunk, don't
- require the next chunk header to be there, as some servers might close
- the connection (while also sending 'Connection: close').
- 2005-06-22 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: MS implementation follows redirects for POST. Seems
- to me that this is against 10.3.3 in RFC 2616, but may be the user
- 'authorization' to do this is implicit in AllowAutoRedirect...
- 2005-06-21 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: SslClientStream.BeginRead might not be asynchronous
- if there's no record available to read. This is a workaround that makes
- the call to BeginRead itself asynchronous. Fixes bug #75342.
- 2005-06-10 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs:
- * HttpWebRequest.cs:
- * WebConnectionStream.cs: initiate the polling for input data after
- sending the header so that we detect any response that the server sends
- back even if we're still trying to write the request for a POST/PUT.
- If we get the response (or an error) before any one calls GetResponse(),
- keep it around instead of ignoring it.
- 2005-06-03 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: send the right header/user/password in
- PreAuthenticate in presence of a proxy.
- 2005-06-03 Gonzalo Paniagua Javier <[email protected]>
- * IPv6Address.cs: fix IsLoopback. Closes bug #75128.
- 2005-06-03 Gonzalo Paniagua Javier <[email protected]>
- * IPv6Address.cs: don't do extra check on ipv4 if this is a ipv6
- address. Fixes bug #75125.
- 2005-06-03 Gonzalo Paniagua Javier <[email protected]>
- * ServicePointManager.cs: when going through a proxy, use 2 different
- service points depending on the scheme. Fixes bug #75135.
- 2005-05-30 Gonzalo Paniagua Javier <[email protected]>
- * Dns.cs: don't parse the address when it comes from an IPAddress.
- 2005-05-23 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: prevent 2 nullrefs when the aborting during
- Connect() and reset the status to Success before starting a new
- request.
- 2005-05-19 Sebastien Pouliot <[email protected]>
- * WebRequest.cs: Throw NotImplementedException (not NotSupported
- Exception) for stuff that should have been abstract. No exception
- is thrown by the serialization constructor.
- 2005-05-04 James Willcox <[email protected]>
- * DigestClient.cs: convert to a hex string with "X8" consistently
- for nc-value
- 2005-05-04 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: don't rethrow errors in Write, as the error will be
- received by GetResponse*. The result is that the threadpool thread doing
- this will not end up printing the exception. Fixes bug #74817.
- 2005-05-03 Gonzalo Paniagua Javier <[email protected]>
- * ServicePoint.cs: HostEntry needs to be thread safe.
- 2005-05-03 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: removed a 'slightly' important line by mistake.
- * WebConnectionStream.cs: if the transfer encoding is chunked, ignore
- content-length header if present.
- 2005-05-03 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: no need to use an AutoResetEvent.
- * WebConnectionStream.cs: don't start any more reads on the socket
- after getting a 0 signalling the end. This fixes Ben's infamous foo.cs
- test.
- 2005-04-29 Gonzalo Paniagua Javier <[email protected]>
- * BasicClient.cs: firefox/IE just send latin1, stripping the high byte
- from unicode >= 256 characters.
- 2005-04-29 Gonzalo Paniagua Javier <[email protected]>
- * BasicClient.cs: use latin1 when encoding the username/domain/password.
- Fixes bug #74745.
- 2005-04-17 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: if the BeginRead/BeginWrite is completed
- synchronously, no need to create the ManualResetEvent to wait on.
- 2005-04-16 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: call SetComplete in EndWrite when we're not
- buffering the request body. Fixes bug #74637.
- * WebAsyncResult.cs: renamed field.
- 2005-04-14 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs:
- * WebAsyncResult.cs: ensure we only call EndRead once per async. result.
- Update total before invoking the callback when present.
- 2005-04-11 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs:
- * WebConnectionStream.cs: don't start reading until we've sent at least
- the headers. This way we ensure that a Write happens before any Read,
- which is needed by the SSL code.
- 2005-04-11 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: ensure we read everything before redirecting.
- 2005-04-11 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: provide a default callback when doing async.
- read/write and waiting for a timeout so that the callback sets the
- event and we don't block forever. Fixes bug #74539 take 3.
- 2005-04-10 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs:
- * HttpWebRequest.cs: now Abort() works properly. Fixes bug #74177.
- 2005-04-10 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: fix some breakage from my last patch.
- * WebConnectionStream.cs: invoke the callback when done even in EndRead.
- 2005-04-10 Sebastien Pouliot <[email protected]>
- * WebConnection.cs: Added support for TrustFailure when throwing a
- WebException. Fix bug #74286.
- 2005-04-10 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs:
- * WebConnectionStream.cs: implemented support for ReadWriteTimeout.
- 2005-04-10 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: if we're reading chunked data and didn't use the
- stream to read, we gotta set the async. result as complete and invoke
- the callback. Don't call nstream.EndRead with the wrong IAsyncResult.
- * WebConnectionStream.cs: in EndRead, pass the correct IAsyncResult to
- cnc.EndRead. Lock on a field instead of 'this'.
- 2005-04-09 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: throw the exception if we got an error, as now
- it's catched in the redirection handling code.
- 2005-04-08 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: moved redirection handling to a proper place.
- 2005-04-07 Gonzalo Paniagua Javier <[email protected]>
- * WebHeaderCollection.cs: added if-modified-since to the list of
- restricted headers.
- * ServicePoint.cs: use a field object when locking.
- 2005-04-07 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: ForceCompletion actually calls NextRead. No
- need to wait for a Close/ReadAll when we have no content.
- 2005-04-04 Gonzalo Paniagua Javier <[email protected]>
- * NtlmClient.cs: fix typo in assembly name.
- 2005-03-30 Gonzalo Paniagua Javier <[email protected]>
- * CookieContainer.cs: adding to a CookieCollection might not increment
- the number of items if the cookie is replaced. Now Count works properly.
- Fixed an array index exception (typo).
- * CookieCollection.cs: also compare the version.
- * HttpWebResponse.cs: when we have cookies, add them to the request
- container.
- * HttpWebRequest.cs: changed last parameter of HttpWebResponse ctor.
- 2005-03-30 Miguel de Icaza <[email protected]>
- * Cookie.cs: Compare using the InvariantCulture, to match the
- behavior of CookieContainer that already did this.
- 2005-03-30 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: we don't need to trigger the next queued request
- until the response is closed.
- 2005-03-29 Miguel de Icaza <[email protected]>
- * HttpWebResponse.cs: Handle quotations in the cookies values, per
- the spec http://www.faqs.org/rfcs/rfc2109.html, it is allowed to
- have quotations.
- 2005-03-18 Gonzalo Paniagua Javier <[email protected]>
- * BasicClient.cs:
- * DigestClient.cs: check that GetCredential() does not return null.
- 2005-03-16 Gonzalo Paniagua Javier <[email protected]>
- * BasicClient.cs: ensure credentials are not null.
- 2005-03-10 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebResponse.cs: moved cookie parsing into its own class.
- * WebHeaderCollection.cs: remove (probably bogus) GetMultipleValues
- call.
- * HttpWebRequest.cs: don't let exception raised in the ctor of
- HttpWebResponse vanish.
- Fixes bug #73275.
- 2005-03-01 Gonzalo Paniagua Javier <[email protected]>
- * WebHeaderCollection.cs: handle commas inside quotes when splitting
- a multi-value header. Fixes bug #73151.
- 2005-02-13 Gonzalo Paniagua Javier <[email protected]>
- * DigestClient.cs: fix for digest auth. and URIs containing query. Patch
- by James Wilcox. Fixes bug #72571.
- 2005-02-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebResponse.cs:
- * WebConnection.cs:
- * HttpWebRequest.cs:
- * WebConnectionStream.cs: don't read the entire response unless the
- user requests it. Fixes bug #72443.
- 2005-02-08 Zoltan Varga <[email protected]>
- * IPv6Address.cs: Fix endianess problems.
- * IPAddress.cs: Fix misleading comments.
- 2005-02-04 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: send the headers when we're supposed to write
- a POST/PUT but call GetResponse before GetRequestStream.
- * WebConnectionStream.cs: new RequestWritten property.
- 2005-01-20 Jonathan Pryor <[email protected]>
- * EndpointPermission.cs: Fix IsSubsetof(hostname) so that the regression
- tests work. In particular, IsSubsetOf ("12.13.*.*", "12.13.14.*") failed
- because 14 wasn't a subset of * (which it is). Fix: if part1 is we
- continue to the next portion.
- 2005-01-20 Jonathan Pryor <[email protected]>
- * IPAddress.cs (ParseIPV4): Fix so that the regression tests work. In
- particular, " foo" and ".1.1.6" weren't being caught (" foo" because it
- started with a space, and ".1.1.6" because the split string accepted a
- 0-length portion, which would make 1...6 valid, but isn't valid based on
- similar test cases).
- 2005-01-20 Jonathan Pryor <[email protected]>
- * WebHeaderCollection.cs: Fix GetValues(string) to split the values on
- commas if the header is a Multi-Value header. This matches
- MonoTests.System.Net.WebHeaderCollectionTest.
- 2005-01-19 Sebastien Pouliot <[email protected]>
- * WebPermissionAttribute.cs: Fixed NET_1_1 behaviour.
- 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: remove unneeded check. Write detects and
- triggers the exception now.
- 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
- * AuthenticationManager.cs: don't lock on a public Type.
- * HttpWebRequest.cs: read the error response for auth. errors.
- 2004-12-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: set webResponse back to null when redirecting.
- Fix the previous patch so that it reads the whole response even if
- auto-redirect is not enabled. Closes bug #70484.
- 2004-12-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebResponse.cs: added ReadAll method.
- * WebConnection.cs: in HandleError, set the response error after
- closing the socket. Use an async. delegate to finish reading any prior
- WebConnectionStream.
- * HttpWebRequest.cs: for error responses that allow content, read the
- stream immediately. Fixes bug #70483.
- 2004-12-11 Gonzalo Paniagua Javier <[email protected]>
- * CookieContainer.cs: quote the port number.
- 2004-12-10 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs:
- * WebConnectionStream.cs: removed TryReconnect. It's no longer needed.
- 2004-12-05 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: set the event in Close so that if the queue is
- empty, we won't block forever on next request. The finalizer was
- removed because we're not implementing IDisposable pattern here.
- 2004-12-04 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: handle errors on chunked streams. Fixes bug #66858.
- * ChunkStream.cs: added error checking all over.
- * HttpWebRequest.cs: throw the exception received in SetResponseError
- if we already have a response.
- (SetRequestData): Don't nest the exception if it's a WebException.
- 2004-12-03 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: remove prevStream and don't set busy to false in
- HandleError. prevStream is not needed any more and setting 'busy' so
- early might let a request skip the queue.
-
- * WebConnectionGroup.cs: decrement the indexer when removing a dead
- reference from the arraylist.
- * WebConnectionStream.cs:
- (ReadAll): call NextRead if it has not been called before even when
- we have completed the request. Reuse the read buffer when reading a
- response of unknown size. Increase the buffer to 8kB.
- (BeginRead): increase pendingReads earlier and even when reading from
- the internal buffer.
- (EndRead): decrease pendingReads later and always.
- 2004-12-01 Gonzalo Paniagua Javier <[email protected]>
- * CookieContainer.cs: style, fixed checks for properties, implemented
- the MonoTODOs for the method that take an Uri. GetCookies and
- GetCookieHeaders now really return only the cookies that are requested
- filtering by the Uri parameter.
- * Cookie.cs: style, added default values for Comment, Domain and Port.
- 2004-12-01 Gonzalo Paniagua Javier <[email protected]>
- * CookieCollection.cs: reformatted, fixed Add by adding a new method to
- search across the arraylist, as list.IndexOf is not what we want.
- 2004-11-19 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: check for FIN or RST on the socket before reusing.
- Fixes bug #69388.
- 2004-11-09 Gonzalo Paniagua Javier <[email protected]>
- * ChunkStream.cs: simplified condition for WantMore property.
- * WebConnection.cs: in Connect(), finish any pending reads we might
- have for chunked data. Ignore possible blank lines at the very
- beginning of the server response. Honor user set KeepAlive in
- HttpWebRequest for HTTP/1.1 connections. Thanks to Eyal Alayuf for
- his suggestions and code.
- 2004-11-01 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebResponse.cs: don't lock up when the cookie received ends with
- a semicolon. Patch by Darryl VanDorp. Fixes bug #68956.
- 2004-10-27 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: don't fail if the request has already been sent
- when accessing ContentType setter. Fixes bug #68848.
- 2004-10-25 Gonzalo Paniagua Javier <[email protected]>
- * ChunkStream.cs:
- (WantMore): we're not done until we get a 0 chunk size and the trailer.
- The 0 can be expressed as more than one character too (ie, 000000).
- * HttpWebRequest.cs: new argument in SetResponseError.
- * WebConnection.cs: added argument to HandleError as a hint for
- debugging.
- (Connect): make the chunked stream be in the expected state when
- reusing.
- * WebConnectionStream.cs: removed unused method (ResetWriteBuffer).
- 2004-10-10 David Sheldon <[email protected]>
- * HttpWebRequest.cs: Use RemoveAndAdd for AddRange. Fixes unittest.
- 2004-10-05 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: use RemoveAndAdd for headers multivalue headers.
- * WebHeaderCollection.cs: added RemoveAndAdd that behaves like the old
- SetInternal.
- 2004-10-04 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: ProxyQuery returns true when we use a proxy without
- tunneling a secure connection.
- * ServicePoint.cs: added UseConnect property.
- * ServicePointManager.cs: set the UseConnect property when we use a http
- proxy for a https connection.
- * WebConnection.cs: setup the tunnled connection when using a proxy and
- https.
- 2004-09-13 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebResponse.cs: remove unused SplitValue method.
- 2004-09-10 Sebastien Pouliot <[email protected]>
- * DnsPermission.cs: Updated to pass new unit tests.
- * DnsPermissionAttribute.cs: Cleanup.
- * SocketPermission.cs: Updated to pass new unit tests.
- * SocketPermissionAttribute.cs: Updated to pass new unit tests.
- * WebPermission.cs: Implemented some TODO - not complete yet.
- * WebPermissionAttribute.cs: Updated to pass new unit tests.
- 2004-08-11 Gonzalo Paniagua Javier <[email protected]>
- * Cookie.cs: don't fail when using default constructor. Fixes bug
- #62890.
- 2004-08-11 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebResponse.cs: set-cookie and set-cookie2 can be present more
- than once and have multiple values. Don't rely on string.split when
- parsing cookie values.
- * WebHeaderCollection.cs: same thing for set-cookie and set-cookie2.
- Fixed GetValues (it was splitting values that contained a comma) and
- changed SetInternal to handle multi-value headers.
- Fixes bug #62744.
- 2004-07-26 Gonzalo Paniagua Javier <[email protected]>
- * WebProxy.cs: fix scheme detection. Patch by Konstantin Triger
- ([email protected]).
- 2004-07-16 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: detect changes in scheme or port when redirecting.
- Fixes las take on bug 61218.
- 2004-07-14 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: moved loading of the ssl stream Type to its own
- method. Don't create a new ssl stream if we're reusing the connection.
- * WebConnectionStream.cs: ensure the number of bytes copied in ReadAll
- is the expected even if the dta from the server has extra bytes.
- 2004-07-12 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs:
- * WebConnectionStream.cs: when the status code is 1xx, 204 or 304,
- "responses MUST NOT include a message-body". We tried to read the
- stream even when getting those codes and considered the 0 length
- read as a failure.
- 2004-07-09 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: removed bogus Monitor.Exit.
- * WebConnection.cs: use Address instead of RequestUri when checking for
- the scheme in order to select the stream type. Fixes bug #61218.
- 2004-06-06 Gonzalo Paniagua Javier <[email protected]>
- * ChunkStream.cs: added ChunkLeft property.
- * WebConnection.cs:
- (EndRead): when using small byte arrays to read from a chunked stream,
- ensure we've read the chunk size and try to fulfill the request
- completely. fixes bug 59653.
- 2004-05-29 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: fixed CanRead property. Closes bug #59273.
- 2004-05-28 Gonzalo Paniagua Javier <[email protected]>
- * DigestClient.cs: cache the sessions based on address and
- credentials, not only address. Added poor men's expiration to
- the session cache. Fixes bug #59202.
- 2004-05-26 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs:
- * IPEndPoint.cs:
- * IPv6Address.cs: no more warnings about IPAddress.Address.
- 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
- * WebException.cs: implemented serialization .ctor and
- GetObjectData().
- 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
- * WebAsyncResult.cs: don't create the WaitHandle if not needed.
- 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: added 3 missing properties for 1.1. They are not
- used yet.
- * NetConfig.cs: added MaxResponseHeadersLength field.
- * ServicePoint.cs:
- * ServicePointManager.cs: added missing properties for 1.1.
- 2004-05-03 Sebastien Pouliot <[email protected]>
- * WebConnection.cs: Use assembly name const to load Mono.Security.
- 2004-05-03 Lluis Sanchez Gual <[email protected]>
- * NtlmClient.cs: Use assembly name const to load Mono.Security.
- 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: avoid the exception when getting the content
- length if possible.
- 2004-03-29 Lluis Sanchez Gual <[email protected]>
- * HttpWebRequest.cs: Use a lock block instead of Monitor.Enter/Exit, so
- the lock is released in case of exception (for example, a
- ThreadAbortException). This also "fixes" bug #52417.
- Beware, this requires a runtime update (due to a bug in Monitor.Exit).
- * ServicePoint.cs: Changed method from internal to private, since it
- is not called from outside the class.
- 2004-03-24 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: added the exception status to the error message.
- * WebConnection.cs: add headers using SetInternal instead of Add to
- bypass header name validation. Fixes bug #55994.
- * WebHeaderCollection.cs: added SetInternal (string header).
- 2004-03-04 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs:
- * WebConnectionGroup.cs: the requests queue is now shared for all the
- connections belonging to the same connection group.
- 2004-02-26 Sebastien Pouliot <[email protected]>
- * DefaultCertificatePolicy.cs: New. Certificate validation
- policy compatible with the documented one present in Fx. It
- allows valid certificates and expired certificates to be used
- for SSL connections.
- * ServicePointManager.cs: Removed the DummyPolicy. Now creates
- a DefaultCertificatePolicy to validate certificates.
- 2004-02-26 Gonzalo Paniagua Javier <[email protected]>
- * ServicePoint.cs: SendContinue is always false for HTTP/1.0
- * WebConnection.cs: get rid of WaitForContinue() (yes!) and prevent
- calling more the ContinueDelegate more than once when we get the
- headers in several packets.
- * WebConnectionStream.cs: removed call to WaitForContinue.
- 2004-02-25 Sebastien Pouliot <[email protected]>
- * WebConnection.cs: Update previous patch to use HttpsClientStream
- (internal in Mono.Security assembly) in place of SslClientStream.
- This will reduce reflection and allow to use ICertificatePolicy.
- 2004-02-25 Gonzalo Paniagua Javier <[email protected]>
- * DigestClient.cs: fix quote handling. Reordered attributes in response.
- Fixed typo (QOP->CNonce). Now Digest works with apache2.
- 2004-02-25 Gonzalo Paniagua Javier <[email protected]>
- * DigestClient.cs: removed Console.
- * HttpWebRequest.cs: 401/407 were hanging for GET. Fixed.
- 2004-02-24 Sebastien Pouliot <[email protected]>
- * DigestClient.cs: Fixed issue with Apache server which do not use "
- for specifying the digest algorithm (.e.g. algorithm=MD5 not ="MD5").
- 2004-02-20 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: arghhh. I used the server response headers instead
- of what the client is supposed to send. Thanks to Helge Hess.
- 2004-02-19 Gonzalo Paniagua Javier <[email protected]>
- * AuthenticationManager.cs: implemented PreAuthenticate().
- * HttpWebRequest.cs: once we know the version of the server, use it if
- below the requested one. Remove 'Expect', 'Content-Length' and /or
- 'Transfer-Encoding' if appropiate due to changes in version. Fixed
- 'Host' header for non-standard ports. Support preauthentication. Closes
- bug #50530.
- 2004-02-19 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: check for missing or wrong URI in Location header
- when redirecting.
- * WebConnection.cs: if the data read does not contain all the headers,
- keep it around and read the rest until we get to the response body.
- Allow response code with no description. Fixed bug #54543.
- 2004-02-18 Sebastien Pouliot <[email protected]>
- * SecurityProtocolType.cs: Added missing [Serializable] to enum. Added
- Default and Ssl2 to NET_2_0 profile. Enum is now internal for NET_1_0
- profile (as we need it for SslClientStream).
- * ServicePoint.cs: Added internal SetCertificates(client,server).
- * ServicePointManager.cs: Added CheckCertificateRevocationList and
- CheckCertificateRevocationList static properties (public in 1.1,
- internal for 1.0).
- * WebConnection.cs: Dynamically creates a SslClientStream (from
- Mono.Security assembly) in case of https. Changed NetworkStream to
- Stream everywhere.
- 2004-02-18 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: send the 'Connection: keep-alive' header when we
- don't know the server version or it's 1.0.
- * ServicePoint.cs: added SetVersion.
- * WebAsyncResult.cs: remove ChunkAsyncResult.
- * WebConnection.cs: set the ServicePoint version when getting a response
- from the server.
- * WebConnectionStream.cs: when posting chunked content, send the head,
- body and trailer of the chunk at once instead of doing 3 separate
- writes, which may cause troubles.
- 2004-02-18 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: if we get a 100 when we're not waiting for it, set
- that information in the ServicePoint.
- * WebConnectionStream.cs: send headers in the right order for
- non-chunked POST.
- 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: fixed nullrefs in BeginWrite/EndWrite.
- 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: on second and sucesive tries when authenticating,
- don't use chunked encoding for POST, as we know the content length and
- have the body. Nullify bodyBuffer always in CheckFinalStatus.
- * WebAsyncResult.cs: added ChunkAsyncResult property. It holds the
- IAsyncResult when writing CRLF at the end of a chunk.
- * WebConnectionStream.cs: support sending chunked data.
- 2004-01-24 Lluis Sanchez Gual <[email protected]>
- * HttpWebRequest.cs: When retrying a POST request after an
- authentication failure, resend the body. This fixes bug #51841.
- * WebConnectionStream.cs: Added properties for getting what's been
- written.
- 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: don't send 'Expect: 100-continue' for 1.0 version.
- 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: support proxy authentication.
- 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
- * BasicClient.cs:
- * DigestClient.cs: use IndexOf instead of StartsWith to deal with
- servers that provide several authentication schemas.
- 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
- * ChunkStream.cs: use an array of buffers instead of a MemoryStream for
- storing the chunks. This way, we won't miss traling data from the
- previous chunk when a new one is received before the other is fully
- read.
- 2004-01-27 Nick Drochak <[email protected]>
- * DigestClient.cs:
- * HttpWebRequest.cs:
- * IPv6Address.cs:
- * WebClient.cs:
- * WebConnection.cs:
- * WebConnectionStream.cs: Remove unused variables thus eliminating some
- build warnings.
- 2004-01-26 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: patch by Yaacov Akiba Slama that fixes 100-continue
- handling for the case when the same packet also contains the actual
- [2-5]xx response.
- 2004-01-24 Lluis Sanchez Gual <[email protected]>
- * HttpWebRequest.cs: Added missing property.
- 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
- * Dns.cs: don't block forever in EndResolve and EndGetHostByName. Fixes
- bug #53222.
- 2004-01-16 Lluis Sanchez Gual <[email protected]>
- * ChunkStream.cs: The "size" parameter of Write is not the number of
- bytes to write, but the last offset to be written. Thus, in WriteAndRead
- Back, since "read" is not an offset but the number of bytes, it must be
- added to the offset. Maybe it would be a good idea to change the name of
- the parameter, since it is confusing. This should fix bug #52591.
- 2004-01-12 Lluis Sanchez Gual <[email protected]>
- * WebConnection.cs: Yet another fix for WebConnection. This fixes
- bug #52169.
- 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: Data.Init is a bad boy. Lluis realized. He also
- tidied up the end of ReadDone. Disabled relaunching the request if 2
- InitRead are called, since now we don't throw everything into
- RegisterWaitForSingleObject but one request at a time.
- * WebConnectionGroup.cs: when checking available connections, allow them
- not to be Connected but allocated to honor the connection limit.
-
- * WebConnectionStream.cs: CheckComplete() now checks for nextReadCalled
- too. ReadAll don't mess contentLength if it's provided in the headers.
- BIG thanks to Lluis. Turns out that we were debugging the same stuff and
- his Data.Init discovery was THE thing I was missing.
- Fixes bug #51277.
- 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
- * ServicePointManager.cs: use GetMaxConnections to get the appropiate
- number of connections limit.
- 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
- * MonoHttpDate.cs: use the invariant culture, not en-US. Suspected
- guilty for bug 52629.
- 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
- * CredentialCache.cs: return null instead of throwing NotImplemented.
- 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: fixed checking if method allows a body. Patch by
- Benjamin Jemlich ([email protected]).
- 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: deal with authentication schemes that have more
- than 1 round trip (Ntlm).
- 2003-12-11 Gonzalo Paniagua Javier <[email protected]>
- * NtlmClient.cs: new class that actually uses one from Mono.Http to do
- the authentication.
- 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: when building the redirect URI, use the previous
- one as the base URI, which makes relative URIs work.
- 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
- * DigestClient.cs: merged in code from Sebastien Pouliot and Greg
- Reinacker that Supports cnonce and preauthentication.
- 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
- * DigestClient.cs: initial Digest authentication. Works with apache
- mod_digest.
- 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: removed unneeded StringBuilder.
- * WebConnection.cs: default to keep the connection open for HTTP/1.1
- only or HTTP/1.0 + (Proxy-)Connection header. Fixes bug #51208.
- 2003-11-17 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: turns out that socket.Connected is not useful until
- we actually try to send/receive data, even if the other end has already
- closed the socket. Added TryReconnect() and Connected.
- * WebConnectionData.cs: default value for StatusCode is 0 now.
- * WebConnectionGroup.cs: reuse the connection since the beginning,
- instead of opening up to ConnectionLimit and then reusing.
- * WebConnectionStream.cs: reopen the socket if we're trying to reuse
- one which fails on first write.
- 2003-11-14 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: when a callback is passed to BeginRead/Write,
- wrap it and do our job before calling it. Fixes bug #48497.
- 2003-11-12 Andreas Nahr <[email protected]>
- * WebExceptionStatus.cs: Restyled, Added .Net 1.1 members
- * SecurityProtocolType.cs: Added and implemented
- 2003-11-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: fixed redirects when they target another host.
- 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: prevent exceptions when trying to parse the static IPv6
- addresses.
- 2003-10-17 Pedro Martínez Juliá <[email protected]>
- * WebClient.cs: use Path.DirectorySeparator instead of "/" for
- windows compatibility. Add some checks for file paths like
- "C:/xxx/yyy/..." and like "/home/xxx/...".
- 2003-10-16 Pedro Martínez Juliá <[email protected]>
- * WebClient.cs: added a slash between directory and file names.
- 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs:
- * HttpWebResponse.cs: better abort handling and leave the stream in a
- stable status on abort.
- 2003-10-12 Pedro Martínez Juliá <[email protected]>
- * WebClient.cs: refine reading of local files (like MS.NET).
- 2003-10-10 Pedro Martínez Juliá <[email protected]>
- * WebClient.cs: MS.NET works right when we try OpenRead("file.txt")
- but we didn't. Now, when Uri fails with an exception, it adds
- "file://" before the URI and tries again.
- 2003-10-09 Gonzalo Paniagua Javier <[email protected]>
- * ServicePoint.cs: preparing for recycling. Not yet finished.
- * ServicePointManager.cs: this is the one that reads config.
- * WebConnectionGroup.cs: don't read config here.
- * WebConnection.cs: added the queue again. Launch queued requests on
- error.
- 2003-10-08 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: the queue is now handled by the threadpool.
- Initialize the connection data in a place where it does not depend on
- the execution order of the requests in threadpool. More error handling.
- * WebConnectionGroup.cs: use the limits in the config file and reuse
- connections when the limit is reached.
- 2003-10-02 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: handle 304 à la MS.
- * WebConnection.cs: set the response data when reading 0 bytes.
- 2003-09-16 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: fix by Lluis to avoid the stream being in an
- invalid state.
- 2003-08-14 Nick Drochak <[email protected]>
- * WebRequest.cs: Check lower case string since that is what we will add.
- 2003-08-04 Jerome Laban <[email protected]>
- * IPHostEntry.cs: Default contructor must not initialize members.
- (Fixes bug #45575).
- 2003-07-27 Andreas Nahr <[email protected]>
- * CredentialCache.cs: Removed undefined serializable attribute
- 2003-07-20 Gonzalo Paniagua Javier <[email protected]>
- * ChunkStream.cs:
- (WantMore): true if we've not received the last chunk yet. Fixes
- bug #45463. Thanks to Miguel for tracking this down and providing a
- test case.
-
- * WebConnection.cs: removed bogus ^M's.
-
- * WebHeaderCollection.cs: provide more info when the header or value is
- wrong.
- 2003-07-15 Andreas Nahr <[email protected]>
- * ChunkStream.cs: Removed unused members
- * IPAddress.cs: Removed unused exception variable, fixes compiler
- warning.
- * WebConnection.cs: Removed unused exception variables, fixes compiler
- warnings.
- 2003-07-14 Lluis Sanchez Gual <[email protected]>
- * NetConfig.cs: If Clone method is not public, then it must use
- explicit interface method implementation syntax.
- 2003-07-14 Jerome Laban <[email protected]>
- * Dns.cs: Reworked indentation.
- Added IPv6 support.
- Added literal address checking in GetHostByAddress.
- Changed Dns.Resolve behavior.
- * IPAddress.cs:
- * IPEndPoint.cs: Added IPv6 support.
- * IPv6Address.cs: Added address compression.
- * NetConfig.cs: Added configuration section.
- 2003-07-14 Jerome Laban <[email protected]>
- * ServicePoint.cs: Removed Connect and GetEndPoint methods.
- Removed reverse resolution when uri is literal IP address.
- * WebConnection.cs: IPv6 compatibility update: Try to connect
- to all addresses returned by IPHostEntry.
- * WebConnectionGroup.cs: Removed unused parameter.
- 2003-07-13 Andreas Nahr <[email protected]>
- * WebProxy.cs: Add serialization/ deserialization support
- 2003-07-10 Andreas Nahr <[email protected]>
- * ProxyUseType.cs:
- * WebStatus.cs: Deleted (do not exist in this assembly)
- * IPv6Address.cs: Made internal
- 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs:
- * ServicePointManager.cs:
- * WebConnection.cs: added support for proxies.
- 2003-07-05 Andreas Nahr <[email protected]>
- * DnsPermissionAttribute.cs:
- * SocketPermissionAttribute.cs: Fixed wrong AttributeUsageAttribute
- 2003-07-05 Andreas Nahr <[email protected]>
- * WebPermission.cs: Added and partially implemented
- * WebPermissionAttribute.cs: Added and implemented
- 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
- * WebClient.cs: fixed bug #45651.
- 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
- * WebClient.cs: Small fix by Sebastian <[email protected]>.
- 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: fixed header writing the reusing a connection and
- the server does not send 100-continue response.
- 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
- * WebConnection.cs: close the socket and connection when disposing.
- * WebRequest.cs: removed setter for RequestUri. Allow non-public ctors
- when creating instances.
- * HttpWebRequest.cs:
- * HttpWebResponse.cs:
- * FileWebRequest.cs: support serialization.
- * FileWebResponse.cs: support serialization and fixed dispose checks.
- * FileWebRequestCreator.cs:
- * HttpRequestCreator.cs: added internal .ctor.
- 2003-06-24 Lluis Sanchez Gual <[email protected]>
- * HttpWebRequest.cs: SetWriteStream(): SendRequestHeaders should be
- called before asyncWrite.SetCompleted, to make sure that the waiting
- thread does not start to send more information before
- SendRequestHeaders has finished.
- 2003-06-22 Lluis Sanchez Gual <[email protected]>
- * WebConnectionStream.cs: Only increment pendingReads if an asynchronous
- read is really needed.
- 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
- * WebHeaderCollection.cs: prevent duplication headers used niternally.
- 2003-06-14 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: if CookieContainer has not been set, make
- HttpWebResponse ignore Set-Cookie* headers.
- * HttpWebResponse.cs: Set-Cookie and Set-Cookie headers removed if
- CookieContainer have been provided to the request.
- 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
- * AuthenticationManager.cs: get the list of authentication modules from
- the configuration files. Added Clear and fixed Unregister.
- * BasicClient.cs: fully implemented.
- * HttpWebRequest.cs: added support for Basic authentication when
- credentials are set.
- * NetworkCredential.cs: fixed GetCredential.
- 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: *really* take care of requestSent to prevent
- sending the same request twice.
- * WebAsyncResult.cs: don't close the handle. Just Reset.
- * WebConnectionStream.cs: removed unneeded line.
- 2003-06-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: use InternalClose when we are not going to send the
- rest of the request stream because of an error after sending the
- headers.
- * WebConnection.cs: check for completion after setting the response.
- Enable reading in NextRead.
- * WebConnectionStream.cs: re-fixed the count for partially buffered
- reads. If the network stream returns 0 bytes, we're done.
- 2003-06-11 Gonzalo Paniagua Javier <[email protected]>
- * WebClient.cs: implemented UploadFile. Fixed SetupRequest to set the
- special headers *after* the others.
- 2003-06-10 Gonzalo Paniagua Javier <[email protected]>
- * WebConnectionStream.cs: when the read is partially filled from the
- initial buffer, add those bytes too. Thanks to Lluis for debugging this.
- 2003-06-09 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: added ExpectContinue property.
- * WebConnection.cs: allow 100 Continue to be delayed after waiting for
- it.
- 2003-06-08 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: don't send "Expect: 100-continue" is the server
- is known not to respond to that.
- * ServicePoint.cs: added SendContinue property.
- * WebConnection.cs: only wait 2 seconds for a continue reply. If it
- timeouts, set SendContinue to false and proceeed sending data.
- * WebConnectionStream.cs: if 100-continue is not received and instead we
- get a 417 or anything else, don't send the data.
- * WebClient.cs: implemented all missing properties and methods except
- UploadFile.
- 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
- * FileWebRequestCreator.cs: splitted from WebRequest.
- * HttpRequestCreator.cs: splitted fromWebRequest.
- * WebRequest.cs: added methods that are used by the new configuration
- handler to set prefix/type name requests creators.
- 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
- * AuthenticationManager.cs:
- * Authorization.cs:
- * BasicClient.cs: new file.
- * ChunkStream.cs: new file.
- * Cookie.cs:
- * CookieContainer.cs:
- * GlobalProxySelection.cs:
- * HttpWebRequest.cs:
- * HttpWebResponse.cs:
- * IAuthenticationModule.cs:
- * ServicePoint.cs:
- * ServicePointManager.cs:
- * WebAsyncResult.cs: new file.
- * WebConnection.cs: new file.
- * WebConnectionData.cs: new file.
- * WebConnectionGroup.cs: new file.
- * WebConnectionStream.cs: new file.
- * WebException.cs:
- * WebHeaderCollection.cs:
- * WebProxy.cs:
- * WebResponse.cs:
- Reworked HttpWebRequest and related classes.
- 2003-05-30 Miguel de Icaza <[email protected]>
- * HttpWebRequest.cs (EndGetResponse): Do not throw exceptions on
- InternalServerError (500)
- 2003-05-29 Miguel de Icaza <[email protected]>
- * HttpWebRequest.cs (Close): Move the code that accumulates the
- output to Close from Flush. Flush could have been called in the
- middle of the processing, and would have generated invalid results
- (which it did).
- 2003-05-23 Zoltan Varga <[email protected]>
- * Dns.cs (GetHostByAddress): Return the local host when called with
- IF_ANY.
- 2003-04-29 Miguel de Icaza <[email protected]>
- * WebClient.cs (DownloadData): Close the underlyng stream.
- (DownloadFile): Use using, so the file gets closed.
- 2003-04-24 Miguel de Icaza <[email protected]>
- * WebClient.cs (DownloadData): Instead of using a MemoryStream,
- keep track of all the small chunks in an ArrayList. The
- MemoryStream had the property of reallocating itself, and the
- problem was that MemoryStream.GetBuffer would return the buffer
- (correctly), but not something of the right size. So clients of
- DownloadData would get the extra unused bytes as part of the
- result.
- The solution would have been to make another copy at this point,
- instead, we only keep the small allocations around in the
- ArrayList, and we only do one large allocation at the end.
- * HttpWebResponse.cs: If there is a Content-Length header, pass
- this information to our HttpWebResponseStream, so it knows when to
- stop, instead of waiting for the stream to be shut down by the
- other end.
- * HttpWebRequest.cs: Only set the `delay-header-writing' mode on
- the underlying stream if the method will do a content transfer and
- no Content-Length was provided. If not (HEAD and GET or
- Content-Length provided), keep going.
-
- 2003-04-23 Miguel de Icaza <[email protected]>
- * HttpWebRequest.cs: .NET Allows the HttpWebRequest to not have
- the ContentLength specified on the request. If that happens, we
- have to accumulate all the data written, and once we accumulate
- the data, we send it off.
- Notice that the documentation in .NET is actually incorrect, they
- state that setting ContentLength is mandatory. It is not.
- 2003-04-12 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebResponse.cs: fixes bug #41180.
- 2003-03-25 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: throw an exception is the response code is >= 300.
- 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: implemented IDisposable, make the request stream
- read only. Changed the way of disposing the socket.
- * HttpWebResponse.cs: wrapped the socket in a write-only NetworkStream,
- handle chunked transfer encoding (no more hangs), added serialization
- stuff, call CheckDisposed at the beginning of methods/properties (not
- in a finally clause).
- 2003-02-17 Nick Drochak <[email protected]>
- * WebClient.cs : Implemented Credentials property.
- 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
- * SocketAddress.cs: byte 1 of the data is the high byte of the family,
- not the size.
- 2003-01-29 Atsushi Enomoto <[email protected]>
- * WebClient.cs : hacked OpenRead, DownloadData and DownloadFile.
- 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs: applied patch from Tim Haynes
- ([email protected]).
- Avoided double-sending of the request to the server when both
- GetRequestStream() and GetResponse() are called.
- System Header attributes survive the Headers attribute set.
- Added handling of Connection: KeepAlive/Close
- 2002-10-03 Dick Porter <[email protected]>
- * Dns.cs: Fixed GetHostName()
- 2002-09-09 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs:
- * HttpWebResponse.cs: applied another patch from Shahms E. King
- ([email protected]).
- 2002-09-03 Gonzalo Paniagua Javier <[email protected]>
- * HttpWebRequest.cs:
- * HttpWebResponse.cs: applied patch from Shahms E. King
- ([email protected]).
- 2002-05-29 Lawrence Pit <[email protected]>
- * MonoHttpDate.cs: added
- * HttpWebRequest.cs: using MonoHttpDate
- * HttpWebResponse.cs: using MonoHttpDate
- * DnsPermission.cs: correct XML output
- * SocketPermission.cs: correct XML output
- 2002-05-21 Lawrence Pit <[email protected]>
- * WebClient.cs: stubbed
- * WebProxy.cs: fixed bug; had to change internal representation
- of bypasslist to ArrayList, different implementation of checking
- regex's.
- 2002-05-20 Lawrence Pit <[email protected]>
- * WebProxy.cs: added, implemented
- * ServicePoint.cs: implemented most
- * ServicePointManager.cs: implemented
- * HttpWebRequest.cs: started implementation
- * HttpWebResponse.cs: improved disposable routines
- * FileWebRequest.cs: slight improvement of Close method
-
- 2002-05-19 Lawrence Pit <[email protected]>
- * FileWebRequest.cs: finished implementation of async methods.
- * FileWebResponse.cs: improved disposable routines.
- * IPEndPoint.cs: fixed bug #24666 in Serialize and Create methods,
- byte ordering of address was backwards.
- 2002-05-13 Lawrence Pit <[email protected]>
- * Dns.cs: Reimplemented (simplified and fixed) asynchronous methods by
- relying on standard asynchronous delegate features. Added checks for
- null strings.
- * HttpWebResponse.cs: implemented properties
- * FileWebResponse.cs: improved the way resources are disposed.
- * FileWebRequest.cs: started implementation of asynchronous methods
- * ServicePointManager.cs: implemented properties
- 2002-05-12 Lawrence Pit <[email protected]>
- * HttpWebRequest.cs: properties implemented
- * HttpWebResponse.cs: added
- * GlobalProxySelection.cs: implemented
- * FileWebResponse.cs: added
- * FileWebRequest.cs: some methods implemented
- 2002-05-11 Lawrence Pit <[email protected]>
- * WebHeaderCollection.cs: implemented
- * WebRequest.cs: implemented
- * FileWebRequest.cs and HttpWebRequest.cs stubs added
- 2002-05-09 Lawrence Pit <[email protected]>
- * Rewrote IPAddress.Parse method, passing all unit tests
- 2002-05-09 Lawrence Pit <[email protected]>
- * fixed bug in IPEndPoint.Equals method
- * fixed bug in IPAddress.Parse method
- * fixed bug in IPAddress.SwapLong method
- * fixed several bugs in Cookie.cs
- 2002-05-06 Lawrence Pit <[email protected]>
- * WebRequest.cs: added
- * WebResponse.cs: implemented
- * WebException.cs: implemented
- * WebHeaderCollection.cs: added
- * HttpVersion.cs: implemented
- * HttpContinueDelegate.cs: added
- * IWebProxy.cs: added
- * IWebRequestCreate.cs: added
- * ICertificatePolicy.cs: added
- * ServicePoint.cs: stubbed
- * ServicePointManager.cs: stubbed
- * CookieContainer.cs: added
- * Authorization.cs: implemented
- 2002-05-05 Lawrence Pit <[email protected]>
- * CredentialCache.cs: implemented
- 2002-05-05 Lawrence Pit <[email protected]>
- * IPAddress.cs: fixed IsLoopback, address was already in host order
- 2002-05-05 Lawrence Pit <[email protected]>
- * IPv6Address.cs: added (note: not part of .net spec)
- 2002-05-01 Lawrence Pit <[email protected]>
- * DnsPermission.cs: implemented
- * DnsPermissionAttribute.cs: implemented
- 2002-04-28 Lawrence Pit <[email protected]>
- * EndpointPermission.cs: implemented
- * SocketPermission.cs: implemented
- * SocketPermissionAttribute.cs: implemented
- * ProtocolViolationException.cs: implemented
- * Dns.c: passing w32 error code when no host found
- 2002-04-27 Lawrence Pit <[email protected]>
- * Cookie.cs: implemented
- * CookieCollection.cs: implemented
- * CookieException.cs: implemented
- 2002-04-24 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: initialize the read only fields with Parse().
- 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: little changes to behave as MS.
- 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
- * Dns.cs (Resolve): behave as MS. Agreed with Mads.
- 2002-04-17 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: the icalls for sockets are endianness-aware. So I
- changed a few things. Also included a workaround for bug #23547.
- 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
- by Paolo) instead of guessing the endianness.
- * SocketAddress.cs: implemented Equals() and GetHashcode().
-
- 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
- * IPEndPoint.cs: modifications to constructors according to the
- specifications (suggested by Lawrence Pit).
- 2002-04-15 Patrik Torstensson <[email protected]>
- * IPEndPoint.cs: Fixed build breaker.
- 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
- * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
- complete.
- 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: finished all MonoTODO's. Use network order to store
- the address. Check for max and min values in Address:set. IsLoopback()
- returns now true for all 127.x.y.z. Some more checks in Parse ().
- Some changes to behave as MS does.
- 2002-02-24 Duncan Mak <[email protected]>
- * ICredentialLookup.cs: Added the GetCredential method to the
- interface. The interface is named "ICredentials", should this file
- be renamed?
- * NetworkCredential.cs: Added to CVS. Need to investigate on how
- GetCredential() works
- 2002-01-23 Dick Porter <[email protected]>
- * SocketAddress.cs: Implemented.
- * IPEndPoint.cs: Turned 'Address' field into a real property.
- Implemented Create() and Serialize() methods.
- * IPAddress.cs: Fixed class constructor, turned 'Address' field
- into a real property. Removed undocumented "public
- IPAddress(string)" constructor.
- * EndPoint.cs: Implemented. All methods return
- NotSupportedException to enforce subclass overriding.
- * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
- P/Invokes with portable internal calls.
- 2002-01-17 Miguel de Icaza <[email protected]>
- * Dns.cs: Updated to API changes.
- * IPAddress.cs: Updated API. Much left to implement.
- * Dns.cs: Remove IPToString method
- 2002-01-06 Ravi Pratap <[email protected]>
- * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
- attribute insertion.
- 2001-11-22 Nick Drochak <[email protected]>
- * IPAddress.cs: Fix constructor bug, properly name Address property,
- and use triple-slash for comments.
- 2001-11-20 Miguel de Icaza <[email protected]>
- * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
- None as suggested by Phillip.
- 2001-09-26 Mads Pultz <[email protected]>
- * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
- 2001-09-24 Mads Pultz <[email protected]>
- * Dns.cs: Minor changes (some print statements removed)
- 2001-09-23 Mads Pultz <[email protected]>
- * Dns.cs: Initial work submitted to repository.
- * IPHostEntry.cs: Initial work submitted to repository.
- 2001-07-12 Sean MacIsaac <[email protected]>
- * Authorization.cs: Fixed compiler error.
- * IAuthenticationModule.cs: Changes for Beta2.
- * IPAddress.cs: Internal storage changed to be uint not int.
- * IPEndPoint.cs: Fixed compiler error.
- * EndPoint.cs: Fixed compiler error.
- * AuthenticationManager.cs: Fixed typo.
|