[Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Ballist1c
Hey Guys, I am a big Wicket n00b face... and I have been working on a pre-configured project which has been going fine. But at the moment I am trying to start up a fresh wicket project, so I thought I would start with the infamous 'Hello world' and it compiles and loads up in Netbeans using the

Re: [Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Frank Bille
Sounds like some misconfiguration in your web.xml. Can you please share it? Frank On 6/19/07, Ballist1c [EMAIL PROTECTED] wrote: Hey Guys, I am a big Wicket n00b face... and I have been working on a pre-configured project which has been going fine. But at the moment I am trying to start

Re: [Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Ballist1c
This is the xml, it seems to all be correct, i even recreated the project in netbeans with the packages to match this XML and i still get that annoying 'not available' error. ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN

Re: [Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Igor Vaynberg
and what page is firefox trying to access? are you hitting /context/app or jsut /context? because the servlet is mapped to /app/* -igor On 6/19/07, Ballist1c [EMAIL PROTECTED] wrote: This is the xml, it seems to all be correct, i even recreated the project in netbeans with the packages to

Re: [Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Ballist1c
yeah the address is http://localhost:8084/HelloWorld/app/ http://localhost:8084/HelloWorld/app and i tried http://localhost:8084/HelloWorld/ just for shits and giggles... but no dice on any of them... the apache error is type Status report message Servlet HelloWorldApplication is not

Re: [Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Eelco Hillenius
It's probably a classpath problem. Can you look at the tomcat logs (look at the files, not the console per se)? Eelco On 6/19/07, Ballist1c [EMAIL PROTECTED] wrote: yeah the address is http://localhost:8084/HelloWorld/app/ http://localhost:8084/HelloWorld/app and i tried

Re: [Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Ballist1c
Well here is my predicament... i have an existing wicket project that i have put into my Netbeans and that compiles and deploys like a dream... to a different directory of course... But yhea i have created a new project jsut to see... and i never expected HELLO world to kick my ass soo

Re: [Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Eelco Hillenius
On 6/19/07, Ballist1c [EMAIL PROTECTED] wrote: Well here is my predicament... i have an existing wicket project that i have put into my Netbeans and that compiles and deploys like a dream... to a different directory of course... But yhea i have created a new project jsut to see... and i

Re: [Wicket-user] HTTP Status 404 Error!!

2007-06-19 Thread Ballist1c
I figured it out, thanks for your help guys, I was missing couple of the runtime libraries that Wicket requires, so it compiles fine, and tomcat tries to deploy... but when it brings up the page, it cant be exectued. :( but i fixed it by including slf4j-api-1.3.1 and slf4j-simple-1.3.1 hahah