01: /******************************************************************************
02: * LZGetMethod.java
03: * ****************************************************************************/package org.openlaszlo.utils;
04:
05: import org.apache.commons.httpclient.HttpState;
06: import org.apache.commons.httpclient.HttpConnection;
07: import org.apache.commons.httpclient.methods.GetMethod;
08:
09: /**
10: * Special get method that overrides the unfortunate cookie processing in the
11: * httpclient 2.0-rc1 library.
12: */
13: public class LZGetMethod extends GetMethod {
14: protected void addCookieRequestHeader(HttpState s, HttpConnection c) {
15:
16: }
17:
18: protected void processResponseHeaders(HttpState state,
19: HttpConnection conn) {
20: }
21: }
|