[jUploadr-1.1.2-linuxGTK-i386.tar.gz]
I get a lot of warnings on console uploading to FlickR:
Starting JUploadr...
Java exec found in PATH. Verifying...
Suitable java version found [java = 1.6.0_03]
Configuring environment...
Mar 18, 2008 1:59:31 PM org.apache.commons.httpclient.HttpMethodBase processResponseHeaders
WARNING: Cookie rejected: "$Version=0; cookie_l10n=en-us%3Bus; $Domain=flickr.com; $Path=/". Domain attribute "flickr.com" violates RFC 2109: domain must start with a dot
Mar 18, 2008 1:59:31 PM org.apache.commons.httpclient.HttpMethodBase processResponseHeaders
WARNING: Cookie rejected: "$Version=0; cookie_intl=deleted; $Domain=flickr.com; $Path=/". Domain attribute "flickr.com" violates RFC 2109: domain must start with a dot
Mar 18, 2008 1:59:31 PM org.apache.commons.httpclient.HttpMethodBase processResponseHeaders
WARNING: Cookie rejected: "$Version=0; use_master_until=1205863149; $Domain=flickr.com; $Path=/". Domain attribute "flickr.com" violates RFC 2109: domain must start with a dot
[repeated for each photo]
I realize this is a very old bug, but I came across similar behavior in FlickrDownload. In my situation, the cookies are irrelevant, and I was able to suppress the warning by applying
CookiePolicy.IGNORE_COOKIESto the HttpMethod's HttpClientParams, something like:method.getParams().setCookiePolicy(CookiePolicy.IGNORE_COOKIES);