Support Options
Get Expert AdviceGot a tough question about Jetty or want to extend it? Get help from the Jetty experts!
Get Custom DevelopmentNeed specialized programming or patches for your Jetty application? Get fast, custom code from the developers who helped build Jetty.
Get Production SupportFor clients who manage Jetty applications in production environments, Webtide provides hands-on, knowledgeable support for the version you are running.
Recent Comments
- tbecker on Jetty JMX Webservice
- Ravi on Jetty JMX Webservice
- Java Development on Jetty-SPDY blogged
- simon on WebSocket over SSL in Jetty
- منتديات on WebSocket over SSL in Jetty
Archives
- April 2012
- March 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- May 2011
- April 2011
- March 2011
- June 2010
- March 2010
- January 2010
- November 2009
- October 2009
- September 2009
- July 2009
- May 2009
- April 2009
- January 2009
- December 2008
- October 2008
- August 2008
- July 2008
- April 2008
- March 2008
- February 2008
- January 2008
- November 2007
- October 2007
- July 2007
- May 2007
- March 2007
- February 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- May 2006
- March 2006
- September 2005
- September 2004
Categories
Meta
Category Archives: Java
Websocket Example: Server, Client and LoadTest
The websocket protocol specification is approaching final and the Jetty implementation and API have been tracking the draft and is ready when the spec and browsers are available. More over, Jetty release 7.5.0 now includes a capable websocket java client that can be used for non browser applications or load testing. It is fully asynchronous and can create thousands … Continue reading
Posted in Ajax Comet, General, HTTP, Java, Jetty, Servlets, WebSockets
Tagged chat, java, jetty, servlet, websocket
14 Comments
Prelim Cometd WebSocket Benchmarks
I have done some very rough preliminary benchmarks on the latest cometd-2.4.0-SNAPSHOT with the latest Jetty-7.5.0-SNAPSHOT and the results are rather impressive. The features that these two releases have added are: Optimised Jetty NIO with latest JVMs and JITs considered. Latest websocket draft implemented and optimised. Websocket client implemented. Jackson JSON parser/generator used for cometd Websocket cometd transport for the … Continue reading
Posted in Ajax Comet, cometd, HTTP, Java, Jetty, Servlets, WebSockets
Tagged cometd, jetty, websocket
4 Comments
Jetty with Spring XML
Since the very beginning, Jetty has been IOC friendly and thus has been able to be configured with spring. But the injecting and assembling the jetty container is not the only need that Jetty has for configuration and there are several other configuration files (eg contexts/yourapp.xml, jetty-web.xml, jetty-env.xml) that have needed to be in the Jetty XML configuration format. With … Continue reading
Lies, Damned Lies and Benchmarks
Benchmarks like statistics can be incredibly misleading in ways that are only obvious with detailed analysis. Recently the apache HTTPCore project released some benchmark results whose headline results read as: Jetty HttpCore Linux BIO 35,342 56,185 Linux NIO 1,873 25,970 Windows BIO 31,641 29,438 Windows NIO 6,045 13,076 Looking at these results, you see that HttpCore has better throughput in … Continue reading
Posted in General, Java, Jetty, Servlets
8 Comments
Cometd + Wicket
First off, I think I like wicket, its a pretty neat framework and it has some pretty solid integration with ajax which is interesting. I have to say though that having spent a lot of time on the whole long polling, ajax push, cometd type of communication approach the whole idea of ajax polling back to a server for a … Continue reading
Posted in Java
9 Comments