Thanks Damian. This works as expected at the command line:
./s-query --service http://mydomain.com:3030/dataset/query 'SELECT *
WHERE {?s ?p ?o .}'
but when I try it in a web UI SPARQL query:
SELECT * WHERE {?s ?p ?o .}
and Endpoint URL:
http://mydomain.com:3030/dataset/query
I get an error from the interface: "Remote SPARQL endpoint returned
error: /Error 400: SPARQL Query: Unrecognize request parameter: endpoint
Fuseki - version 0.2.0-SNAPSHOT (Date: 2011-03-06T12:24:37-0500)"
and from the Fuseki server: "18:57:31 INFO Fuseki :: [8] 400 SPARQL
Query: Unrecognize request parameter: endpoint"
This SPARQL query interface is in Drupal6, and I've used it successfully
with other endpoints.
thanks for your help...
/
On 3/7/11 4:09 PM, Damian Steer wrote:
On 7 Mar 2011, at 21:05, judy wrote:
Sorry for the basic question, I'm new to SPARQL servers.
I'm having trouble connecting to my fuseki server as a public endpoint -- I'm
sure I'm not using the correct endpoint/default graph URLs.
...
Fuseki starts: ./fuseki-server --desc tdb2.ttl /dataset
Get gets: ./s-get --verbose http://mydomain.com:3030/dataset/data default
Given these defaults, how can I use a query to connect to my fuseki server as a
(remote) public endpoint?
For query the endpoint will be:
<http://mydomain.com:3030/dataset/query>
(e.g. try using that at the service for ./s-query)
Damian