Hi all,
I have an appliction where the user needs to get the installation of an application upon authentication. i.e. the first step is user provides username and password. The
servlet authenticates the user. for a valid user, a certain application is to installed on user's desktop. How can make a servlet to do that. I can always send the file in response's output stream. However, that helps to get the 'file download' dialog box on the browser, where user can either save / open the file. Howvever, i want to skip this step. I want to start the installation process immediately after the authentication.
how can i do that?