以文本方式查看主题

-  中文XML论坛 - 专业的XML技术讨论区  (http://bbs.xml.org.cn/index.asp)
--  『 Web Services & Semantic Web Services 』  (http://bbs.xml.org.cn/list.asp?boardid=10)
----  利用JENA查询远程SPARQL endpoint 出错  (http://bbs.xml.org.cn/dispbbs.asp?boardid=10&rootid=&id=126807)


--  作者:jiangeb
--  发布时间:7/31/2013 12:45:00 PM

--  利用JENA查询远程SPARQL endpoint 出错
通过JENA API 访问远程SPARQL endpoint 提示出错

String query=
"PREFIX foaf: <http://xmlns.com/foaf/0.1/>" +
"PREFIX owl: <http://www.w3.org/2002/07/owl#>" +
"SELECT ?s ?p ?o WHERE { ?s ?p ?o } LIMIT 10";

Query query1 = QueryFactory.create(query);
QueryExecution qexec = QueryExecutionFactory.sparqlService("http://server/snorql/", query1);
try {
       ResultSet results = qexec.execSelect();
    }
finally {
     qexec.close();
        }

错误信息为:

xception in thread "main" com.hp.hpl.jena.query.QueryException: Endpoint returned Content-Type: text/html which is not currently supported for SELECT queries

请问我该如何处理


W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
29.297ms