Re: Component repository up and running, with plexus-utils submitted
Mike Hogan <[email protected]>
| Newsgroups | gmane.comp.java.jcontainer.interest |
|---|---|
| Message-ID | <[email protected]> |
Peter,
> > Check out the todo list in CVS.
>
> Looks good. Haven't really got time atm to go into it deep. Will try to
> have a
> look on weekend. One thing I noticed was that the download URLs should name
>
> the artifact downloaded. My brownser named them things like 1, 2, 3 etc and
> I
> had to guessa that the download was a zip.
>
> It should not be too hard to add this - even if it is just as
> (EXTRA_?)PATH_INFO or whatever it is.
Agree. The path info trick was not working for me due to what I took to be a
bug in the tomcat version I was using. But since then I have been talking to
the HTTP guru here in work and he told me I need to set the
"Content-disposition" header. My my, never knew about that:
response.setHeader("Content-Disposition", "attachment; filename=plexus-0.7.jar");
Thanks,
Mike.