public Server(Object app, String port, Fetcher tpl, Fetcher pubfiles) {
this(app, port, tpl, pubfiles, null);
}
public Server(Object app, String port, URL tpl, URL pubfiles) {
this(app, port, new TractURLFetcher(tpl), new BytesURLFetcher(pubfiles));
}