only for lovers of IDEA :

1- search symbol : ctrl + shift + alt + n (IDEA also has search class or search file) 2- type getRequest with a space in end for narrow list (or type get*Request*) 3- IDEA actually sugesst only three items from lib of wicket 1.2 , in Component and in RequestCycle and in ServletRequestWrapper

may you tell me that i much depend myself to this tool BUT i like this status. still this IDE wonder me

On Wed, 12 Apr 2006 00:49:34 +0530, Igor Vaynberg <[EMAIL PROTECTED]> wrote:

RequestCycle.get().getRequest()......

-Igor


On 4/11/06, Gustavo Hexsel <[EMAIL PROTECTED]> wrote:

Juergen gave me some pointers and I decided to try migrating to 1.2. I
have to say things are quite a bit more complicated now...  how do I get
access to the request from an AuthorizationStrategy? I need to check if the request's IP is within a pre-configured range. Before, I was doing this on
checkAccess():

                final ServletWebRequest servletWebRequest =
(ServletWebRequest) getRequest();
                final HttpServletRequest request =
servletWebRequest.getHttpServletRequest();
                final String clientIP = request.getRemoteAddr();
                boolean isOffSiteIP = ConfigurationService.getInstance
().isOffSiteIP(clientIP);
                boolean isOffSiteAllowed =
ConfigurationService.getInstance
().load().isOffSiteAccessEnabled().booleanValue();

                if(isOffSiteIP && !isOffSiteAllowed){
                        ... redirect to appropriate warning page
                }

    []s Gus



-----Original Message-----
From: Gustavo Hexsel
Sent: April 10, 2006 6:10 PM
To: 'wicket-user@lists.sourceforge.net'
Subject: WicketTester and checkAccess redirections


  Hi,

  I'm using Wicket 1.1.1 and trying to get my first WicketTester to work
with the current app. I can't seem to get the redirectToInterceptPage(Page)
method to actually redirect to the page.  It works fine from Tomcat and
Jetty, but the WicketTester seems to ignore the call (though I stepped into
it and saw it was actually called).

  Is this the expected behaviour?  If so, how do you test the
interceptions?


    []s Gus


-------------------------------------------------------
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?cmdlnk&kid0944&bid$1720&dat1642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user




--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/


-------------------------------------------------------
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
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to