Hi,
getting auctions from My eBay was not working for me in
JBidWatcher 0.9. After a little debugging I came up with a
patch to CookieJar.java that solved the problem for me:
diff u z:\dev\jbidwatcher-0.9\CookieJar.java.orig z:\dev\jbidwatcher-0.9\CookieJar.java
-- z:\dev\jbidwatcher-0.9\CookieJar.java.orig Wed Mar 26 15:06:54 2003
+ z:\dev\jbidwatcher-0.9\CookieJar.java Wed Mar 26 15:06:54 2003
@ -108,7 +108,7 @
return getAllCookiesFromPage(redirect);
}
- if(nextKey.startsWith(“Set-Cookie”)) {
+ if(nextKey.startsWith(“Set-cookie”)) {
newCookie = new Cookie(uc.getHeaderField(i));
_cookies.put(newCookie.getKey(), newCookie);
}
Cheers,
Christian
|