Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-03-02[maven-release-plugin] prepare release jetty-7.6.2.v20120302jetty-7.6.2.v20120302Jesse McConnell1-1/+1
2012-02-24370387 - SafariWebsocketDraft0Test failure during build.Simone Bordet1-18/+16
The reason for the failure of this test was that a BufferedReader was used to read the header lines. However, the buffered reader may have read and buffered also the hixie bytes and subsequently, when the test was trying to read the hixie bytes directly from the input stream (and not from the buffered reader), the read was timing out. Fixed by always using the input stream to read the header and hixie bytes.
2012-02-15[maven-release-plugin] prepare for next development iterationJesse McConnell1-1/+1
2012-02-15[maven-release-plugin] prepare release jetty-7.6.1.v20120215jetty-7.6.1.v20120215Jesse McConnell1-1/+1
2012-02-13Improve test failure on truncated Draft0 handshake read.Joakim Erdfelt1-5/+13
+ If a truncated response occurs, attempt to have the test case produce a meaningful response message indicating where/how the truncation occured, instead of just a 'read timeout'.
2012-02-13Trying to get more information from failing Websocket Draft0 test failureJoakim Erdfelt2-1/+8
2012-02-09Bumping up socket read timeout and adding debug.Joakim Erdfelt2-8/+17
2012-02-06Fixing JDK5 build abort due to bad javadocsJoakim Erdfelt1-1/+1
2012-01-31Migrating old javax.* deps to new org.eclipse.jetty.orbit depsJoakim Erdfelt1-2/+2
+ Removed old deps in javax.*, geronimo, and asm in favor of new org.eclipse.jetty.orbit deps + Added enforcer rule to prevent reintroducing the old deps.
2012-01-27[maven-release-plugin] prepare for next development iterationJesse McConnell1-1/+1
2012-01-27[maven-release-plugin] prepare release jetty-7.6.0.v20120127jetty-7.6.0.v20120127Jesse McConnell1-1/+1
2012-01-26revert back to 7.6.0-SNAPSHOTJesse McConnell1-1/+1
2012-01-25[maven-release-plugin] prepare for next development iterationJesse McConnell1-1/+1
2012-01-25[maven-release-plugin] prepare release jetty-7.6.0.v20120125jetty-7.6.0.v20120125Jesse McConnell1-1/+1
2012-01-20[maven-release-plugin] prepare for next development iterationJesse McConnell1-1/+1
2012-01-20[maven-release-plugin] prepare release jetty-7.6.0.RC5jetty-7.6.0.RC5Jesse McConnell1-1/+1
2012-01-18368821 SslConnection.handle always calls wrapped Connection.handle, so state ↵Greg Wilkins1-42/+45
can be processed
2012-01-17Updating testcase to indicate reason of failure (when testing on OSX)Joakim Erdfelt1-6/+6
2012-01-11improved test timingGreg Wilkins1-2/+3
2012-01-10368189 - WebSocketClientFactory should not manage external thread pool.Simone Bordet1-14/+3
368240 - Improve AggregateLifeCycle handling of shared lifecycles Reworked the implementation in order to follow 368240.
2012-01-09367099 - Upgrade jetty-websocket for RFC 6455 - Addendum.Simone Bordet5-168/+174
The WebSocket parser was forgot in the renaming. Took also the chance to remove hardcoded "D13" string in toString() methods.
2012-01-09368189 - WebSocketClientFactory should not manage external thread pool.Simone Bordet3-8/+42
2012-01-06368035 - WebSocketClientFactory does not invoke super.doStop().Simone Bordet1-0/+1
2012-01-03Made tests more reliable by waiting for the websocket connection to be ↵Simone Bordet4-29/+29
established and for onOpen() to be called.
2011-12-28367435 improved D00 test harnessGreg Wilkins1-27/+569
2011-12-23Using a random port for the tests.Simone Bordet1-1/+1
2011-12-23Restored constructor that was removed, used in CometD.Simone Bordet1-0/+5
2011-12-23367502 - WebSocket connections should be closed when application context is ↵Simone Bordet4-43/+126
stopped.
2011-12-23367502 - WebSocket connections should be closed when application context is ↵Simone Bordet12-73/+302
stopped.
2011-12-23367433 added tests to investigateGreg Wilkins1-2/+62
2011-12-21Merged from origin/master.Simone Bordet2-47/+32
2011-12-20367219 - WebSocketClient.open() fails when URI uses default ports.Joakim Erdfelt2-50/+34
+ Fixing testcase to not fail if http://localhost/ exists. Reworking code to not rely on existence of server to validate the correct behavior of URI port parsing.
2011-12-20367219 - WebSocketClient.open() fails when URI uses default ports.Simone Bordet2-18/+59
2011-12-20JETTY-1463 websocket D0 parser should return progress even if no fill doneGreg Wilkins1-7/+7
2011-12-20JETTY-1463 websocket D0 parser should return progress even if no fill doneGreg Wilkins6-21/+22
2011-12-19Removing System.out debugJoakim Erdfelt1-1/+1
2011-12-19Using straight Socket as HttpURLConnection request header modifications are ↵Joakim Erdfelt1-17/+68
not reliable enough for testing purposes
2011-12-19Bug 367099 - Upgrade jetty-websocket for RFC 6455Joakim Erdfelt5-30/+224
+ Adding new RFC declared close codes 1011 (CLOSE_SERVER_ERROR) and 1015 (CLOSE_FAILED_TLS_HANDSHAKE) + Adding support for responding as CLOSE_SERVER_ERROR if an unhandled exception (similar to how HTTP error 500 works) but for exceptions thrown out of implementations of WebSocket. + Adding guard to prevent use of CLOSE_FAILED_TLS_HANDSHAKE on close control frame. + Adding unit test for the CLOSE_SERVER_ERROR case. + Adding unit test for HTTP response 400 on bad Sec-WebSocket-Version request header value.
2011-12-19Adding missing license headers.Joakim Erdfelt60-73/+916
2011-12-19Bug 367099 - Upgrade jetty-websocket for RFC 6455Joakim Erdfelt15-152/+160
+ Renaming *D13 classes to *RFC6455 per dicussion in jetty-dev mailing list
2011-12-16Merged from origin/master.Simone Bordet13-170/+306
2011-12-16Updated toString() implementations.Simone Bordet4-15/+26
2011-12-15Refactoring protected fields back to private with protected methods per ↵Joakim Erdfelt8-51/+81
discussion with Simone
2011-12-14Merge branch 'master' of ↵Joakim Erdfelt5-18/+10
ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project
2011-12-14more time needed for ssl test on slow machineGreg Wilkins1-1/+1
2011-12-14Merge branch 'master' of ↵Greg Wilkins6-108/+367
ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project
2011-12-14366730 pass the time idle to onIdleExpireGreg Wilkins4-17/+9
2011-12-14Merge branch 'master' into websocket-servlet-refactorJoakim Erdfelt8-0/+542
2011-12-14JETTY-1463 - WebSockets with Safari gets messages stuck as if in a buffer ↵Joakim Erdfelt6-108/+367
that needs to be flushed. + Implementation of Safari WebSocket Draft-0 behavior in a unit test. (Test fails, and is currently set as @Ignore)
2011-12-13JETTY-1463 - WebSockets with Safari gets messages stuck as if in a buffer ↵Joakim Erdfelt2-0/+223
that needs to be flushed. + Adding unit test to attempt to replicate behavior (test passes)

Back to the top