Without seeing your configuration it is hard to say
Most likely the data is not in the default graph, try the following query
which will show you all the data including the graph it is in:
SELECT *
WHERE
{
{ ?s ?p ?o }
UNION
{ GRAPH ?g { ?s ?p ?o } }
}
Rob
p.s. this is a subscription based list and your messages so far have been
manually moderated through, please subscribe at
https://lists.sourceforge.net/lists/listinfo/dotnetrdf-support if you wish
to continue asking questions
From: Marija Vasileska <mar...@gm...>
Reply-To: dotNetRDF User Help and Support
<dot...@li...>
Date: Friday, 18 September 2015 13:58
To: <dot...@li...>
Subject: [dotNetRDF-Support] Sparql endpoint
> Hi,
>
> Can you please help me in resolving my issue.
>
> I have created SPARQL Endpoint following the guidelines on this link:
> https://bitbucket.org/dotnetrdf/dotnetrdf/wiki/UserGuide/ASP/Deploying%20with%
> 20rdfWebDeploy
>
> This is the url of my SPARQL Endpoint:
> https://povrzani.net/sparql
>
> I have rdf file set in App_Data folder, in this same folder I have config.ttl
> file.
> When I try to execute simple query in the editor on this url:
> https://povrzani.net/sparql
>
> PREFIX ex: <https://povrzani.net/>
> SELECT * WHERE { ?s ?o ?p}
>
> I get no results.
> When I try to get results directly from rdf file from c#, there is no problem
> and I am getting results.
>
> Please tell me if I am having some mistake in configuring my endpoint, or
> maybe something else is the problem.
>
> Thank You in Advance,
>
> Best Regards,
> Marija
> ------------------------------------------------------------------------------
> _______________________________________________ dotNetRDF-Support mailing list
> dot...@li...
> https://lists.sourceforge.net/lists/listinfo/dotnetrdf-support
|