Re: Anyone use embedded jetty in production out there?

2012-06-13 Thread Benson Margulies
sday, June 12, 2012 8:44 AM > To: users@cxf.apache.org > Subject: Re: Anyone use embedded jetty in production out there? > > Yup, "in start! 2147483647." > > On Mon, Jun 11, 2012 at 4:15 PM, Daniel Kulp wrote: >> SelectChannelConnector con = new SelectChannelConnector() { &

RE: Anyone use embedded jetty in production out there?

2012-06-12 Thread Gary Gregory
We use an embedded Jetty in our application server that we configure through a standard jetty.xml file. Gary -Original Message- From: Benson Margulies [mailto:bimargul...@gmail.com] Sent: Tuesday, June 12, 2012 8:44 AM To: users@cxf.apache.org Subject: Re: Anyone use embedded jetty in

Re: Anyone use embedded jetty in production out there?

2012-06-12 Thread Benson Margulies
Yup, "in start! 2147483647." On Mon, Jun 11, 2012 at 4:15 PM, Daniel Kulp wrote: > SelectChannelConnector con = new SelectChannelConnector() { >  public void doStart() throws Exception { >     System.out.println("in start! " + getMaxIdleTime()); >     super.doStart(); >  } > }

Re: Anyone use embedded jetty in production out there?

2012-06-11 Thread Daniel Kulp
You're code looks fine to me. You could likely test it just by doing something like: SelectChannelConnector con = new SelectChannelConnector() { public void doStart() throws Exception { System.out.println("in start! " + getMaxIdleTime()); super.doStart(); } } . Just to mak