Is FROM inside of SERVICE legal?

2012-08-12 Thread Holger Knublauch
The following query is not valid (verified with Jena 2.7.3): SELECT * WHERE { SERVICE http://example.org:8890/sparql { SELECT * FROM http://ex.com/base WHERE { ?s a http://ex.com/resource/Batch . ?s http://ex.com/resource/id ?id . } } } The

Re: Is FROM inside of SERVICE legal?

2012-08-12 Thread Macedo Maia
You can try this query SELECT * WHERE { SERVICE http://example.org:8890/sparql { SELECT * WHERE { ?s a http://ex.com/resource/Batch . ?s http://ex.com/resource/id ?id . } } } 2012/8/12 Holger Knublauch hol...@knublauch.com The following query is not

Re: Is FROM inside of SERVICE legal?

2012-08-12 Thread Macedo Maia
2012/8/13 Macedo Maia 85.m...@gmail.com You can try this query SELECT * WHERE { SERVICE http://example.org:8890/sparql { SELECT * WHERE { ?s a http://ex.com/resource/Batch . ?s http://ex.com/resource/id ?id . } } } 2012/8/12 Holger