org.archive.httpclient |
org.archive.httpclient package
Provides specializations on
apache jakarta
commons httpclient.
HttpRecorderGetMethod
Class that the passed HttpRecorder w/ boundary between
HTTP header and content. Also forces a close on the response on
call to releaseConnection.
ConfigurableTrustManagerProtocolSocketFactory
A protocol socket factory that allows setting of trust level on
construction.
References
JavaTM Secure Socket Extension (JSSE): Reference Guide
|
Java Source File Name | Type | Comment |
ConfigurableX509TrustManager.java | Class | A configurable trust manager built on X509TrustManager.
If set to 'open' trust, the default, will get us into sites for whom we do
not have the CA or any of intermediary CAs that go to make up the cert chain
of trust. |
HttpRecorderGetMethod.java | Class | Override of GetMethod that marks the passed HttpRecorder w/ the transition
from HTTP head to body and that forces a close on the http connection.
The actions done in this subclass used to be done by copying
org.apache.commons.HttpMethodBase, overlaying our version in place of the
one that came w/ httpclient. |
HttpRecorderMethod.java | Class | This class encapsulates the specializations supplied by the
overrides
HttpRecorderGetMethod and
HttpRecorderPostMethod . |
HttpRecorderPostMethod.java | Class | Override of PostMethod that marks the passed HttpRecorder w/ the transition
from HTTP head to body and that forces a close on the responseConnection.
This is a copy of
HttpRecorderGetMethod . |
SingleHttpConnectionManager.java | Class | An HttpClient-compatible HttpConnection "manager" that actually
just gives out a new connection each time -- skipping the overhead
of connection management, since we already throttle our crawler
with external mechanisms. |
ThreadLocalHttpConnectionManager.java | Class | A simple, but thread-safe HttpClient
HttpConnectionManager . |