My main problem: I have two computers A and B with Virtuoso, and I'm trying to execute a request from one computer to another. I created an RDF graph on machine A and ran a query on A to see locally stored data.
sparql SELECT ?a ?b ?c FROM <http://localhost:8890/test> OPTION (get:soft "soft", get:method "GET") WHERE {?a ?b ?c};
He returned the data correctly. I run the following query on machine B
sparql SELECT ?a ?b ?c FROM <http://ipAddressOfA:8890/test> OPTION (get:soft "soft", get:method "GET") WHERE {?a ?b ?c};
I get a long pause and end up getting the following error
"HTCLI Error: [OpenLink] [Virtuoso ODBC Driver] [Virtuoso Server] HC001: Connection Error in the HTTP Client"
Should I configure permissions for another computer or something else? I'm sorry I'm new to this.
source share