I just wrote my first wicket example and deployed under tomcat 5.5.17
and get the below error:  please see my web.xml file configuration
below.  Any idea?

Error:   Error: Servlet /login threw load() exception 
wicket.WicketRuntimeException: servlet init param [applicationClassName]
is missing. If you are trying to use your own implementation of
IWebApplicationFactory and get this message then the servlet init param
[applicationFactoryClassName] is missing
at
wicket.protocol.http.ContextParamWebApplicationFactory.createApplication
(ContextParamWebApplicationFactory.java:44)





?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd";>
<web-app>
<display-name>Login Examples</display-name>
<servlet>
<servlet-name>LoginApplication</servlet-name>
<servlet-class>wicket.protocol.http.WicketServlet</servlet-class>
<init-param>
<param-name>applicationClassName</param-name>
<param-value>com.boeing.app.forms.LoginApplication</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>LoginApplication</servlet-name>
<url-pattern>/loginapp/*</url-pattern>
</servlet-mapping>
</web-app>

Thanks 

Patrick



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-announce mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-announce

Reply via email to