Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2014-10-13440729 - SSL requests often fail with EOFException or IllegalStateException.Simone Bordet1-6/+8
Fixed IllegalStateException by handling NEED_UNWRAP for the CLOSED state in fill(). The EOFException does not seem to be an issue with the client. Also removed an unneeded catch block and an empty if statement.
2014-10-13Improved exception reporting.Simone Bordet1-3/+4
2014-10-13Moving HttpTester to "tests" scoped jetty-http artifact.Joakim Erdfelt4-0/+21
+ HttpTester, a testing class, was used by jetty-servlets, embedded-jetty-examples, and test-integration, all from those testing scopes. Moved the HttpTester into the pre-existing jetty-http "tests" classified artifact.
2014-10-12Committing proper testcase for bug 440823Joakim Erdfelt1-0/+29
2014-10-10445823 - RequestLogHandler at end of HandlerCollection doesn't workJoakim Erdfelt2-29/+1074
+ Adding more varieties of server side collection vs wrapper with error handlers + Adding servlet version of tests to demonstrate behavior in servlet context, when also using the mapped error handler
2014-10-10446425 Oracle Sql error on JettySessions table when this table do not exist ↵Jan Bartel1-1/+5
already
2014-10-10443529 CrossOriginFilter does not accept wildcard for allowedHeadersJan Bartel2-24/+86
2014-10-10446506 getAsyncContext ISE before startAsync on async dispatchesGreg Wilkins2-1/+12
2014-10-10442942 Content sent with status 204 (No Content)Jan Bartel3-2/+41
2014-10-09443530 CrossOriginFilter does not set the Vary headerJan Bartel2-0/+36
2014-10-09442419 CrossOriginFilter javadoc says "exposeHeaders", but should be ↵Jan Bartel1-1/+1
"exposedHeaders"
2014-10-08445258 - STOP.WAIT is not really respected Joakim Erdfelt1-1/+1
Fixing stupid typo / copy / paste bug
2014-10-08445979 - jetty.sh fails to start when start-stop-daemon does not exist and ↵Joakim Erdfelt1-1/+1
the user is not root + Adding better JETTY_USER test into jetty.sh
2014-10-08446033 - org.eclipse.jetty.websocket.server.WebSocketServerFactory not ↵Joakim Erdfelt2-3/+3
available in OSGi + Tweaking version identifiers in websocket + Adding oej.websocket.server.pathmap to Dynamic-Import of websocket-servlet manifest
2014-10-08446107 - NullPointerException in ProxyServlet when extended by ServletJoakim Erdfelt1-1/+3
without a package + Adding null check
2014-10-08System.lineSeparator existsJoakim Erdfelt1-2/+4
2014-10-08Using StandardCharset where appropriateJoakim Erdfelt1-1/+1
2014-10-08fixing url to jettyJoakim Erdfelt1-1/+1
2014-10-08Javadoc updateJoakim Erdfelt1-14/+24
2014-10-03445830 Support setting environment variables on forked jetty with ↵Jan Bartel1-1/+17
jetty:run-forked
2014-10-02Fixing encoding tests (that actually didn't validate results)Joakim Erdfelt1-5/+17
2014-10-02445821 - Error 400 should be logged with RequestLog Joakim Erdfelt1-0/+193
+ Adding BadRequestLogHandlerTest to demonstrate error 400 not being captured by RequestLogHandler
2014-10-02445823 - RequestLogHandler at end of HandlerCollection doesn't work Joakim Erdfelt1-0/+447
+ Adding example of RequestLogHandler use in HandlerCollection
2014-10-02Moving hardcoded ports to ephemeral range suitable for more environmentsJoakim Erdfelt1-2/+2
2014-10-01Add mongo sessinon manager module tests back into build, but skippedJan Bartel2-2/+2
2014-10-01444595 nosql/mongodb - Cleanup process/Refreshing does not respect encoding ↵Jan Bartel2-2/+165
of attribute keys
2014-10-01445495 Improve Exception message when no jndi resource to bind for a name in ↵Jan Bartel3-1/+48
web.xml
2014-10-01445157 First redeployed servlet leaks WebAppContextJan Bartel3-7/+24
2014-09-30445542 - Add SecuredRedirectHandler for embedded jetty use to redirect to ↵Joakim Erdfelt4-3/+391
secure port/scheme + Adding SecuredRedirectHandler as option for those jetty embedded folks to have a simple http -> https solution (can even be setup and bound to specific connectors via the named virtualhosts concepts)
2014-09-30445374 - Reevaluate org.eclipse.jetty.websocket.jsr356 enablement conceptsJoakim Erdfelt3-21/+68
+ Since SCI adds filters, but init() isn't run till later, that means the context attribute for the WebSocketUpgradeFilter isn't present during jsr356 runs. Added ability for manual filter creation to call setToAttribute() as a pre-init step, allowing the init() itself to bypass the set to attribute for that specific filter instance. + This also means ServletException is now thrown out from the various configureContext() static methods.
2014-09-30445374 - Reevaluate org.eclipse.jetty.websocket.jsr356 enablement conceptsJoakim Erdfelt1-14/+19
+ After talking it through with Simone, swapping out 'global' init-param with a bit more robust 'contextAttributeKey' to handle the automatic context.setAttribute() of the filter itself. As simply having a filter in the web.xml makes it alive, but nothing is wired up into it, and accessing the filter instance via the context metadata seems impossible. So we made the init-param for 'contextAttributeKey' important and required, but with defaulting and validation checks.
2014-09-30445374 - Reevaluate org.eclipse.jetty.websocket.jsr356 enablement conceptsJoakim Erdfelt2-31/+70
+ Making key also work inside of WEB-INF/web.xml via context params + Making WebSocketUpgradeFilter generic enough to be used in a web.xml descriptor + Adding global={bool} init-param on WebSocketUpgradeFilter to aid library developers and end users more ways to tweak the filter order
2014-09-24396569 - 'bin/jetty.sh stop' reports 'OK' even when jetty was notJoakim Erdfelt1-0/+9
running + Validating PID file and contents a bit more
2014-09-24396572 - Starting jetty from cygwin is not working properly Joakim Erdfelt1-1/+25
+ Fixing #!/usr/bin/env bash (it had extra spaces at end which breaks env lookup on cygwin) + Using cygpath -w liberally to allow java started from cygwin to find resources using windows specific path names.
2014-09-24376365 - "jetty.sh start" returns 0 on failure Joakim Erdfelt1-0/+1
+ simple hack to produce error 1 on xml validation issue
2014-09-24444896 Overriding of web-default servlet mapping in web.xml not working with ↵Jan Bartel1-0/+40
quickstart
2014-09-24444676 Goal jetty:deploy-war produces errors with version 9.2.3Jan Bartel1-1/+2
2014-09-23444863 - ProxyServlet does not filter headers listed by the Connection header.Simone Bordet2-5/+63
2014-09-23438387 - NullPointerException after ServletUpgradeResponse.sendForbiddenJoakim Erdfelt1-1/+6
is called during WebSocketCreator.createWebSocket + Adding NPE guard for error/forbidden/complete flows
2014-09-23Made methods return boolean to indicate whether the update wasSimone Bordet1-8/+12
successful or not.
2014-09-22442495 - Bad Context ClassLoader in JSR356 WebSocket onOpen Joakim Erdfelt4-83/+112
+ Fixing onOpen context classloader to be that of the context that started the WebSocketUpgradeFilter (which will be the same as the WebAppContext in most cases)
2014-09-22444617 - Expose local and remote socket address to applications Joakim Erdfelt3-0/+104
+ Exposing 2 new automatically added userProperties * "javax.websocket.endpoint.localAddress" * "javax.websocket.endpoint.remoteAddress" these are both java.net.InetSocketAddress objects
2014-09-22444771 - JSR356 / EndPointConfig.userProperties are not unique perJoakim Erdfelt3-8/+98
endpoint upgrade + Adding testcase & implementation which honors the ServerEndpointConfig.userProperties copy at an earlier point.
2014-09-22444748 - WebSocketClient.stop() does not unregister from ShutdownThread Joakim Erdfelt1-1/+9
+ Making (de)register smart about if wsclient is registered or not
2014-09-22444416 - AsyncProxyServlet recursion.Simone Bordet2-95/+72
Implemented reading of content using IteratingCallback to avoid recursion.
2014-09-22444764 - HttpClient notifies callbacks for last chunk of content twice.Simone Bordet2-0/+50
Fixed by filtering out notification of the callbacks in case the HttpContent is already consumed.
2014-09-22added TLD to quickstart exampleGreg Wilkins1-0/+6
2014-09-19444547 Format exception in ResourceCache.Content.toString()Jan Bartel1-1/+1
2014-09-18Merge branch 'jetty-9.2.x' of ↵Greg Wilkins3-19/+129
ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project into jetty-9.2.x
2014-09-18444222 replace CRLF in header values with whitespace rather than ?Greg Wilkins3-4/+84

Back to the top