The WSO2 Data Services Server augments Service Oriented Architecture (SOA) development efforts by providing an easy to use platform for integrating data stores, creating composite data views, and hosting data services. This blog post is written to help users to getting started with WSO2 DSS with writing a data service to execute a stored procedure which is defined in a database. Prerequisites Before starting the implementation, you need the following things to be downloaded and installed. 1. Download WSO2 Data Services Server and install. 2. Download mysql server and install. Once you have installed both WSO2 DSS and mysql in your enviornment, you can proceed to the next step. Creating the stored procedure in mysql 1. Connect to mysql server with the following command. mysql -u root -p Enter password: 2. Create a sample databasae. DROP DATABASE IF EXISTS ESB_SP_SAMPLE; CREATE DATABASE ESB_SP_SAMPLE; 3. Create a table using the following statement. USE
Sharing the things which I learned about Enterprise Integration.