Re: Make webapp jars downloadable

2005-07-08 Thread Andrea Aime
Peter Crowther wrote: Tomcat explicitly prevents access from a client to any file under WEB-INF; Tomcat also insists on picking up its jars from WEB-INF/lib, and as far as I know it's not possible to change that. My suggestion would be to write a few lines of code that copy the jar files you ne

Re: Make webapp jars downloadable

2005-07-07 Thread Christoph Kutzinski
Write a Servlet that streams the JAR content to the Webstart clients and point to the servlet in the JNLP files. Andrea Aime wrote: Hi, I have the following problem: I'm deploying a web app that exposes web services and allows the client to install a web started client. Now, the client and t

RE: Make webapp jars downloadable

2005-07-07 Thread Peter Crowther
> From: Andrea Aime [mailto:[EMAIL PROTECTED] > Now, the client and the web application share a lot of jars, > so I would like > to make the jars in web-inf/lib downloadable, so that the web > start can access them. > > At the moment I've put the jars both in web-inf/lib and in the > root, but

Make webapp jars downloadable

2005-07-07 Thread Andrea Aime
Hi, I have the following problem: I'm deploying a web app that exposes web services and allows the client to install a web started client. Now, the client and the web application share a lot of jars, so I would like to make the jars in web-inf/lib downloadable, so that the web start can access