how to maintain session?
hi
i wish capturing the output of a jsp page into a html file....
using the code below
URL url =new URL("http://localhost:4263/webapplication/mail/web/login.jsp");
URLConnection con = url.openConnection();
InputStream in = con.getInputStream();
OutputStream out2 =new FileOutputStream("c:/file1.html");
.
.
//code...
the problem is the session for the requested url expires and desired output is not obtained
how to maintain it....

