Re: [jetty-users] Vert.x-like functionality in Jetty?

2012-05-23 Thread Simone Bordet
Hi, On Thu, May 24, 2012 at 7:04 AM, Otis Gospodnetic wrote: > Hi, > > Is there anything in Jetty (any version) that is Vert.x > (see http://vertx.io/ ) like? > I'm mainly referring to scalability and concurrency, as well as that > distributed event bus. You should have a look at CometD, http:

[jetty-users] Vert.x-like functionality in Jetty?

2012-05-23 Thread Otis Gospodnetic
Hi, Is there anything in Jetty (any version) that is Vert.x (see http://vertx.io/ ) like? I'm mainly referring to scalability and concurrency, as well as that distributed event bus. Thanks, Otis  Performance Monitoring for Solr / ElasticSearch / HBase - http://sematext.com/spm  _

Re: [jetty-users] general embedded jetty questions

2012-05-23 Thread Andrei
You can take a look at my Mongodb rest server as example, which is Jetty embedded https://sites.google.com/site/mongodbjavarestserver/home On Wed, May 23, 2012 at 10:30 AM, S Ahmed wrote: > Hoping someone could help me on this, this is a web service endpoint and I > have to support the servlet be

Re: [jetty-users] jetty-maven-plugin v7.5.0.v20110901 no longer respects system properties?

2012-05-23 Thread Pieper, Aaron
Shirley, Actually, the issue wasn't the missing hyperlink- the entire "Setting System Properties" section was absent until this morning! But Jan authored that section a few hours ago, so it's looking much better now. Thanks to both of you for your hard work! - Aaron From: jetty

Re: [jetty-users] jetty-maven-plugin v7.5.0.v20110901 no longer respects system properties?

2012-05-23 Thread Jan Bartel
Ah well, thanks for trying, it was worth a shot. I don't think there's much I can do - the jetty classes now use static log initializers, and -verbose:class shows that the org.eclipse.jetty.util.component.AbstractLifeCycle class is loaded much earlier than even the org.mortbay.jetty.plugin.SystemP

Re: [jetty-users] general embedded jetty questions

2012-05-23 Thread Thomas SEGISMONT
You should use a context handler collection See documentation http://wiki.eclipse.org/Jetty/Tutorial/Embedding_Jetty#Configuring_a_Context_Handler_Collection Le 23/05/2012 17:30, S Ahmed a écrit : Hoping someone could help me on this, this is a web service endpoint and I have to support the se

Re: [jetty-users] jetty-maven-plugin v7.5.0.v20110901 no longer respects system properties?

2012-05-23 Thread Shirley Boulay
Hello Aaron, The information about setting system properties is in a later section of http://wiki.eclipse.org/Jetty/Feature/Jetty_Maven_Plugin. Unfortunately, I neglected to link to it. I've fixed that now. Here is the link: http://wiki.eclipse.org/Jetty/Feature/Jetty_Maven_Plugin#Setting_System_P

Re: [jetty-users] general embedded jetty questions

2012-05-23 Thread S Ahmed
Hoping someone could help me on this, this is a web service endpoint and I have to support the servlet being fired by 2 different url structures (if possible), so like: /my_api/first/path /some/other/path I have this currently: Server server = new Server(8090); ServletContextHandler se

Re: [jetty-users] jetty-maven-plugin v7.5.0.v20110901 no longer respects system properties?

2012-05-23 Thread Pieper, Aaron
I tried shifting the element to be the first child of the element, but it still behaves the same way - the AbstractLifeCycle.LOG field is still initialized before any of the properties are set. - Aaron -Original Message- From: Jan Bartel [mailto:j...@intalio.com] Sent: Wednesday, Ma

Re: [jetty-users] [SPAM] Re: jetty-maven-plugin v7.5.0.v20110901 no longer respects system properties?

2012-05-23 Thread Jan Bartel
Aaron, Out of curiosity, can you try instead shifting your up to be the first configuration of the plugin, before any (aliased also to ) or any other elements? Perhaps that will get the system property set before any Jetty classes are loaded that cause the loading of AbstractLifeCycle class and