Presentation is loading. Please wait.

Presentation is loading. Please wait.

Creating Data Access Services Presented by Ashraf Memon Presented by Ashraf Memon.

Similar presentations


Presentation on theme: "Creating Data Access Services Presented by Ashraf Memon Presented by Ashraf Memon."— Presentation transcript:

1 Creating Data Access Services Presented by Ashraf Memon Presented by Ashraf Memon

2 2 Overview Writing data access service classes in Java Generating service Deploying services with Apache Axis Generating client files and testing them

3 3 Writing data access service classes in Java Data Access Services in Java heavily depend on JDBC JDBC stands for Java Database Connectivity and is a industry standard Java API from Sun for talking to any database - depending on availability of database driver.

4 4 Writing data access service classes in Java

5 5 Sample Data Access class contains 1 function, which reads coordinate data from summer_institute database and generates XML for it. Method signature is –public String parse(int criteria) Complete class code follows

6 6 Writing Data Acess service classes in Java (contd) import java.io.IOException; import java.sql.SQLException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.Statement; import java.sql.ResultSet; public class DBAccess { public DBAccess() { }

7 7 Writing Data Acess service classes in Java (contd) public String parse(int criteria) throws IOException, SQLException, ClassNotFoundException { String xml = " \r\n\t"; Class.forName("com.mysql.jdbc.Driver"); Connection connection = DriverManager.getConnection( "jdbc:mysql://geon07.sdsc.edu:3306/summer_institute", "root", ""); Statement stmt = connection.createStatement();

8 8 Writing Data Acess service classes in Java (contd) String sql = "SELECT * FROM earthquake WHERE magnitude > " + Integer.toString(criteria); ResultSet record = stmt.executeQuery(sql); while (record.next()) { xml += " \r\n\t\t"; xml += " " + record.getString("longitude") + " \r\n\t\t"; xml += " " + record.getString("latitude") + " \r\n\t\t"; xml += " " + record.getString("magnitude") + " \r\n\t"; xml += " \r\n\t"; }

9 9 Writing Data Acess service classes in Java (contd) xml += "\r\n"; xml += " "; return xml; }

10 10 Generating Service Download DBAccessService directory from ftp://dotnet.sdsc.edu/CSIG-WS/ ftp://dotnet.sdsc.edu/CSIG-WS/ Save directory to C:\training\user\code Compile DBAccess.java file by typing following at command prompt javac DBAccess.java Run program by typing following at command prompt java DBAccess

11 11 Generating Service (contd) Output should be 143.002 37.2850 2.25000E-02

12 12 Deploying services with Apache Axis Copy generated class file to C:\training\tools\tomcat\webapps\axis\WEB -INF\classes\ Open deployDBAccess.wsdd in Textpad (Explanation by instructor) Close file.

13 13 Deploying services with Apache Axis(contd) Set classpath by typing classpath at command prompt Execute deployment descriptor by typing deploy deployDBAccess.wsdd at command prompt. This deploys webservice on Axis SOAP Server.

14 14 Generating client files and testing them(contd) Compile DBAccessServiceClient.java by typing following at command prompt –javac DBAccess ServiceClient.java Execute Client by typing following at command prompt –java DBAccess ServiceClient Output should be sinilar to execution of DBAccess


Download ppt "Creating Data Access Services Presented by Ashraf Memon Presented by Ashraf Memon."

Similar presentations


Ads by Google