Re: Mark async-supported=true for non-asynchronous servlets

2015-07-16 Thread Rilak Kun
This is great news. Thank you Mark! On Thu, Jul 16, 2015 at 1:57 PM, Mark Thomas wrote: > On 16 July 2015 21:49:33 CEST, Rilak Kun wrote: >>Getting back to my original question... is there any harm if I make >>the front servlet async-supported all the time, even though not all my >>application s

Re: Mark async-supported=true for non-asynchronous servlets

2015-07-16 Thread Mark Thomas
On 16 July 2015 21:49:33 CEST, Rilak Kun wrote: >Getting back to my original question... is there any harm if I make >the front servlet async-supported all the time, even though not all my >application servlets support asynchronous mode? No. Assuming that your front servlet isn't doing anything t

Re: Mark async-supported=true for non-asynchronous servlets

2015-07-16 Thread Rilak Kun
Getting back to my original question... is there any harm if I make the front servlet async-supported all the time, even though not all my application servlets support asynchronous mode? Thank you! On Wed, Jul 15, 2015 at 4:55 PM, Rilak Kun wrote: > Thanks Chris for the suggestion, but since ou

Re: Mark async-supported=true for non-asynchronous servlets

2015-07-15 Thread Rilak Kun
Thanks Chris for the suggestion, but since our application runs in OSGi, we need a different mechanism for loading classes/plugins lazily (and our servlet classes need to be loaded using OSGi class loader). We are using Equinox servletbridge library, which defines a bridge servlet I mentioned earl

Re: Mark async-supported=true for non-asynchronous servlets

2015-07-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Rilak, On 7/14/15 11:06 PM, Rilak Kun wrote: > Our application is running in OSGi. Servlets are contributed via > Eclipse extension point, so they can be registered in different > plugins without changing the web.xml. When a servlet is registered

Re: Mark async-supported=true for non-asynchronous servlets

2015-07-14 Thread Rilak Kun
Hello Chris, Our application is running in OSGi. Servlets are contributed via Eclipse extension point, so they can be registered in different plugins without changing the web.xml. Thank you! Rilak On Tue, Jul 14, 2015 at 8:24 PM, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- >

Re: Mark async-supported=true for non-asynchronous servlets

2015-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Rilak, On 7/14/15 9:20 PM, Rilak Kun wrote: > I have only one servlet definition in my web.xml. This servlet acts > as a bridge servlet for delegating requests to the actual 50 > servlets in my application. I would like to make one of the 50 > servl

Mark async-supported=true for non-asynchronous servlets

2015-07-14 Thread Rilak Kun
Hello, I have only one servlet definition in my web.xml. This servlet acts as a bridge servlet for delegating requests to the actual 50 servlets in my application. I would like to make one of the 50 servlets async-supported. I can think of two ways to do it: 1. Create another bridge servlet for h