if ("timeout".equalsIgnoreCase(key)) {
timeout = queueSize * 1000;
continue;
}
if ("ows.global".equalsIgnoreCase(key)) {
controller = new GlobalFlowController(queueSize);
} else if ("ows".equals(keys[0])) {
// todo: check, if possible, if the service, method and output format actually exist
if (keys.length >= 4) {
controller = new BasicOWSController(keys[1], keys[2], keys[3], queueSize);
} else if (keys.length == 3) {