<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.java.jetty.support">
    <title>gmane.comp.java.jetty.support</title>
    <link>http://blog.gmane.org/gmane.comp.java.jetty.support</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15215"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15212"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15211"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15209"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15207"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15201"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15199"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15194"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15192"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15191"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15190"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15188"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15187"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15181"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15180"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15179"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15177"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15176"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15175"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.java.jetty.support/15171"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15215">
    <title>[jetty-user] Embedded Jetty and SSL.</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15215</link>
    <description>&lt;pre&gt;I'm using embedded Jetty to deploy several war files and would like some
advice on how to make it run under SSL. (I've bought a CERT from a CA and
now need to figure out how to use it for the login and admin war files. 


Here are may war files and how I would like to use them. 

MainPage.war           accessed as:     http://mydomain.com/                
(port 80 not SSL)
Login.war                accessed as:     https://mydomain.com/login         
(port 443 + SSL)
Admin.war              accessed as:      https://mydomain.com/admin       
(port 443 + SSL)


Currently I do something like   (greatly simplified to make shorter here)


//--- Start Code ---//
Server = new Server(80);

List&amp;lt;Handler&amp;gt; hList = new ArrayList&amp;lt;Handler&amp;gt;();
hList.add( new WebAppContext("../webapps/MainPage.war","/") );
hList.add( new WebAppContext("../webapps/Login.war","/login") );
hList.add( new WebAppContext("../webapps/Admin.war","/admin") );

ContextHandlerCollection contexts = new ContextHandlerCollection();
contexts.setHandlers(ha&lt;/pre&gt;</description>
    <dc:creator>Alan</dc:creator>
    <dc:date>2013-04-25T02:38:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15212">
    <title>[jetty-user] Jetty  webapps external jar files</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15212</link>
    <description>&lt;pre&gt;Hi,

I am new to jetty and I am using jetty version 9. I have an war file
deployed to my app server. the web-inf/lib file has a few jar files  but I
need to deploy some other jar files that are not included in the web-inf/lib

I tried to copy the jar file  into jetty.home/lib/ext    but this is not
working.

please let me know how to do this so that the application can load the class
files.

thanks
John



--
View this message in context: http://jetty.4.x6.nabble.com/Jetty-webapps-external-jar-files-tp4960434.html
Sent from the Jetty Support mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



&lt;/pre&gt;</description>
    <dc:creator>johnrg</dc:creator>
    <dc:date>2013-04-23T21:24:52</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15211">
    <title>[jetty-user] Jetty 9.0.2.v20130417 released</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15211</link>
    <description>&lt;pre&gt;We are pleased to announce the release of Jetty 9.0.2.  There were a couple
of issues that we noted with the last release and wanted to get resolved
quickly.  The first was a fix to one of the new queue algorithms we have
been working with that we realized was resulting in a bit of a hit to
performance.  The second was an issue where sockets would sometimes linger
around after the connection was closed when a certain sequence of
events occurred with SSL connection close.  This issues didn't affect
everyone but it was a bother enough to those it did that we included it in
this release.

Distribution Downloads:

- http://download.eclipse.org/jetty/stable-9/dist/

The artifacts are also available in Maven Central.

Documentation:

- http://www.eclipse.org/jetty/documentation/current

cheers,
jesse

jetty-9.0.2.v20130417 - 17 April 2013
 + 364921 FIN WAIT sockets
 + 402885 reuse Deflaters in GzipFilter
 + 403591 do not use the ConcurrentArrayBlockingQueue for thread pool, selector
   and async request log
 + 404&lt;/pre&gt;</description>
    <dc:creator>Jesse McConnell</dc:creator>
    <dc:date>2013-04-17T20:21:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15209">
    <title>[jetty-user] AUTO: Walter Heestermans/TMME is out of the office. (returning 15/04/2013)</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15209</link>
    <description>&lt;pre&gt;
I am out of the office until 15/04/2013.

I will respond to your message as soon as possible. For urgent issues,
contact WebSphere Support group for Java-WebSphere related activities or
unix.admin group for Unix-WebSphere-Jetty related activities


Note: This is an automated response to your message  "[jetty-user] Jetty
9.0.1.v20130408 Released!" sent on 10/04/2013 22:52:03.

This is the only notification you will receive while this person is away.


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



&lt;/pre&gt;</description>
    <dc:creator>Walter.Heestermans&lt; at &gt;toyota-europe.com</dc:creator>
    <dc:date>2013-04-11T02:17:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15207">
    <title>[jetty-user] Jetty 9.0.1.v20130408 Released!</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15207</link>
    <description>&lt;pre&gt;Hard to believe we released Jetty 9 a mere month ago but we have been busy
resolving some small issues and added to the new documentation hub.  If you
haven't seen the new documentation take a look, and feel free to contribute
through the github project that houses it.

Distribution Downloads:

- http://download.eclipse.org/jetty/stable-9/dist/

The artifacts are also available in Maven Central.

Documentation:

- http://www.eclipse.org/jetty/documentation/current

I'll attach the resolves issues at the end of this mail, but we have been
very happy with the response we have gotten from the Jetty 9 release and
are looking forward to future versions.  Just as bit of a note for those
interested, we'll be releasing 9.1 once the servlet 3.1 spec has finalized
and likely the JSR 356 Websocket api spec has released, hopefully these
will wrap up around the same time.

cheers,
jesse




--
Jesse McConnell &amp;lt;jesse&amp;lt; at &amp;gt;intalio.com&amp;gt;
www.webtide.com – Developer advice, services and support from the Jetty &amp;amp;
CometD experts.
&lt;/pre&gt;</description>
    <dc:creator>Jesse McConnell</dc:creator>
    <dc:date>2013-04-10T20:52:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15201">
    <title>[jetty-user] Jetty 7.6.10.v20130312 / Jetty 8.1.10.v20130312 Released!</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15201</link>
    <description>&lt;pre&gt;Hot on the heels of our Jetty 9 release, we have released updates to our
two mature versions.  We will continue releasing updates to 7 and 8,
roughly every couple of months for the foreseeable future.

Downloads: http://download.eclipse.org/jetty/

Releases are available in Maven Central as well.

cheers,
jesse

The list of changes are:

jetty-7.6.10.v20130312 - 12 March 2013
 + 376273 Early EOF because of SSL Protocol Error on
   https://api-3t.paypal.com/nvp.
 + 381521 allow compress methods to be configured
 + 394064 ensure that JarFile instances are closed on JarFileResource.release()
 + 398649 ServletContextListener.contextDestroyed() is not called on
   ContextHandler unregistration
 + 399703 made encoding error handling consistent
 + 399799 do not hold lock while calling invalidation listeners
 + 399967 Shutdown hook calls destroy
 + 400040 NullPointerException in HttpGenerator.prepareBuffers
 + 400142 ConcurrentModificationException in JDBC SessionManger
 + 400144 When loading a session fails the JDB&lt;/pre&gt;</description>
    <dc:creator>Jesse McConnell</dc:creator>
    <dc:date>2013-03-14T16:01:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15199">
    <title>[jetty-user] Announcing Jetty 9.0.0</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15199</link>
    <description>&lt;pre&gt;The Eclipse Jetty Project team is proud to announce the first release of
the new Jetty 9

        *Jetty 9.0.0.v20130308*

The Java Web Server with support for SPDY and WebSocket.

*Distributions Downloads:*
http://download.eclipse.org/jetty/stable-9/dist/

*Java Artifacts Available on Maven Central:*
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.eclipse.jetty%22%20AND%20v%3A%229.0.0..v20130308%22

&amp;lt;groupId&amp;gt;org.eclipse.jetty&amp;lt;/groupId&amp;gt;
&amp;lt;version&amp;gt;9.0.0.v20130308&amp;lt;/version&amp;gt;

*Jetty 9.x Features:*

   - Completely overhauled I/O layer
   - Servlet API 3.0
   - JSP 2.2
   - SPDY/3
   - WebSocket (RFC-6455)

*Notes for those migrating to Jetty 9.x:*

   - Requires Java 1.7 or newer.
   - Jetty Maven Plugin has now been moved to org.eclipse.jetty groupId
   - There is no org.mortbay or codehaus components
   - Support for early WebSocket drafts has been dropped, only support
   released RFC-6455 spec.
   - There now only 1 aggregate jar, called jetty-all.
   - Bad UTF8 encoding will result in replacement char&lt;/pre&gt;</description>
    <dc:creator>Joakim Erdfelt</dc:creator>
    <dc:date>2013-03-09T00:33:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15194">
    <title>[jetty-user] Async Context does not accept simultaneous requests</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15194</link>
    <description>&lt;pre&gt;I tried to create context for accepting many simultaneous requests by using
AsyncServelet/Continuation. But the all requests to one context are queued.
I will provide some code blocks for introducing into the problem. Please,
help me with this issue. Maybe I understand something wrong and use this
technology to the wrong way?A simple spring xml config for JettyServer:
    &amp;amp;lt;bean name=&amp;amp;quot;jettyThreadPool&amp;amp;quot;
class=&amp;amp;quot;org.eclipse.jetty.util.thread.QueuedThreadPool&amp;amp;quot;&amp;amp;gt;       
&amp;amp;lt;property name=&amp;amp;quot;name&amp;amp;quot; value=&amp;amp;quot;jettyThreadPool&amp;amp;quot; /&amp;amp;gt;       
&amp;amp;lt;property name=&amp;amp;quot;minThreads&amp;amp;quot; value=&amp;amp;quot;10&amp;amp;quot; /&amp;amp;gt;       
&amp;amp;lt;property name=&amp;amp;quot;maxThreads&amp;amp;quot; value=&amp;amp;quot;100&amp;amp;quot; /&amp;amp;gt;   
&amp;amp;lt;/bean&amp;amp;gt;    &amp;amp;lt;bean name=&amp;amp;quot;jettyConnector&amp;amp;quot;
class=&amp;amp;quot;org.eclipse.jetty.server.nio.SelectChannelConnector&amp;amp;quot;&amp;amp;gt;       
&amp;amp;lt;property name=&amp;amp;quot;host&amp;amp;quot; value=&amp;amp;quot;0.0.0.0&amp;amp;quot; /&amp;amp;gt;       
&amp;amp;lt;property name=&amp;amp;quot;port&amp;amp;quot; value=&amp;amp;quot;8080&amp;amp;quot; /&amp;amp;gt;       
&amp;amp;lt;!-- The numbe&lt;/pre&gt;</description>
    <dc:creator>Valery Dubrava</dc:creator>
    <dc:date>2013-03-08T19:20:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15192">
    <title>[jetty-user] Java WebSocket Client from main(String [] args)</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15192</link>
    <description>&lt;pre&gt;Hi,

   Sorry for the cross post, I don't know where this should go.  I would
like to use the jetty web socket-client in stand alone java applications
(outside of a jetty web app ie main(String[] args)).
   Does the jetty web socket client support this?

If not I would suggest it as I am maintaining (somewhat poorly) a
WebSocketClient here;
http://cvs.adligo.org/viewvc/aws_client/src/org/adligo/aws_client/WebSocketClient.java?view=markup

I am getting

java.io.IOException: Invalid handshake response 'HTTP/1.1 400 Unsupported
websocket version specification: 2147483647' should be 'HTTP/1.1 101 Web
Socket Protocol Handshake'


TIA,

Scott
&lt;/pre&gt;</description>
    <dc:creator>Scott Morgan</dc:creator>
    <dc:date>2013-03-07T05:01:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15191">
    <title>[Jetty-support] problem when upgrading from jetty 4 to jetty 5</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15191</link>
    <description>&lt;pre&gt;Hi,

I’m having trouble upgrading from jetty 4 to jetty 5.

I’m running the next code in jetty 4:

                                httpListener = *new* SocketListener();

.

.

.

             org.mortbay.util.Log.instance().disableLog();

              org.mortbay.util.Log.instance().add(*new* HTTPServerLog());





where HTTPServerLog extends logSink



however these APIs are not supported in jetty 5,

is there an alternative way to perform the above APIs?
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb_______________________________________________
Jetty-support mailing list
Jetty-support&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jetty-support
&lt;/pre&gt;</description>
    <dc:creator>Itamar Farchy</dc:creator>
    <dc:date>2013-02-27T09:34:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15190">
    <title>[jetty-user] Released: Jetty 9.0.0.RC2</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15190</link>
    <description>&lt;pre&gt;The Eclipse Jetty Project team is proud to announce the latest Release
Candidate for the new Jetty 9.

        Jetty 9.0.0.RC2

The Java Web Server with support for SPDY and WebSocket.

Distributions Available at http://download.eclipse.org/jetty/

Java Artifacts Available on Maven Central:
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.eclipse.jetty%22%20AND%20v%3A%229.0.0.RC2%22

&amp;lt;groupId&amp;gt;org.eclipse.jetty&amp;lt;/groupId&amp;gt;
&amp;lt;version&amp;gt;9.0.0.RC2&amp;lt;/version&amp;gt;


Please File Bugs at
https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Jetty&amp;amp;format=guided

Jetty 9 Features:

   - Java 1.7 Compatible
   - Completely overhauled I/O layer
   - Servlet API 3.0
   - JSP 2.2
   - SPDY/3
   - Jetty WebSocket API (Supporting RFC-6455)

Changelog for Jetty 9.0.0.RC2 (and RC1)

jetty-9.0.0.RC2 - 24 February 2013
 + Fix etc/jetty.xml TimerScheduler typo that is preventing normal startup
 + Fix etc/jetty-https.xml ExcludeCipherSuites typo that prevents SSL
startup
 + Fix websocket memory use

jetty-9.0.0.RC1 - 22 February 2013
 +&lt;/pre&gt;</description>
    <dc:creator>Joakim Erdfelt</dc:creator>
    <dc:date>2013-02-26T15:51:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15188">
    <title>[jetty-user] Redirect to an http url when ssl handshake fails</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15188</link>
    <description>&lt;pre&gt;Hi all,

I am using jetty for a demonstration web application with smart card
identification. I have no problem using jetty with SSL with
authenticated client.

When the smart card is disconnected and we try to load a page, the
handshake fails (as expected) and our browser shows an error page
specifying this failure. I would like to make jetty redirect to a
simple http url when the handshake fails, only to display a better
looking page.

Is there a way to configure the jetty ssl connector to do that ?


Thanks for your help,

Guillaume

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



&lt;/pre&gt;</description>
    <dc:creator>Guillaume Bailleul</dc:creator>
    <dc:date>2013-02-22T16:31:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15187">
    <title>[jetty-user] Jetty Clustering via the Database Overrides Web Application Specified Data Source Pool</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15187</link>
    <description>&lt;pre&gt;Hello,
The goal is to create a clustered environment for a web application that is currently running in a single Jetty instance. When clustering configuration is added, it appears to prevent the applications data source pool from initializing. Attaching a remote debugging session and stepping through the code shows the application hanging on startup while waiting for a connection to free up from the pool. Inspecting the details of the pool shows no connections have been created. c3p0 is used for the pooling implementation. When the server starts without the clustering configuration, c3p0 generates a log message showing it is initializing. When started with clustering configured, the log message is not seen. Leading me to believe the application data source pool is never initialized because the clustering data source pool is usurping it in some way.
To get the clustering behavior I added the following to %JETTY_HOME%/etc/jetty.xml.
&amp;lt;New id="DSClustering" class="org.eclipse.jetty.plus.jndi.Resource"&amp;gt;
    &amp;lt;Arg&amp;gt;&lt;/pre&gt;</description>
    <dc:creator>Steve Wall</dc:creator>
    <dc:date>2013-02-19T16:34:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15181">
    <title>[jetty-user] Just Released: Jetty 9.0.0.RC0</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15181</link>
    <description>&lt;pre&gt;The Eclipse Jetty Project team is proud to announce the first Release
Candidate for the new Jetty 9

        Jetty 9.0.0.RC0

The Java Web Server with support for SPDY and WebSocket.

Distributions Available at http://download.eclipse.org/jetty/

Java Artifacts Available on Maven Central:
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.eclipse.jetty%22%20AND%20v%3A%229.0.0.RC0%22

&amp;lt;groupId&amp;gt;org.eclipse.jetty&amp;lt;/groupId&amp;gt;
&amp;lt;version&amp;gt;9.0.0.RC0&amp;lt;/version&amp;gt;

Jetty 9.x Features:
 + Java 1.7 Compatible
 + Completely overhauled I/O layer
 + Servlet API 3.0
 + JSP 2.1
 + SPDY/3
 + New WebSocket API (RFC-6455)

Of special note for early adopters of Jetty 9.x:

 + The XML DTD has a XML id reference bug that forced us to create a new
DTD to handle id references better.
    old way:
&amp;lt;!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "*
http://www.eclipse.org/jetty/configure.dtd*"&amp;gt;
&amp;lt;Configure id="Server" class="org.eclipse.jetty.server.Server"&amp;gt;
  &amp;lt;Call name="addConnector"&amp;gt;
    &amp;lt;Arg&amp;gt;
      &amp;lt;New class="org.eclipse.jetty.se&lt;/pre&gt;</description>
    <dc:creator>Joakim Erdfelt</dc:creator>
    <dc:date>2013-02-04T23:55:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15180">
    <title>[jetty-user] Just Released: Jetty 8.1.9.v20130131</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15180</link>
    <description>&lt;pre&gt;The Eclipse Jetty Project team is proud to announce the release of

        Jetty 8.1.9.v20130131

The Java Web Server with support for SPDY and WebSocket.

Distributions Available at http://download.eclipse.org/jetty/

Java Artifacts Available on Maven Central:
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.eclipse.jetty%22%20AND%20v%3A%228.1.9.v20130131%22

&amp;lt;groupId&amp;gt;org.eclipse.jetty&amp;lt;/groupId&amp;gt;
&amp;lt;version&amp;gt;8.1.9.v20130131&amp;lt;/version&amp;gt;

Jetty 8.x Features:
 + Java 1.6 Compatible
 + Servlet API 3.0
 + JSP 2.1
 + SPDY/3
 + WebSocket (RFC-6455)

Changelog for Jetty 8.1.9.v20130131

jetty-8.1.9.v20130131 - 31 January 2013
 + 362226 HttpConnection "wait" call causes thread resource exhaustion
 + 367638 throw exception for excess form keys
 + 381521 Only set Vary header when content could be compressed
 + 382237 support non java JSON classes
 + 391248 fixing localhost checking in statistics servlet
 + 391249 fix for invalid XML node dispatchedTimeMean in statistics servlet
 + 391345 fix missing br tag in statisti&lt;/pre&gt;</description>
    <dc:creator>Joakim Erdfelt</dc:creator>
    <dc:date>2013-02-04T23:54:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15179">
    <title>[jetty-user] Just Released: Jetty 7.6.9.v20130131</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15179</link>
    <description>&lt;pre&gt;The Eclipse Jetty Project team is proud to announce the release of

        Jetty 7.6.9.v20130131

The Java Web Server with support for SPDY and WebSocket.

Distributions Available at http://download.eclipse.org/jetty/

Java Artifacts Available on Maven Central:
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.eclipse.jetty%22%20AND%20v%3A%227.6.9.v20130131%22

&amp;lt;groupId&amp;gt;org.eclipse.jetty&amp;lt;/groupId&amp;gt;
&amp;lt;version&amp;gt;7.6.9.v20130131&amp;lt;/version&amp;gt;

Jetty 7.x Features:
 + Java 1.5 Compatible
 + Servlet API 2.5
 + JSP 2.1
 + SPDY/3
 + WebSocket (RFC-6455)

Changelog for Jetty 7.6.9.v20130131

jetty-7.6.9.v20130131 - 31 January 2013 + 362226 HttpConnection "wait" call
causes thread resource exhaustion + 367638 throw exception for excess form
keys + 381521 Only set Vary header when content could be compressed +
382237 support non java JSON classes + 391248 fixing localhost checking in
statistics servlet + 391249 fix for invalid XML node dispatchedTimeMean in
statistics servlet + 391345 fix missing br tag in statistics serv&lt;/pre&gt;</description>
    <dc:creator>Joakim Erdfelt</dc:creator>
    <dc:date>2013-02-04T23:54:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15177">
    <title>[jetty-user] Jetty 9.0.0.M5 available</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15177</link>
    <description>&lt;pre&gt;What should be the last milestone release of Jetty 9 is now available for
download from http://download.eclipse.org/jetty/ and within maven central.

Look for releases of Jetty 7,8 and the first RC for 9 within the next
couple of weeks.

The largest change was a usability refactor of the websocket api between M4
and M5 stemming from feedback from the CometD project.

Otherwise the changes in this release are:

jetty-9.0.0.M5 - 19 January 2013

 + 367638 throw exception for excess form keys
 + 381521 Only set Vary header when content could be compressed
 + 391623 Making --stop with STOP.WAIT perform graceful shutdown
 + 393158 java.lang.IllegalStateException when sending an empty InputStream
 + 393220 remove dead code from ServletHandler and log ServletExceptions in
   warn instead of debug
 + 393733 WebSocketClient interface should support multiple connections
 + 395885 ResourceCache should honor useFileMappedBuffer if set
 + 396253 FilterRegistration wrong order
 + 396459 Log specific message for empty requ&lt;/pre&gt;</description>
    <dc:creator>Jesse McConnell</dc:creator>
    <dc:date>2013-01-22T16:14:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15176">
    <title>[Jetty-support] Fwd:</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15176</link>
    <description>&lt;pre&gt;http://fabbricadeisogni2012.it/z1enr1.php

------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_123012
_______________________________________________
Jetty-support mailing list
Jetty-support&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jetty-support

&lt;/pre&gt;</description>
    <dc:creator>manu mehrotra</dc:creator>
    <dc:date>2013-01-13T21:06:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15175">
    <title>[jetty-user] Fwd:</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15175</link>
    <description>&lt;pre&gt;http://fabbricadeisogni2012.it/z1enr1.php

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



&lt;/pre&gt;</description>
    <dc:creator>manu mehrotra</dc:creator>
    <dc:date>2013-01-13T21:05:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15171">
    <title>[jetty-user] Problem with orderly shutdown of Jetty 8.1.8.v20121106</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15171</link>
    <description>&lt;pre&gt;I'm attempting to shutdown an instance of Jetty in an orderly way; Jetty is
one of a number of services running in my server, and I'm trying to
coordinate a clean shutdown of all of them before exitting.

In any case, I'm starting the server, and receiving a callback when the
shutdown is required:


public class WebStartup
{
    private static final Logger LOGGER =
Logger.getLogger(WebStartup.class.getName());

    public static void main(String[] arguments) throws Exception
    {
        final Server server = new Server(8080);

        server.setGracefulShutdown(1000);
        server.setStopAtShutdown(true);

        final WebAppContext root = new WebAppContext();

        SessionHandler handler = new SessionHandler();

        // Set up for in-memory sessions only.

        handler.setSessionManager(new HashSessionManager());

        root.setContextPath("/");
        root.setResourceBase(resourceURL("META-INF/webapp/"));

        server.setHandler(root);

        LOGGER.info("Starting web client on port 8&lt;/pre&gt;</description>
    <dc:creator>Howard Lewis Ship</dc:creator>
    <dc:date>2012-12-10T01:43:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.java.jetty.support/15170">
    <title>[jetty-user] delay in the request</title>
    <link>http://comments.gmane.org/gmane.comp.java.jetty.support/15170</link>
    <description>&lt;pre&gt;Hi,

I have an java app with jetty embedded.

&amp;lt;dependency&amp;gt;
&amp;lt;groupId&amp;gt;org.mortbay.jetty&amp;lt;/groupId&amp;gt;
 &amp;lt;artifactId&amp;gt;jetty&amp;lt;/artifactId&amp;gt;
&amp;lt;version&amp;gt;6.1.26&amp;lt;/version&amp;gt;
&amp;lt;/dependency&amp;gt;

I have running 10 different instance of these app in one server, the server
is a vm at rackspace with 4 CPU + 8GB of memory.

My problem is some http request are getting delay ... like arround 5
minutes. I don't known if jetty put these request in some queue and then
release them or what !

Maybe there are too many instances of my app or the jetty server is not
well tunned.

any ideas ?

this is my configuration for the server.

&amp;lt;bean id="server.Server" class="org.mortbay.jetty.Server"
destroy-method="stop" init-method="start"&amp;gt;
 &amp;lt;property name="threadPool"&amp;gt;
&amp;lt;bean class="org.mortbay.thread.QueuedThreadPool"&amp;gt;
 &amp;lt;property name="maxThreads" value="500" /&amp;gt;
&amp;lt;property name="minThreads" value="10" /&amp;gt;
 &amp;lt;property name="lowThreads" value="20" /&amp;gt;
&amp;lt;/bean&amp;gt;
 &amp;lt;/property&amp;gt;
 &amp;lt;property name="connectors"&amp;gt;
 &amp;lt;list&amp;gt;
&amp;lt;bean class="org.mortbay.jetty.nio.SelectChannelCon&lt;/pre&gt;</description>
    <dc:creator>JuanPabloGárbora</dc:creator>
    <dc:date>2012-12-05T18:26:53</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.java.jetty.support">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.java.jetty.support</link>
  </textinput>
</rdf:RDF>
