Exposing RDF Data as a Data Service
This tutorial will guide you on how to expose an RDF datasource as a data service using the Create New Data Service wizard. To demonstrate this feature, we will use a sample RDF file that is shipped with WSO2 EI by default. Given below are the details of this datasource:
The RDF file (Movies.rdf
), stored in the <EI_HOME>/samples/data-services/resources
folder contains data about some popular movies. Each movie data has the following sub elements: "title", "director", "year", "genre" and "actor".
See the following topics for instructions. Also, see the samples in Data Integration Samples.
Creating a data service
Follow the steps given below.
Download the product installer from here, and run the installer.
Let's call the installation location of your product the <EI_HOME> directory.If you installed the product using the installer, this is located in a place specific to your OS as shown below:
OS Home directory Mac OS /Library/WSO2/EnterpriseIntegrator/6.5.0
Windows C:\Program Files\WSO2\EnterpriseIntegrator\6.5.0\
Ubuntu /usr/lib/wso2/EnterpriseIntegrator/6.5.0
CentOS /usr/lib64/EnterpriseIntegrator/6.5.0
Start the ESB profile:
- Log in to the product's management console.
- Click Data Service → Create, to start creating a data service.
Enter the following name for the data service.
Data Service Name RDFDataService - Click Next to enter the datasource connection details.
Connecting to the datasource
Follow the steps given below.
Click Add New Datasource and enter the following details:
Datasource ID RDF Datasource Type RDF RDF File Location Enter the path to the RDF file. In this tutorial we are using a sample RDF file that is shipped with your product. The file location is ./samples/data-services/resources/Movies.rdf. - Save the datasource.
Click Next, to start creating queries.
Creating a query to GET data
Now let's start writing a query for getting data from the Movies.
rdf file. The query will specify the data that should be fetched by this query, and the format that should be used to display data when the query is invoked.
Click Add New Query and enter the following details:
Query ID GetMoviebyGenre Datasource RDF SPARQL In this field, enter the sparql query describing the data that should be retrieved from the RDF datasource. We will use the following query:
PREFIX cd: <http://www.popular.movies/cd#> SELECT ?title ?director ?year ?genre ?actor WHERE { ?movie cd:title ?title. ?movie cd:director ?director. ?movie cd:year ?year. ?movie cd:genre ?genre. ?movie cd:actor ?actor. }
The input mapping section is used to specify the type of input that should be given in order to get the output result. Click Add New Input Mapping to start creating the input mapping. We will create an input mapping for 'genre', which will allow us to query for data based on the genre of the movie.
Mapping Name genre Sparql Type String - Now let's specify output mappings to specify how the data fetched from the query should be displayed. We will create output mappings for all the types of data in the RDF file: title, director, year, genre and actor. Follow the steps given below.
Start by giving the following information:
Output type You can select XML, JSON or RDF. We will use XML for this tutorial. This specifies the format in which the query results should be presented. Grouped by element Enter Movies. This will be the XML element that will group the query result. Row Name Enter Movie. This is the XML element that should group each individual result. - Click Add New Output Mapping to start creating the output mapping for the title column.
- Click Add to save the output mapping. You will now have one output mapping listed for the GetMoviesbyGenre query.
Now, add the following output mappings:
Mapping Type Element Name Datasource Type Datasource Column Name Parameter Type Schema Type Element title Column title SCALAR string Element director Column director SCALAR string Element year Column year SCALAR string Element genre Column genre SCALAR string Element actor Column actor SCALAR string - Click Main Configuration to return to the Query screen.
- Save the query, and click Next to go to the Operations screen.
Creating a SOAP operation to invoke the query
To invoke the query, you need to define an operation.
Click Add New Operation and enter the following information.
Operation Name GetMoviesbyGenreOp Query ID GetMoviesbyGenre - Save the operation.
You can now invoke the data service query using SOAP.
Creating a REST resource to invoke the query
Now, let's create REST resources to invoke the query created above. Alternatively, you can create SOAP operations to invoke the queries. See the previous section for instructions.
Click Add New Resource and enter the following information.
Resource Path Movies/{genre} Resource Method GET Query ID GetMoviesbyGenre - Save the resource.
You can now invoke the data service query using REST.
Finish creating the data service
Once you have defined the operation, click Finish to complete the data service creation process. You will now be taken to the Deployed Services screen, which shows all the data services deployed on the server.
Invoking your data service using SOAP
You can try the data service you created by using the TryIt tool that is in your product by default.
- Go to the Deployed Services screen.
- Click the Try this service link for the Excel data service. The TryIt Tool will open with the RDF service.
- Enter Drama as the genre: <xs:Genre xmlns:xs="http://ws.wso2.org/dataservice">Drama</xs:Genre>
- Select the GetMoviesbyGenre operation and click Send.
The following XML response will be published on the TryIt tool:
Movies xmlns="http://ws.wso2.org/dataservice"> <Movie> <title>Ratatouille</title> <director>Jan Pinkava</director> <year>2007</year> <genre>Drama</genre> <actor>Teddy Newton</actor> </Movie> <Movie> <title>Catch Me If You Can</title> <director>Steven Spielberg</director> <year>2002</year> <genre>Drama</genre> <actor>Antoine Drolet Dumoulin</actor> </Movie> <Movie> <title>The Spectacular Now</title> <director>James Ponsoldt</director> <year>2013</year> <genre>Drama</genre> <actor>Andre Royo</actor> </Movie> <Movie> <title>Adventureland</title> <director>Greg Mottola</director> <year>2009</year> <genre>Drama</genre> <actor>Ryan Mcfarland</actor> </Movie> <Movie> <title>Begin Again</title> <director>John Carney</director> <year>2014</year> <genre>Drama</genre> <actor>Eric Burton</actor> </Movie> <Movie> <title>Flipped</title> <director>Rob Reiner</director> <year>2010</year> <genre>Drama</genre> <actor>Michele Messmer</actor> </Movie> <Movie> <title>Beginners</title> <director>Mike Mills</director> <year>2011</year> <genre>Drama</genre> <actor>Seth T Walker</actor> </Movie> <Movie> <title>Bridget Jones's Diary</title> <director>Cilla Ware</director> <year>2001</year> <genre>Drama</genre> <actor>John Clegg</actor> </Movie> </Movies>
Invoking your data service using REST
You can send an HTTP GET request to invoke the data service using cURL as shown below.
curl -X GET http://localhost:8280/services/RDFDataService.HTTPEndpoint/Movies/Drama
This will return the response in XML.