// maps woth parameters, values and their descriptions,
// as well as the current URL,
// and the additional descritpion specified in the previous method.
public String constructHtmlDescription(String servletURL) {
ServerSpec rspec = this.server.getServiceSpec();
String html = "<html>" + "<head>" + "<title>"
+ rspec.getShortDescription()
+ "</title>"
+ "</head>"
+ "<body>"
+ "<h2>"
+ rspec.getShortDescription()
+ "</h2>"
+ rspec.getLongDescription()
+ "<h3>Usage</h3>"
+ "In order to use this service, a POST- or GET-request should be sent to the server with the following URL:"
+ "<pre>"
+ servletURL
+ "</pre>"