Re: remember me at login page feature

2009-05-06 Thread Khlystov Alexandr
:) if (!AuthenticatedWebSession.get().isSignedIn() (!myOwnCookieCheck())) { :... } ** Martin 2009/5/6 Khlystov Alexandr a...@ovservice.org: Thanks for reply, Martin. AuthenticatedWebSession#isSignedIn() is final too :). And according to design I think it is not the proper place to do the auto-login

Re: remember me at login page feature

2009-05-06 Thread Khlystov Alexandr
No :), it is to complex. What I do better is than hack the LoginPage and do there cookie check, and redirecting to requested Page ;). Did you try putting a breakpoint and finding a suitable place from the call-stack? ** Martin 2009/5/6 Khlystov Alexandr a...@ovservice.org

Re: remember me at login page feature

2009-05-06 Thread Khlystov Alexandr
Guys? if really nobody has implemented the auto-login via cookie, basing on AuthenticatedWebApplication ??? Khlystov Alexandr пишет: Hello all. Previous answers did not helped me much. Though thanks authors for their replies. I am going to provide more detailed question: My App extends

Re: remember me at login page feature

2009-05-06 Thread Khlystov Alexandr
. -igor On Wed, May 6, 2009 at 7:02 AM, Khlystov Alexandr a...@ovservice.org wrote: Guys? if really nobody has implemented the auto-login via cookie, basing on AuthenticatedWebApplication ??? Khlystov Alexandr пишет: Hello all. Previous answers did not helped me much. Though thanks

Re: remember me at login page feature

2009-05-05 Thread Khlystov Alexandr
to authenticate user just by login retrieved from the cookie. And do not show SignInPage and do not do any redirectToInterceptPage. Thanks in advance! P.S. I think Wicket as a project requires more detailed and features-wide reference documentation. Khlystov Alexandr пишет: Good day. Can anyone

Re: remember me at login page feature

2009-05-05 Thread Khlystov Alexandr
() All you need to do is evaluate the cookie here: if (!AuthenticatedWebSession.get().isSignedIn()) Meaning that this should return TRUE if cookie is found. ** Martin 2009/5/5 Khlystov Alexandr a...@ovservice.org: Hello all. Previous answers did not helped me much. Though thanks authors

Re: remember me at login page feature

2009-05-05 Thread Khlystov Alexandr
#isSignedIn() All you need to do is evaluate the cookie here: if (!AuthenticatedWebSession.get().isSignedIn()) Meaning that this should return TRUE if cookie is found. ** Martin 2009/5/5 Khlystov Alexandr a...@ovservice.org: Hello all. Previous answers did not helped me much. Though thanks

Re: can't set 'id' attribute to tr tag

2009-04-19 Thread Khlystov Alexandr
Resolved by myself. I just need to add other elements for listView item under the new WebMarkupContainer. Thanks, Igor. Khlystov Alexandr пишет: Error: WicketMessage: Unable to find component with id 'id' in [MarkupContainer [Component id = idTr]]. This means that you declared wicket:id

remember me at login page feature

2009-04-19 Thread Khlystov Alexandr
Good day. Can anyone, please, give an example, or direct wicket API description about remember me at login page feature. Thanks in advance. -- Khlystov Alexandr - To unsubscribe, e-mail: users-unsubscr

Re: remember me at login page feature

2009-04-19 Thread Khlystov Alexandr
commands, e-mail: users-h...@wicket.apache.org -- Khlystov Alexandr - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

how to setup the @SpringBean for the WebSession?

2009-04-18 Thread Khlystov Alexandr
! -- Khlystov Alexandr - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: how to setup the @SpringBean for the WebSession?

2009-04-18 Thread Khlystov Alexandr
know if this is the usual way of doing things, but it works for me. Cristi Manole On Sat, Apr 18, 2009 at 11:28 AM, Khlystov Alexandr a...@ovservice.orgwrote: Hi all! Qustion: how to setup the @SpringBean for the WebSession? I am folowing this guide: http://cwiki.apache.org/WICKET/spring.html

Re: Problem in creating a Custom Component with a Panel and a Form

2009-04-18 Thread Khlystov Alexandr
! - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Khlystov Alexandr - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

can't set 'id' attribute to tr tag

2009-04-18 Thread Khlystov Alexandr
, but that you either did not add the component to your page at all, or that the hierarchy does not match. JAVA diff: -item.add(new WebComponent(idTr){ +item.add(new WebMarkupContainer(idTr){ Thanks in advance. -- Khlystov Alexandr

Re: Problem in creating a Custom Component with a Panel and a Form

2009-04-18 Thread Khlystov Alexandr
what I do wrong? Thanks a lot, Giampiero Granatella - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Khlystov Alexandr

Re: can't set 'id' attribute to tr tag

2009-04-18 Thread Khlystov Alexandr
/wicket:extend /body /html it should be webmarkupcontainer, and it should work just fine. paste your complete code with markup and markupcontainer for the whole page/panel. -igor On Sat, Apr 18, 2009 at 4:03 AM, Khlystov Alexandr a...@ovservice.org wrote: Hello again! I can't set 'id' attribute

where is AuthenticatedWebApplication

2009-04-01 Thread Khlystov Alexandr
| Hello all! I see sample at http://www.wicket-library.com/wicket-examples/authentication but I don't see class org.apache.wicket.authentication.AuthenticatedWebApplication; in wicket-1.3.5.jar? Where could I find it? Thanks in advance. | -- Khlystov Alexandr

Re: where is AuthenticatedWebApplication

2009-04-01 Thread Khlystov Alexandr
James, and Jeremy from other letter - thanks! James Carman пишет: wicket-auth-roles-1.3.5.jar On Wed, Apr 1, 2009 at 11:51 AM, Khlystov Alexandr a...@ovservice.org wrote: | Hello all! I see sample at http://www.wicket-library.com/wicket-examples/authentication but I don't see class

Re: simple Link

2009-03-29 Thread Khlystov Alexandr
want: a href=# wicket:id=loginLink wicket:message=title:login_link_tooltipwicket:message key=login_caption_property//a ** Martin 2009/3/28 Khlystov Alexandr ITR a...@ovservice.org: I want to create java code for simple button, and to override caption from html: a href=# wicket:id

Re: simple Link

2009-03-29 Thread Khlystov Alexandr
=title:login_link_tooltipwicket:message key=login_caption_property//a ** Martin 2009/3/28 Khlystov Alexandr ITR a...@ovservice.org: I want to create java code for simple button, and to override caption from html: a href=# wicket:id=loginLinkloginLink caption/a How it should look like

Re: simple Link

2009-03-29 Thread Khlystov Alexandr
Thanks Anton and Igor, that is exactly what I need! Anton Veretennikov пишет: http://www.nabble.com/Link-text-td13585396.html On Sun, Mar 29, 2009 at 2:28 PM, Khlystov Alexandr allex.khlys...@gmail.com wrote: I've googled a bit words wicket textlink and found only http://www.mail

it is not a spam

2009-03-28 Thread Khlystov Alexandr ITR
it is not a spam -- Khlystov Alexandr IT researcher - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

simple Link

2009-03-28 Thread Khlystov Alexandr ITR
I want to create java code for simple button, and to override caption from html: a href=# wicket:id=loginLinkloginLink caption/a How it should look like withou span? -- Khlystov Alexandr - To unsubscribe, e-mail

simple Link

2009-03-28 Thread Khlystov Alexandr ITR
appropriate solution exists. /So, what should I use???/ Thanks in advance! -- Khlystov Alexandr - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org