pfrank71
02-01-2005, 07:52 AM
Hi,
i would like to programm a little java applet which signs me into ebay automatically and gives me the option to run search querys.
I can start search queries without any problems by :
String URLquery = "http://www.ebay.com....";
URL url = new URL(URLquery);
InputStream in = url.openStream();
while ( in.read(b) != -1) {
htmlSource = htmlSource + new String(b);
}
But now i have got the problem that when i want to search for completed auctions i have to sign in.
Now here is my question: Is it possible for me to sign into ebay through an url query from java.
What about cookies. The Sign In info is usually stored in a cookie. So how can i catch/save/use the cookie..
thanks a lot
peter
i would like to programm a little java applet which signs me into ebay automatically and gives me the option to run search querys.
I can start search queries without any problems by :
String URLquery = "http://www.ebay.com....";
URL url = new URL(URLquery);
InputStream in = url.openStream();
while ( in.read(b) != -1) {
htmlSource = htmlSource + new String(b);
}
But now i have got the problem that when i want to search for completed auctions i have to sign in.
Now here is my question: Is it possible for me to sign into ebay through an url query from java.
What about cookies. The Sign In info is usually stored in a cookie. So how can i catch/save/use the cookie..
thanks a lot
peter