User`s guide

2. Create a class that extends org.controlsfx.Dialog.
3. Create a default constructor that calls load() (see following)
Call the super constructor – eg. super(null, "My Dialog Title");
Set resizable(false).
Add actions:
getActions().add(Actions.OK);
getActions().add(Actions.CANCEL);
4. Create an FXML initialize() for the FXML
The load() method will load an FXML that contains the "content" area for the Dialog
private void load() {
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("fxml/Settings.fxml"));
fxmlLoader.setController(this);
try {
fxmlLoader.load();
setContent(fxmlLoader.getRoot());
} catch (Exception e) {
e.printStackTrace();
}
} // End of load()
Apache HTTP Server
The Apache HTTP server is an open source implementation of a Web Server. The home page for
the project can be found here:
http://httpd.apache.org/
Binaries of the product can be found here:
http://www.apachelounge.com/download/
Some of the core configuration options include:
ServerRoot – A directory path on the machine where httpd is installed which is the root
of the install.
Listen – The TCP/IP port number on which the server is listening.
DocumentRoot – A diretory path on the machine where httpd is installed which is the
root of the web hosted files.
See also:
Documentation – 2.4
Setting up a proxy
The httpd proxy is configured with the modules:
mod_proxy
mod_proxy_http
Edit the httpd.conf configuration file and remove the "#" comment marker from the start of the lines
which read:
Page 288