(SF) Christi...
2 post(s)
|
Topic: JBidwatcher Help /
Patch to build.xml
Hi, when building JBidWatcher from source the com.stevesoft.pat classes were not included in the resulting JAR file. This patch to build.xml solves that.
diff u z:\dev\jbidwatcher-0.9\build.xml.orig z:\dev\jbidwatcher-0.9\build.xml
—z:\dev\jbidwatcher-0.9\build.xml.orig Wed Mar 26 15:18:22 2003 + z:\dev\jbidwatcher-0.9\build.xml Wed Mar 26 15:18:22 2003
@ -73,7 +73,7 @
<jar jarfile="${BINARY}" index="true" manifest="${MANIFEST}">
<fileset dir="${src.dir}" includes="<strong>.jpg” />
<fileset dir=">.class” /> + <fileset dir="${build.dir}" includes="<strong>*/</strong>.class” />
<fileset dir=">
</jar>
</target>
|
(SF) Christi...
2 post(s)
|
Topic: JBidwatcher Help /
Get My eBay items
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
|