Hi Greg, > Seems like that might be over-designed. I would suggest keeping it simple > for now and seeing how it goes. Ok, but only a simple thing: at least for the "Kitchen Sink", I'm thinking at 2 Web Start buttons, one using signed jars, and maybe also a second (only here) using not-signed jars, to show users what kind on differences they could have ... Ok ? And maybe also here a version loading the custom colors file (signed), Ok ?
>> Ok, but I fear if i have to map this extension to a Servlet (the JSP >> Compiler) that could not exist on others applications server ... > > I had assumed that there was a way to do this in an app server-independent > way...anyone else have any insight? Take a look here: http://www.jguru.com/faq/view.jsp?EID=254460 I fear problems with MIME Types ... but I've tried and no problems found. For Jetty, I've seen that the jsp compiler (servlet) is that of Tomcat, see here: http://docs.codehaus.org/display/JETTY/webdefault.xml Ok, I've just tried and adding this to our webapps: <servlet-mapping> <servlet-name>jsp</servlet-name> <url-pattern>*.jnlp</url-pattern> </servlet-mapping> make it working on Tomcat and Jetty, I've just tried on Tomcat 6.0.20 and Jetty 6.1.14 . In other application servers could be different ... but relying on the mapped jsp servlet could solve problems. What do you think ? Proceed this way ? Bye
