cresc,

Make sure you do not have any broken links in your header section, like the one I had.

<link rel="shortcut icon" href="" type="images/x-icon" />

It is broken because there is a space in the rel=  part of it.

Also make sure you do not have empty image src <img src=""/> (per : Thomas Kappler )


You could also add a debug points to check if you are getting page reloads (This was my problem). So if you see the debug twice when there should only be one --- then you know the page is reloading.

        @Override
        protected void onBeforeRender() {
                log.debug("Page is being rendered:" + getPage());
                super.onBeforeRender();
        }

Good luck...

--
Eugene

On 02 Feb 2010, at 8:45 PM, cresc wrote:


I am sorry, I did not understand the solution. I searched for quickstart in
jira issue but found one link which says to use patch
https://issues.apache.org/jira/secure/attachment/12417508/WICKET-2404-1.4.patch

So I modified my html tag in homepage to
<html
xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd ">
But still not resovled..

Can you give me more details...

- cresc
--
View this message in context: 
http://old.nabble.com/component-....-not-found-on-page-tp27421536p27430297.html
Sent from the Wicket - User mailing list archive at Nabble.com.


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

Reply via email to