Sorry my day to ask questions.:-D
If my WicketFilter is setup as:
<filter-mapping>
<filter-name>WicketFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
My Applet works fine.
<applet name="jumpLoaderApplet"
code="jmaster.jumploader.app.JumpLoaderApplet.class"
archive="applet/jumploader_z.jar"
width="600"
height="400"
mayscript>
</applet>
If I change it to:
<filter-mapping>
<filter-name>WicketFilter</filter-name>
<url-pattern>/app/*</url-pattern>
</filter-mapping>
I can't seem to figure a way to access the applet.
archive="applet/jumploader_z.jar"
archive="app/applet/jumploader_z.jar"
archive="/app/applet/jumploader_z.jar"
don't work.
If I leave the WicketFilter as "<url-pattern>/*</url-pattern>" then I can't
call my servlet because it is mapped as:
<servlet-mapping>
<servlet-name>UploadServlet</servlet-name>
<url-pattern>/servlet/*</url-pattern>
</servlet-mapping>
I'm I accessing the applet incorrectly?
Thanks in advance.
--
View this message in context:
http://www.nabble.com/applet-web.xml-mapping-tp21689586p21689586.html
Sent from the Wicket - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]