| Author |
Async Listener and Request/Response objects
|
Stoian Azarov
Ranch Hand
Joined: Jun 01, 2011
Posts: 111
|
|
I can't retrieve ServletResponse object from AsyncEvent. I am using AsyncEvent#getSuppliedResponse() but I am getting null. I am adding the listener programmatically by AsyncContext#addListener(AsyncListener).
Servlet 3.0 Specification
public void addListener(asyncListener) - Registers the given listener
for notifications of time out, error and complete with the most recent
asynchronous cycle by a call to one of the ServletRequest.startAsync
methods. If startAsync(req, res) or startAsync() is called on the
request, the exact same request and response objects are available from the
AsyncEvent when the AsyncListener is notified.
Am I misinterpreting the explanation of this method. What should I do to get access to request or response object from my listener?
|
 |
Piyush Joshi
Ranch Hand
Joined: Jun 10, 2011
Posts: 207
|
|
The problem is that you are registering the listener using wrong method. Use AsyncContext#addListener(AsyncListener, ServletRequest, ServletResponse).
See the Javadocs for AsyncEvent#getSuppliedResponse():
|
Piyush
|
 |
Stoian Azarov
Ranch Hand
Joined: Jun 01, 2011
Posts: 111
|
|
Thansk Piuysh, It looks that I have to read more carefully the javadoc.
Now using the other #addListener() method I managed to retrieve the response.
I suppose that this sentence:
public void addListener(asyncListener)
...
If startAsync(req, res) or startAsync() is called on the
request, the exact same request and response objects are available from the
AsyncEvent when the AsyncListener is notified.
means that AsyncEvent has access to the request and response objects that were used when async process was started but we do not have access to them(especially using getSuppliedRequest/Response() methods).
|
 |
 |
|
|
subject: Async Listener and Request/Response objects
|
|
|