java - Creating a sesame repository from eclipse connecting to the http server -
i can connect localhost:8080/openrdf-sesame/
, create new repository sesame console. using tomcat server fine that. can connect localhost:8080/openrdf-workbench/
, display/delete repositories
but when type localhost:8080/openrdf-sesame/
browser, getting error. why? can't access existing repository eclipse giving localhost:8080/openrdf-sesame/
httprepository
. import rdf jar's project no problem 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' existing in repository. can see workbench.
the eclipse says millions(!) of lines error type:
... 15:18:51.843 [main] debug o.a.commons.httpclient.httpclient - operating system version: 3.5.0-23-generic ...
Comments
Post a Comment