Re: Initiating File Download through Ajax is not working

2010-12-04 Thread val360
Yes it does, it's .fp7 Which is not an extension web server would recognize, could that be the issue? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Initiating-File-Download-through-Ajax-is-not-working-tp2289784p3072514.html Sent from the Users forum mailing list

Re: Initiating File Download through Ajax is not working

2010-12-03 Thread val360
Hi It's mostly working for me as well, except that the downloaded file has .html appended to it's name. Any hints? -Val -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Initiating-File-Download-through-Ajax-is-not-working-tp2289784p3071504.html Sent from the Users

Re: Initiating File Download through Ajax is not working

2010-12-03 Thread val360
final AJAXDownload download = new AJAXDownload() { @Override protected IResourceStream getResourceStream() { return new FileResourceStream(theDatabase.getFile()); } @Override protected String getFileName() { return theDatabase.getFile().getAbsoluteFile().getName();