I added System.out in WebApplication.
final BufferedHttpServletResponse popBufferedResponse(String sessionId,
String bufferId)
{
        Map responsesPerSession = (Map)bufferedResponses.get(sessionId);
        System.out.println("=== responsesPerSession: " + responsesPerSession);
        if (responsesPerSession != null)
        {
                BufferedHttpServletResponse buffered =
(BufferedHttpServletResponse)responsesPerSession
                        .remove(bufferId);
                
                // add
                Iterator ite = responsesPerSession.keySet().iterator();
                while (ite.hasNext()) {
                        String obj = (String) ite.next();
                        System.out.println("key: " + obj);
                }
                        
                return buffered;
        }
        return null;
}
"key" is
"/WicketExamples1.2Web/compref;jsessionid=0000dX1N0UQwv_iRRaU0FlTKbsF:-1?wicket:interface=:2::",
but buffereId is "/WicketExamples1.2Web/compref?wicket:interface=:2::".
In the map value is not contained, so return value
BufferedHttpServletResponse is null.

Thank you.
R.A
--
View this message in context: 
http://www.nabble.com/PageLink-called-request-two-times-t1205926.html#a3273802
Sent from the Wicket - User forum at Nabble.com.



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to