Application for Iphone | ServletException | MobileApplicationServlet

I am trying to create an application for the iphone. i just follewed the instruction in:
http://vaadin.com/wiki/-/wiki/Main/Vaadin%20TouchKit%20-%20Create%20iPhone%20applications%20using%20Vaadin;jsessionid=6FAAFE0176A483F79133CACCF2F3F73E

but if i change the servlet in my web.xml to

<servlet-name>ffl-iphone</servlet-name>
		<servlet-class>org.vaadin.touchkit.mobileapplication.MobileApplicationServlet</servlet-class>

i get the following error:

can anybody help me??

thanks in advance!!

=====================================================================================
HTTP Status 500 -

type Exception report

message

description The server encountered an internal error () that prevented it from fulfilling this request.

exception

javax.servlet.ServletException: Wrapper cannot find servlet class org.vaadin.touchkit.mobileapplication.MobileApplicationServlet or a class it depends on
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:852)
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
java.lang.Thread.run(Thread.java:619)

root cause

java.lang.ClassNotFoundException: org.vaadin.touchkit.mobileapplication.MobileApplicationServlet
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1516)
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1361)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:852)
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
java.lang.Thread.run(Thread.java:619)

note The full stack trace of the root cause is available in the Apache Tomcat/6.0.26 logs.

ok i found now the mistake by myself:

in web.xml should be:

		<servlet-class>com.vaadin.touchkit.mobileapplication.MobileApplicationServlet</servlet-class>

not like in the doku mentionied

		<servlet-class>org.vaadin.touchkit.mobileapplication.MobileApplicationServlet</servlet-class>

!!

Thank you for noticing this, the package name on the wiki page should be correct now.