| Interface | Description |
|---|---|
| HttpService |
An interface for actors that handle HTTP requests.
|
| Class | Description |
|---|---|
| HTMLModelExporter |
A subclass of ModelReference that produces on its output an HTML page for the contained model.
|
| HttpActor |
An actor that handles an HTTP request by producing output
and waiting for an input that provides a response.
|
| HttpActor.HttpRequestItems |
A data structure with all the relevant information about an
HTTP request.
|
| HttpActor.HttpResponseItems |
A data structure with all the relevant information about an
HTTP response.
|
| HttpGet |
Get the contents of the specified URL and output as a string.
|
| HttpPost |
Post the contents of input record to a specified URL.
|
| HttpPut |
Take the input string, wrap it into a HTTP message, and send it
to the server associated with the given URL.
|
| HttpRequest |
An object representation of an HTTP request.
|
| HttpResponse |
An HTTP response, comprised of selected fields from an HttpURLConnection.
|
| RecordToQueryString |
Convert an input record to a URL-encoded query string.
|
| WebApplicationInfo |
Information for a web application running on a web server.
|
| WebServer |
An attribute that runs a Jetty web server and routes incoming
HTTP requests to objects in the model that implement
HttpService. |
| WebServerManager |
A manager for creating and managing instances of a Jetty web server.
|
| WebServerUtilities |
A web server and information about the applications registered to it.
|
| Enum | Description |
|---|---|
| HttpRequest.Method |
Enumeration of possible HTTP request methods.
|
| HttpResponse.ErrorSource |
Enumeration of possible sources of response errors, or none if none.
|