Good Morning,
I'm trying to link up the Mashup Server to Sesame RDF Framework.
Sesame uses REST webservices. One simple example is to list all
repositories. The response adds an additional parameter to the header
called accept and passes application/sparql-results+xml, */*.
I'm unable to do that so far. WSrequest is not letting me modify the header.
I don't think I can use the scrapper class because the result is not in html.
Any ideas?
The output needed from mashup to send to sesame.
>>
GET /sesame/repositories HTTP/1.1
Host: localhost
Accept: application/sparql-results+xml, */*
<<
Response:
HTTP/1.1 200 OK
Content-Type: application/sparql-results+xml
<?xml version='1.0' encoding='UTF-8'?>
http://localhost/sesame/repositories/mem-rdf
mem-rdf
Main Memory RDF repository
true
false
I found http-param and
It's working
Glad we could help
Thanks for posting the