[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
https login page
Hello all,
Thanks to everyone for their replies to my last question. I did end
up using the following code for it.
URL url = new URL("https://someWebSite.com/giveXML.jsp?someparam=paramOne");
InputStreamReader isr = new InputStreamReader(url.openStream());
BufferedReader br = new BufferedReader(isr);
Then read the xml file one line at a time.
For my current question, I need to have my login.html page be https so
that the POSTing of the form will not be sent plain text to the servlet.
I am using WebSphere 5 for this.
Anyone give me a start on this?
Thanks,
-Jason