Присоединение куки, наконец, работает для меня! Я мог бы не сделать это самым простым способом, но по крайней мере это работает. Моим большим прорывом было скачивание и подключение исходных текстов для Android, чтобы я мог пройти и посмотреть, что происходит. Здесь есть инструкции http://blog.michael -forster.de / 2008/12 / view-android-source-code-in-eclipse.html - прокрутите вниз и прочитайте комментарий от Volure для самой простой загрузки. Я очень рекомендую делать это, если вы разрабатываете на Android.
Теперь о рабочем коде куки - большинство изменений было в коде, который фактически возвращает меня на мою веб-страницу - мне пришлось настроить COOKIE_STORE и COOKIESPEC_REGISTRY. Затем мне также пришлось изменить тип подключения, потому что код куки-файлов приводил его к ManagedClientConnection:
public static HttpResponse getMeAWebpage(String host_string, int port, String url)
throws Exception {
HttpParams params = new BasicHttpParams();
HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
HttpProtocolParams.setContentCharset(params, "UTF-8");
HttpProtocolParams.setUserAgent(params, "HttpComponents/1.1");
HttpProtocolParams.setUseExpectContinue(params, true);
//params.setParameter("cookie", cookie);
BasicHttpProcessor httpproc = new BasicHttpProcessor();
// Required protocol interceptors
httpproc.addInterceptor(new RequestContent());
httpproc.addInterceptor(new RequestTargetHost());
// Recommended protocol interceptors
httpproc.addInterceptor(new RequestConnControl());
httpproc.addInterceptor(new RequestUserAgent());
httpproc.addInterceptor(new RequestExpectContinue());
httpproc.addInterceptor(new RequestAddCookies());
HttpRequestExecutor httpexecutor = new HttpRequestExecutor();
HttpContext context = new BasicHttpContext(null);
// HttpHost host = new HttpHost("www.svd.se", 80);
HttpHost host = new HttpHost(host_string, port);
HttpRoute route = new HttpRoute(host, null, false);
// Create and initialize scheme registry
SchemeRegistry schemeRegistry = new SchemeRegistry();
schemeRegistry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
schemeRegistry.register(new Scheme("https", SSLSocketFactory.getSocketFactory(), 443));
SingleClientConnManager conn_mgr = new SingleClientConnManager(params, schemeRegistry);
ManagedClientConnection conn = conn_mgr.getConnection(route, null /*state*/);
ConnectionReuseStrategy connStrategy = new DefaultConnectionReuseStrategy();
context.setAttribute(ExecutionContext.HTTP_CONNECTION, conn);
context.setAttribute(ExecutionContext.HTTP_TARGET_HOST, host);
CookieStore cookie_store = new BasicCookieStore();
cookie_store.addCookie(cookie);
context.setAttribute(ClientContext.COOKIE_STORE, cookie_store);
// not sure if I need to add all these specs, but may as well
CookieSpecRegistry cookie_spec_registry = new CookieSpecRegistry();
cookie_spec_registry.register(
CookiePolicy.BEST_MATCH,
new BestMatchSpecFactory());
cookie_spec_registry.register(
CookiePolicy.BROWSER_COMPATIBILITY,
new BrowserCompatSpecFactory());
cookie_spec_registry.register(
CookiePolicy.NETSCAPE,
new NetscapeDraftSpecFactory());
cookie_spec_registry.register(
CookiePolicy.RFC_2109,
new RFC2109SpecFactory());
cookie_spec_registry.register(
CookiePolicy.RFC_2965,
new RFC2965SpecFactory());
//cookie_spec_registry.register(
// CookiePolicy.IGNORE_COOKIES,
// new IgnoreSpecFactory());
context.setAttribute(ClientContext.COOKIESPEC_REGISTRY, cookie_spec_registry);
HttpResponse response = null;
try {
if (!conn.isOpen()) {
conn.open(route, context, params);
}
BasicHttpRequest request = new BasicHttpRequest("GET", url);
System.out.println(">> Request URI: "
+ request.getRequestLine().getUri());
System.out.println(">> Request: "
+ request.getRequestLine());
request.setParams(params);
httpexecutor.preProcess(request, httpproc, context);
response = httpexecutor.execute(request, conn, context);
response.setParams(params);
httpexecutor.postProcess(response, httpproc, context);
String ret = EntityUtils.toString(response.getEntity());
System.out.println("<< Response: " + response.getStatusLine());
System.out.println(ret);
System.out.println("==============");
if (!connStrategy.keepAlive(response, context)) {
conn.close();
} else {
System.out.println("Connection kept alive...");
}
} catch(UnknownHostException e) {
System.out.println("UnknownHostException");
} catch (HttpException e) {
System.out.println("HttpException");
} finally {
conn.close();
}
return response;
}
Мой код для настройки моих файлов cookie находится в том же классе, что и getMeAWebpage (), выглядит так:
public static void SetCookie(String auth_cookie, String domain)
{
String[] cookie_bits = auth_cookie.split("=");
cookie = new BasicClientCookie(cookie_bits[0], cookie_bits[1]);
cookie.setDomain(domain); // domain must not have 'http://' on the front
cookie.setComment("put a comment here if you like describing your cookie");
//cookie.setPath("/blah"); I don't need to set the path - I want the cookie to apply to everything in my domain
//cookie.setVersion(1); I don't set the version so that I get less strict checking for cookie matches and am more likely to actually get the cookie into the header! Might want to play with this when you've got it working...
}
Я действительно надеюсь, что это поможет, если у вас возникнут похожие проблемы - я чувствую, что пару недель бился головой о стену! Теперь за заслуженную праздничную чашку чая: о)