Re: FacesServlet.service() method eating too much time while serving requests (high self-time) ?!

2013-09-07 Thread Anton Gavazuk
Process an incoming request, and create the corresponding response, by executing the request processing lifecycle. If the request and response arguments to this method are not instances of HttpServletRequest and HttpServletResponse, respectively, the results of invoking this method are undefined.

Re: FacesServlet.service() method eating too much time while serving requests (high self-time) ?!

2013-09-07 Thread Ertio Lew
On Sat, Sep 7, 2013 at 11:54 AM, Anton Gavazuk antongava...@gmail.com wrote: So this method is actually wrapping up all underlying processing: jsf actions, business services, interaction with db - thus its time is always the biggest Nope the *self time* of this method that I am talking

Re: FacesServlet.service() method eating too much time while serving requests (high self-time) ?!

2013-09-07 Thread Howard W. Smith, Jr.
On Sat, Sep 7, 2013 at 2:53 PM, Ertio Lew ertio...@gmail.com wrote: On Sat, Sep 7, 2013 at 11:54 AM, Anton Gavazuk antongava...@gmail.com wrote: So this method is actually wrapping up all underlying processing: jsf actions, business services, interaction with db - thus its time is

Re: FacesServlet.service() method eating too much time while serving requests (high self-time) ?!

2013-09-07 Thread Howard W. Smith, Jr.
On Sat, Sep 7, 2013 at 2:24 AM, Anton Gavazuk antongava...@gmail.comwrote: Process an incoming request, and create the corresponding response, by executing the request processing lifecycle. If the request and response arguments to this method are not instances of HttpServletRequest and