Re: Canonical link

2012-03-29 Thread Francois Meillet
Hi Chris, It may help you : Url url = RequestCycle.get().mapUrlFor(page.getClass(), getPageParameters()); String canonicalLink = RequestCycle.get().getUrlRenderer().renderFullUrl(url); François Le 27 mars 2012 à 00:49, Chris Colman a écrit : > I'm implementing canonical in our wicket app a

When I am open title page of my application, the next error occurs...

2012-03-29 Thread Ivan V. Kokhan
Dear All, Please help me to fix next error. Which part of the documentation I may use for the solution of this problem? When I am open title page of my application, the next error occurs. ---

Re: When I am open title page of my application, the next error occurs...

2012-03-29 Thread Martin Grigorov
Hi, Do you use Corba in your app ? grep for CORBA and remove it if it's there On Thu, Mar 29, 2012 at 11:16 AM, Ivan V. Kokhan wrote: > Dear All, > > Please help me to fix next error. > > Which part of the documentation I may use for the solution of this problem? > > > > When I am open title pag

Re: Repalcement of servlets in wicket.

2012-03-29 Thread SudeepShakya
I am using version 1.4.10 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Repalcement-of-servlets-in-wicket-tp4514480p4514980.html Sent from the Users forum mailing list archive at Nabble.com. - To un

RE: When I am open title page of my application, the next error occurs...

2012-03-29 Thread Ivan V. Kokhan
Martin, thank you very much! We don't use CORBA in our app. We use JBoss-4.2.2 and EJB 3.0 + Hibernate technologies. Our Wicket application runs as web-application on our JBoss server. -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Thursday, March 29, 2012 1

RE: Repalcement of servlets in wicket.

2012-03-29 Thread Jeffrey Schneller
I would stop using 1.4.10 as it is very old at this point. If you are just starting out I would use 1.5.x where x is the latest revision. If you need to stay in the 1.4.x world then I would go with 1.4.20 which I think is the most current version. -Original Message- From: SudeepShakya

Re: StackOverflowError in session creation

2012-03-29 Thread vineet semwal
On Thu, Mar 29, 2012 at 10:49 PM, kshitiz wrote: > Hi, > > I am trying to save an object in a session like this: > > > public class Login extends BasePage { > >        private static final long serialVersionUID = 1L; >        UserDomain userDomain = new UserDomain(); > >    public Login() >    { >

Re: Atmosphere multi-request

2012-03-29 Thread Pierre Goupil
Good evening, Sorry for the lag, I missed this thread! The multi-request functionality of Atmosphere allows Comet channels and subscribing / pushing only in the right channel. There an example of Atmosphere / Wicket here: https://github.com/martin-g/wicket-atmosphere-tests Atmosphere is a Come

Re: AjaxPagingNavigator does not scroll to top

2012-03-29 Thread Andre Schütz
Thank you for the answer. Works perfectly. On Fri, 23 Mar 2012 15:18:22 +0200 Martin Grigorov wrote: > Hi, > > Yes, it is normal. This is left to the application to decide whether > it wants to scroll or not. > You can use ajaxRequestTarget.appendJavaScript("scrollTo(0. 0)") to > accomplish tha

Re: Atmosphere multi-request

2012-03-29 Thread Pierre Goupil
On Thu, Mar 29, 2012 at 11:04 PM, Pierre Goupil wrote: > > https://github.com/martin-g/wicket-atmosphere-tests lol I've just realized it is a project of yours!

RE: log4j.properties

2012-03-29 Thread JASON HOLT
Thanks for your help. I included the properties file in a separate jar. > From: toriv...@arrive.no > To: users@wicket.apache.org > Date: Thu, 29 Mar 2012 08:38:57 +0200 > Subject: RE: log4j.properties > > > Additionally you can put log4j.properties in its own jar and put it in > > $tomcat/lib.

AjaxRequestTarget.add(component) not replacing component, but duplicating it

2012-03-29 Thread Andrew Geery
I have a ListMultipleChoice component (Wicket 1.5.4) with a Behavior added to it to enable the use of the Chosen ( http://harvesthq.github.com/chosen/ ) JS library. Everything works fine until I attempt to add() the component to a page in an AjaxRequestTarget. Rather than replacing the component

RE: Repalcement of servlets in wicket.

2012-03-29 Thread SudeepShakya
Refer me a book for the latest version of wicket i will be using wicket 1.5.3 in netbeans.(latest netbeans wicket plugin.) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Repalcement-of-servlets-in-wicket-tp4514480p4518146.html Sent from the Users forum mailing list ar

Re: AjaxRequestTarget.add(component) not replacing component, but duplicating it

2012-03-29 Thread Martin Grigorov
Hi, Check what additional markup if generated by Chosen. It transforms to more complex HTML structure. Then you'll have more information what should be done to replace the whole thing, not just to provide new as what Wicket would do by default. I can also recommend you to take a look at http://

Re: Atmosphere multi-request

2012-03-29 Thread Martin Grigorov
Hi, On Thu, Mar 29, 2012 at 11:04 PM, Pierre Goupil wrote: > Good evening, > > Sorry for the lag, I missed this thread! > > The multi-request functionality of Atmosphere allows Comet channels and > subscribing / pushing only in the right channel. > > There an example of Atmosphere / Wicket here: