I have a problem while querying dbpedia whith the Jena framework. The query is quit simple. And I am sure that the URIs http://dbpedia.org/resource/Harbin_Institute_of_Technology and http://dbpedia.org/resource/Harbin_Institute_of_Technology used in the code are correct. But I used a proxy to connect the internet. Here's the code:

import java.util.Properties;
import com.hp.hpl.jena.query.Query;
import com.hp.hpl.jena.query.QueryExecution;
import com.hp.hpl.jena.query.QueryExecutionFactory;
import com.hp.hpl.jena.query.QueryFactory;
import com.hp.hpl.jena.query.QuerySolution;
import com.hp.hpl.jena.query.ResultSet;
import com.hp.hpl.jena.rdf.model.RDFNode;
import com.hp.hpl.jena.sparql.resultset.ResultsFormat;
import com.hp.hpl.jena.sparql.util.QueryExecUtils;

public class SPARQL {
public static void main(String[] args) {

  String strProxy="xx.xx.xx.xx"; 
  String strPort="8080"; 
  Properties systemProperties = System.getProperties(); 
  systemProperties.setProperty("http.proxyHost",strProxy); 
  systemProperties.setProperty("http.proxyPort",strPort); 

  String qString =" SELECT DISTINCT * WHERE { <http://dbpedia.org/resource/Harbin_Institute_of_Technology> ?p ?o }";
  System.out.println(qString) ;

  Query query = QueryFactory.create(qString);
  QueryExecution qexec = QueryExecutionFactory.sparqlService("http://dbpedia.org/sparql", query);
  ResultSet rs = null;

  rs = qexec.execSelect();;
  while(rs.hasNext()) {
      QuerySolution sqs = rs.next();
      RDFNode node = sqs.get("p");
      System.out.print(node + "     ");
      System.out.println(sqs.get("o"));
  }
  qexec.close();
}
}

But I always get the Exceptions:

SELECT DISTINCT * WHERE { <http://dbpedia.org/resource/Harbin_Institute_of_Technology> ?p ?o }

Exception in thread "main" HttpException: HttpException: 502 Bad Gateway: HttpException: 502 Bad Gateway

at com.hp.hpl.jena.sparql.engine.http.HttpQuery.execCommon(HttpQuery.java:340)

at com.hp.hpl.jena.sparql.engine.http.HttpQuery.execGet(HttpQuery.java:190)

at com.hp.hpl.jena.sparql.engine.http.HttpQuery.exec(HttpQuery.java:147)

at com.hp.hpl.jena.sparql.engine.http.QueryEngineHTTP.execSelect(QueryEngineHTTP.java:117)

at SPARQL.main(SPARQL.java:30)

Caused by: HttpException: ***502 Bad Gateway***

at com.hp.hpl.jena.sparql.engine.http.HttpQuery.execCommon(HttpQuery.java:301)

... 4 more
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.