Re: [Virtuoso-users] Virtuoso Construct Query - Creating URI problem

2013-01-07 Thread Zehra Gül Çabuk
Thanks for your quick reply. It solves my problem:) 2013/1/7 Hugh Williams > Hi Zehra, > > The error you report is coming from the Jena Query Parser, thus have you > tried bypassing it such that the query is executed directly against the > Virtuoso Query Parser, as it the case with the SPARL end

Re: [Virtuoso-users] Virtuoso Construct Query - Creating URI problem

2013-01-07 Thread Rob Vesse
The error from the Jena parser is caused by the use of bif:concat which is not known by the Jena parser I believe the simpler way to use Virtuoso bif functions without bypassing the ARQ parser is to simply surround bif functions with < > I.e. Rob From: Hugh Williams Date: Monday, January 7,

Re: [Virtuoso-users] Virtuoso Construct Query - Creating URI problem

2013-01-07 Thread Hugh Williams
Hi Zehra, The error you report is coming from the Jena Query Parser, thus have you tried bypassing it such that the query is executed directly against the Virtuoso Query Parser, as it the case with the SPARL endpoint which works. See the following documentation on how to by pass the Jena Query

Re: [Virtuoso-users] Virtuoso Construct Query - Creating URI problem

2013-01-07 Thread Zehra Gül Çabuk
Hi again:) I've solved my problem as converting query like this : *CONSTRUCT * *{* *?mail ?user* *} * *WHERE * *{* * ?feedback ?time. * * ?feedback ?user. *