DatasetGraph dsg = action.getActiveDSG() ;
// This should not be anythign other than the datasets name via this route.
String name = action.request.getRequestURL().toString() ;
//log.info(format("[%d] ** Content-length: %d", action.id, action.request.getContentLength())) ;
Graph g = dsg.getDefaultGraph() ;
StreamRDF dest = StreamRDFLib.graph(g) ;
LangRIOT parser = RiotReader.createParser(action.request.getInputStream(), lang, name , dest) ;
parser.parse() ;
action.commit();
success(action) ;
} catch (IOException ex) { action.abort() ; }