Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

!!!!!SOS!!!!! Cookies problem Trying to login in MSN

Status
Not open for further replies.

bkhajuri

Programmer
Oct 3, 2000
1
CA
I am writing a java client application to login to hotmail. I am using JDK1.2.2 along with JSSE1.0.1. After seting the correct url and collecting the cookie information from "Set-Cookie" header i send the cookie information with userid and password with HttpsURLConnection. When i read the input stream it gives me the login page .... I AM TOTALLY CONFUSED.... I am attaching the code below. ANY HELP WOULD BE GREATLY APPRECIATED.....

import java.io.*;

import java.util.*;
import java.net.*;
import java.text.*;

import java.security.*;

import com.sun.net.ssl.*;
import java.text.SimpleDateFormat;
import java.security.Security.*;
import com.sun.*;
import javax.net.ssl.*;
import javax.security.cert.*;
import javax.net.*;



public class WebPIM
{
public static void main(String[] args)
{
try{
String Location = null;
String Cookie_val ="";


System.out.println("Hi");
URL u = new URL("
HttpURLConnection connection = (HttpURLConnection)u.openConnection();
connection.setFollowRedirects(false);
connection.setRequestProperty("Connection","Keep-Alive");
connection.setRequestProperty("Cache-Control","cache");
connection.setRequestProperty("User-Agent","Mozilla/4.0(compatible;MSIE 4.0;windows 98)");

Location = connection.getHeaderField("Location");
System.out.println("Location : "+Location);

for(int i=0; i<200;i++)
{
if(connection.getHeaderFieldKey(i)!=null)
{
System.out.println(&quot;1st Header: &quot;+connection.getHeaderFieldKey(i));
System.out.print(&quot; &quot;+connection.getHeaderField(i));
if(connection.getHeaderFieldKey(i).equals(&quot;Set-Cookie&quot;))
{
Cookie_val = Cookie_val + connection.getHeaderField(i) + &quot;, &quot;;
}
}
}

System.out.println(&quot;Location1 : &quot;+Location);
while(Location!=null)
{
u = new URL(Location);

System.out.println(&quot;In Location!=null Location1 : &quot;+Location);

connection = (HttpURLConnection)u.openConnection();
connection.setRequestProperty(&quot;Cookie&quot;,Cookie_val);

connection.setDoOutput(true);
Location = connection.getHeaderField(&quot;Location&quot;);
if(Location==null)
Location = connection.getHeaderField(&quot;Location:&quot;);

//Find Cookie Value from new Location
for(int i=0; i<200;i++)
{
if(connection.getHeaderFieldKey(i)!=null)
{
System.out.println(&quot;2nd Header : &quot;+connection.getHeaderFieldKey(i));
if(connection.getHeaderFieldKey(i).equals(&quot;Set-Cookie&quot;))
{
Cookie_val = Cookie_val + connection.getHeaderField(i) + &quot;, &quot;;
}
else if(connection.getHeaderFieldKey(i).equals(&quot;Cache-control&quot;))
System.out.println(&quot;Cahe Control &quot; + connection.getHeaderField(i).equals(&quot;Cache-control&quot;));
}
}

}

System.getProperties().put(&quot;java.protocol.handler.pkgs&quot;,&quot;com.sun.net.ssl.internal. System.out.println(&quot;Cookie from previous Request : &quot; +Cookie_val);

// add the default security provider (again, in JSSE1.0.1
Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());


System.out.println(&quot;Before HTTPS : &quot;);

u = new URL(&quot; com.sun.net.ssl.HttpsURLConnection httpsconnection = (com.sun.net.ssl.HttpsURLConnection) u.openConnection();
System.out.println(&quot;After HTTPS : &quot;);
httpsconnection.setRequestProperty(&quot;Cookie&quot;,Cookie_val);
httpsconnection.setRequestProperty(&quot;Connection&quot;,&quot;Keep-Alive&quot;);
httpsconnection.setRequestProperty(&quot;User-Agent&quot;,&quot;Mozilla/4.0(compatible;MSIE 4.0;windows 98)&quot;);
httpsconnection.setRequestProperty(&quot;Cache-Control&quot;,&quot;cache&quot;);
httpsconnection.setFollowRedirects(false);
httpsconnection.setRequestMethod(&quot;POST&quot;);


httpsconnection.setDoOutput(true);

PrintWriter out = new PrintWriter(httpsconnection.getOutputStream());

out.print(&quot;login&quot; + &quot;=&quot; + URLEncoder.encode(&quot;bkhajuri52@hotmail.com&quot;) + &quot;&&quot;);
out.print(&quot;domain&quot; + &quot;=&quot; + URLEncoder.encode(&quot;hotmail.com&quot;) + &quot;&&quot;);
out.print(&quot;sec&quot; + &quot;=&quot; + URLEncoder.encode(&quot;&quot;) + &quot;&&quot;);
out.print(&quot;passwd&quot; + &quot;=&quot; + URLEncoder.encode(&quot;zainab1kha&quot;));
out.print(&quot;logintyped&quot; + &quot;=&quot; + URLEncoder.encode(&quot;&quot;) + &quot;&&quot;);
out.print(&quot;id&quot; + &quot;=&quot; + URLEncoder.encode(&quot;&quot;) + &quot;&&quot;);
out.print(&quot;seclog&quot; + &quot;=&quot; + URLEncoder.encode(&quot;0&quot;) + &quot;&&quot;);
out.print(&quot;ru&quot; + &quot;=&quot; + URLEncoder.encode(&quot;&quot;) + &quot;&&quot;);
out.print(&quot;tw&quot; + &quot;=&quot; + URLEncoder.encode(&quot;20&quot;) + &quot;&&quot;);
out.print(&quot;fs&quot; + &quot;=&quot; + URLEncoder.encode(&quot;0&quot;) + &quot;&&quot;);
out.print(&quot;kv&quot; + &quot;=&quot; + URLEncoder.encode(&quot;&quot;) + &quot;&&quot;);
out.print(&quot;cb&quot; + &quot;=&quot; + URLEncoder.encode(&quot;&quot;) + &quot;&&quot;);
out.print(&quot;cbid&quot; + &quot;=&quot; + URLEncoder.encode(&quot;&quot;) + &quot;&&quot;);
out.print(&quot;ts&quot; + &quot;=&quot; + URLEncoder.encode(&quot;0&quot;) + &quot;&&quot;);
out.print(&quot;da&quot; + &quot;=&quot; + URLEncoder.encode(&quot;passport.com&quot;) + &quot;&&quot;);
out.print(&quot;ns&quot; + &quot;=&quot; + URLEncoder.encode(&quot;&quot;) + &quot;&&quot;);
out.print(&quot;_lang&quot; + &quot;=&quot; + URLEncoder.encode(&quot;1033&quot;));


out.close();

for(int i=0; i<200;i++)
{
if(httpsconnection.getHeaderFieldKey(i)!=null)
{
System.out.println(&quot;2nd Header : &quot;+httpsconnection.getHeaderFieldKey(i));
System.out.println(&quot; &quot;+httpsconnection.getHeaderField(i));

if(httpsconnection.getHeaderFieldKey(i).equals(&quot;Set-Cookie&quot;))
{
Cookie_val = Cookie_val + httpsconnection.getHeaderField(i) + &quot;, &quot;;
}
}
}

System.out.println(&quot;NEW Cookie Value is : &quot; + Cookie_val);

BufferedReader in = new BufferedReader(new InputStreamReader(httpsconnection.getInputStream()));

String str;
while((str=in.readLine())!=null){
System.out.println(str);
}
}catch(Exception e){
System.out.println(e);
}
}
}



my email address is bkhajuri@yahoo.com [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top