Hi, James:

I just using the following code, then I get that error.

getSecuritySettings().setAuthorizationStrategy(
    new IAuthorizationStrategy(){
    SecuritySession session = SecuritySession.get();
    public boolean isActionAuthorized(Component component, Action action) {
         return session.auth(component,action)
    }
   public <T extends Component> boolean
isInstantiationAuthorized(Class<T> clazz) {
        return session.auth(clazz);
    }
}
);






On Sat, Nov 7, 2009 at 8:01 PM, James Carman
<jcar...@carmanconsulting.com> wrote:
> What session are you trying to access during the application startup?
> A session is tied to a user's session as they browse your site.  Who's
> browsing upon application startup?
>
> On Sat, Nov 7, 2009 at 6:42 AM, Haulyn R. Jason <saharab...@gmail.com> wrote:
>> Hi, I tried this, but I got the following:
>>
>> you can only locate or create sessions in the context of a request
>> cycle when I start the application.
>>
>>
>>
>>
>>
>> On Sat, Nov 7, 2009 at 7:38 PM, James Carman
>> <jcar...@carmanconsulting.com> wrote:
>>> Session.get()?
>>>
>>> http://wicket.apache.org/docs/1.4/org/apache/wicket/Session.html#get%28%29
>>>
>>> In your custom session class, you can add your own get() method that
>>> returns your specific type:
>>>
>>> public static MySession get()
>>> {
>>>  return (MySession)Session.get();
>>> }
>>>
>>> Then, you don't have to cast:
>>>
>>> MySession.get().getMySessionInformationThatImInterestedIn();
>>>
>>> On Sat, Nov 7, 2009 at 5:22 AM, Haulyn R. Jason <saharab...@gmail.com> 
>>> wrote:
>>>> Hi,
>>>>
>>>> I want to implement IAuthorizationStrategy in MyApplication, but I do
>>>> not know how to get WicketSession, I need to get Component Action List
>>>> from WicketSession. Is there some reference?
>>>>
>>>> --
>>>> Many thanks!
>>>>
>>>> Haulyn Microproduction
>>>>
>>>> You can access me via:
>>>> Location: Shandong Jinan Shumagang 6H-8, 250000
>>>> Mobile: +086-15864011231
>>>> email: saharab...@gmail.com
>>>> website: http://haulynjason.net
>>>> gtalk: saharab...@gmail.com
>>>> skype: saharabear
>>>> QQ: 378606292
>>>> persional Twitter: http://twitter.com/saharabear
>>>> persional Linkedin: http://www.linkedin.com/in/haulyn
>>>> Haulyn Microproduction Twitter: http://twitter.com/haulynmp
>>>>
>>>>
>>>> Haulyn Jason
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>
>>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>>
>>
>> --
>> Many thanks!
>>
>> Haulyn Microproduction
>>
>> You can access me via:
>> Location: Shandong Jinan Shumagang 6H-8, 250000
>> Mobile: +086-15864011231
>> email: saharab...@gmail.com
>> website: http://haulynjason.net
>> gtalk: saharab...@gmail.com
>> skype: saharabear
>> QQ: 378606292
>> persional Twitter: http://twitter.com/saharabear
>> persional Linkedin: http://www.linkedin.com/in/haulyn
>> Haulyn Microproduction Twitter: http://twitter.com/haulynmp
>>
>>
>> Haulyn Jason
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>



-- 
Many thanks!

Haulyn Microproduction

You can access me via:
Location: Shandong Jinan Shumagang 6H-8, 250000
Mobile: +086-15864011231
email: saharab...@gmail.com
website: http://haulynjason.net
gtalk: saharab...@gmail.com
skype: saharabear
QQ: 378606292
persional Twitter: http://twitter.com/saharabear
persional Linkedin: http://www.linkedin.com/in/haulyn
Haulyn Microproduction Twitter: http://twitter.com/haulynmp


Haulyn Jason

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to