Downloading a .sis file through JSP
Hi guys,
I have .sis file on my server. and i want to install it on a cell without giving a link access to my user. I am sending my link in the following format.
if(rs.next())
{
url= rs.getString(1);
}
response.setContentType("application/vnd.symbian.install");
response.sendRedirect(url);
(I am retrieving my .sis file url from database)
but i m not able to do it, I am getting a null pointer exception.
is there any modofications that i have to make in my code. please tell me how to do this.
with regards,
shirish.
(new to java development. if there is any logical mistake, try to help me out.)

