Re: [OT] applets in webapps

2007-10-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kristian, Kristian Rink wrote: > Unfortunately(?), the .jsp > is never called directly but rather forward()ed to from within a > servlet mapped to some specific URL. Are you trying to use relative URLs for your codebase? Try using a fully-qualified U

Re: [OT] applets in webapps

2007-10-09 Thread Kristian Rink
David; first off, thanks loads for your hints; much appreciated. :) Am Tue, 09 Oct 2007 05:54:16 -0400 schrieb David Smith <[EMAIL PROTECTED]>: > Let's say the servlet serving up your applet and resources is mapped > to /appletRes in your webapp. The jsp could then access > ${request.contextPa

Re: [OT] applets in webapps

2007-10-09 Thread David Smith
Keep in mind the applet is client side code and has to be available to the client. To that end have you thought about a companion servlet that accepts requests and returns applets and other resources? Then jsp code would just reference the mapped servlet in what it offers up to the client. L

[OT] applets in webapps

2007-10-09 Thread Kristian Rink
Folks, slightly OT: can someone provide me with a few good pointers and/or hints how to correctly integrate a Java applet into a JEE based web application? More specifically, my problem is something like that: I do have a .jsp containing code to show an applet. Both applet .class and some other