String sampId, Map ucdMap) throws IOException {
String name = "t" + sampId + _extension;
URL turl = JSkyServer.getInstance().addResource(name, createResource(table));
navigator.registerTable(turl, sampId);
if (_mtype.startsWith("spectrum")) {
return new Message(_mtype)
.addParam("url", turl.toString())
.addParam("id", sampId)
.addParam("meta", ucdMap);
} else {
return new Message(_mtype)
.addParam("url", turl.toString())
.addParam("table-id", sampId)
.addParam("name", label);
}
}