I can connect to localhost:8080/openrdf-sesame/
and create a new repository from Sesame console. I am using Tomcat server everything is fine about that. I can also connect to localhost:8080/openrdf-workbench/
and display/delete repositories
But when I type localhost:8080/openrdf-sesame/
to my browser, I am getting error. Why? So I can't access an existing repository from Eclipse simply giving localhost:8080/openrdf-sesame/
to HTTPRepository
. I import rdf jar's to the project so no problem about that
My java code:
String sesameServer = "http://localhost:8080/openrdf-sesame";
String repositoryID = "1001";
Repository repo = new HTTPRepository(sesameServer, repositoryID);
repo.initialize();
The repository id '1001' is really existing in the repository. I can see it from workbench.
The eclipse says millions(!) of lines that error type:
...
15:18:51.843 [main] DEBUG o.a.commons.httpclient.HttpClient - Operating system version: 3.5.0-23-generic
...