See: Description
| Interface | Description |
|---|---|
| HTTPRequest |
Interface for HTTP request implementations.
|
| HTTPResponseHandler | |
| SupportsIsStreamClosed |
| Class | Description |
|---|---|
| Base64Util |
Encodes and decodes to and from Base64 notation.
|
| Base64Util.InputStream |
A
Base64Util.InputStream will read data from another java.io.InputStream,
given in the constructor, and encode/decode to/from Base64 notation on the fly. |
| Base64Util.OutputStream |
A
Base64Util.OutputStream will write data to another java.io.OutputStream,
given in the constructor, and encode/decode to/from Base64 notation on the fly. |
| HTTPBinding |
HTTP binding to allows access to IP devices and services.
|
| HTTPBindingFactory | |
| HTTPChunkedOutputStream |
A nice chunked HTTP output stream.
|
| HTTPClient |
Client for asynchronous HTTP communication.
|
| HTTPClientDestination | |
| HTTPInputStream |
HTTP input stream wrapper.
|
| HTTPOutputStream |
HTTP stream which writes bytes for a given length.
|
| HTTPParameter |
The HTTPParameter class decodes the URI and creates a table with the parameters found in the HTTP
request.
|
| HTTPRequestUtil |
Utility class for handling HTTP requests.
|
| HTTPResponse | |
| HTTPResponseUtil |
Utility class for the easier creation of HTTP response messages.
|
| HTTPSBinding |
This Binding must be used for a secure service or a secure device.
|
| HTTPUtil |
HTTP support class.
|
| SecureHTTPBindingFactory | |
| SimpleHTTPClient |
Client for HTTP communication.
|
Implements two HTTP clients for synchronous/asynchronous HTTP communication.
Implements two HTTP clients, supporting synchronous HTTP Communication (SimpleHTTPClient) and
asynchronous communication (HTTPClient). HTTP Requests can be queued into the client
(HTTPRequest). Both requests and their response
requests will also be handled via HTTPRequest (and by HTTPRequestUtil. HTTP Responses will
be created via HTTPResponseUtil
and handled via HTTPResponseHandler. Requests will be sent as output streams
(ChunkedOutputStream), and responses
returned as input streams(chunked or not) (HTTPInputStream)