I have a java web application running on Websphere App Server and I want my users to download a file from another server at some certain point in my application.
For example when the user is at http://www.a.com, I want him to download http://www.b.com/file.txt without his interaction. I know that it is not possible via javascript because of CORS and so far, I could just think of Java applets.
Can you suggest me any other way to make my users download a file from another server without interaction? After he downloads the file, I am going to get this file to my own server(http://www.a.com)
Thank you