Re: OT: Boutique

2016-03-10 Thread Lon Varscsak
Okay, thanks…sorry for hijacking :D On Thu, Mar 10, 2016 at 11:34 AM, Andrus Adamchik wrote: > > Maybe I should create a ServerFactory instead? > > > Yeah, that's one option. > > Let's maybe take the discussion off Cayenne list (e.g. to GitHub). I just > opened a ticket there: > > https://githu

Re: OT: Boutique

2016-03-10 Thread Andrus Adamchik
> Maybe I should create a ServerFactory instead? Yeah, that's one option. Let's maybe take the discussion off Cayenne list (e.g. to GitHub). I just opened a ticket there: https://github.com/nhl/bootique-jetty/issues/12 Andrus > On Mar 10, 2016, at 1:04 PM, Lon Varscsak wrote: > > Hmm,

Re: OT: Boutique

2016-03-10 Thread Lon Varscsak
Hmm, yeah this is trickier the more I get into it. So I was able to successfully subclass WicketServlet and hack in the values I need to get it running. However, I need my ServerContextHandler to be allocated with SESSIONS option. Maybe I should create a ServerFactory instead? On Thu, Mar 10, 2

Re: OT: Boutique

2016-03-10 Thread Lon Varscsak
Yeah, it’s WicketServlet (I could subclass). On Thu, Mar 10, 2016 at 10:25 AM, Andrus Adamchik wrote: > Is that a third-party servlet that you can't change? > > Andrus > > > On Mar 10, 2016, at 12:23 PM, Lon Varscsak > wrote: > > > > Okay, that’s where I ended up (so I’m glad I was on the right

Re: OT: Boutique

2016-03-10 Thread Andrus Adamchik
Is that a third-party servlet that you can't change? Andrus > On Mar 10, 2016, at 12:23 PM, Lon Varscsak wrote: > > Okay, that’s where I ended up (so I’m glad I was on the right track)…my > servlet that I’m using gets all of it’s values from the init parameters and > the only way I know to set

Re: OT: Boutique

2016-03-10 Thread Lon Varscsak
Okay, that’s where I ended up (so I’m glad I was on the right track)…my servlet that I’m using gets all of it’s values from the init parameters and the only way I know to set them programmatically (no web-xml) is to use a ServletHolder. Thoughts? I might be able to create a subclass and do some t