SlideShare a Scribd company logo
1 of 40
What is Web Service?
• Services are available in the Web.
• Communication between the two system
over network.
• Software system designed to support
interoperable machine-machine interaction
over the network (w3c definition).
• Real-time Example:
– Facebook, Google, Twitter, e-commerce sites,
and irctc.
Simple Use case
Application Server-1
bookTicket()
IRCTC- Ticket Service
DB
Dealer site1
(makemytrip.com)
Struts
Application Server-2
Dealer site2
(cleartrip.com)
.NET/RUBY
Application Server-3
cancelTicket()
Interface
Criteria for interface and
request/response
• Interface should be
platform independent. So
what is the format? And
why?
• Request and response
should be language
natural. So what is the
format? And why?
Web Service Terminologies
• SOAP – Simple Object Access Protocol.
– Envelope for soap request/response.
• WSDL – Web Service Description Language.
– Interface for SOAP web service
• UDDI – Universal Description, Discovery and
Integration.
– Repository/yellow pages of web services
• REST – REpresentational State Transfer.
– Architecture style of communication to the services
• HTTP – Hypertext Transfer Protocol.
– Stateless protocol and used for transport
Different Types of Web Services
SOAP REST
JAX-WS standard JAX-RS standard
Required WSDL interface for expos as web
service
No Interface. It uses HTTP methods
(GET,POST,PUT,DELETE)
XML should be communication medium for
request and response
Both XML and JSON used for request
and response.
Maintain session state Stateless (fire and forget)
It uses SOAP protocol to transfer data over
HTTP
Uses only HTTP
Not human readable Human readable
Client – server communication heavy weight
like BLOB
Simple client-server communication
and light weight.
SOAP vs REST
Client ServerData
SOAP
Standard
Huge
Data+ = <=>
SOAP
Client ServerData <=>
Sending data as its
REST
*REST are mostly used in industry
Web service Flow-I
HTTP
HTTP
Web Browser
Mobile
WSDL
SOAP
REST
DB
Web services
Application Server
Not Applicable for Real time
and it FALSE one for SOAP.
Disadvantage of flow-I
• Consuming SOAP services from Java Scripts is
tedious and time consuming task.
• Some browser will not support build in Jquery
functions for SOAP.(Browser compatibility)
• Security validation is needed for every service.
Because anybody can access any service.
• No centralized controlled.
• UI change to be needed for every Web service
enhancements like URL for version update.
Web service Flow-II (Actual)
Web Browser
Mobile
(Toolkit)
Java Web
service Client
DB
WSDL
SOAP
REST
DB
Web Server/application
server
Web/Servlet
application
Web services
Application Server
HTTP
HTTP
Client for Web service
Client for
Web App
Advantage of Flow-II
• Centralized control.
• Only authorized users/vendors can consume
web services.
• No UI changes needed.
• Can use OAUTH/APIGEE for security.
• Standard industry model
Examples
• GeoIP service
– http://www.webservicex.net/ws/WSDetails.aspx?
WSID=64&CATID=12
• One Time Password(OTP) service
– Our own service
Web Service - OTP
• OTP(One-Time-Password) Generator.
– This web service will generate OTP for authentication
for more security.
– Used in banking site, e-commerce site for every
transactions.
• Functionality
– Generate OTP and send to mail.
– Validate OTP.
– Get registered user.
– Get all registered users.
Complete Application architecture
(HealthCare Portal)
Generate OTP
Validate
Get All Subscriber
Get Subscriber
DB
WSDL
SMTP Mail
Server
(GMAIL)
Application Server (Glassfish)
Java
.Net
Ruby
Web Server
(Tomcat)
Servlets
End
User
SOAP Client
JDBC
ORM
(Hibernate)
Setup environments
• Required software
– JDK 1.6
– IDE (Eclipse/NetBeans)
– Application server (GlassFish)
– Mail API
– Database (postgresql DB)
• Technology used
– Java
– XML
– JDBC
Service Development
package com.soapwebtest.service;
import java.util.List;
import java.util.Random;
import javax.jws.WebMethod;
import javax.jws.WebService;
import com.soapwebtest.service.model.Subscriber;
@WebService
public class OTPGenerator {
@WebMethod
public boolean generateOtp(String email) {
return false;
}
public boolean validate(String mail, String otp) {
return false;
}
public Subscriber getSubscriber(String mail) {
return subscriber.
}
public List<Subscriber> getAllSubscriber() {
return List<Subscriber>
}
}
OTP service – WSDL interface
Compare WSDL with java Interface
package com.testapp.webservice //package name
Public interface Calculatore{ //interface name
int add(int a, int b); // method name, input and output parameters
int multiply(int a, int b);
Math add (Math math); //Object
}
WSDL high level elements
-<definition>
+<types> //input and output types reference
+<message> // inputs and outputs (one for input and one for output)
-<portType>
-<operation> //method name of webservice
<input> // all input and output are message
(one for input and one for output)
<output>
</operation>
+<binding> //information about how webservices accepts
its input and output via http (literal via http)
+<service> //list of ports and each port has address location.
port consist of operations
-</definition>
Name Space and types
• Name space represent the package name of
service.
• Name space should be unique.
• Types represents what kind of data type to
passed to service input and output over HTTP.
• Types will be applicable only for document style
binding. Not for RPC.
XSD Elements
SOAP binding style
JAX-RPC Document
no XSD XSD document as an input and
output
easy to read complex to read
no validation validates inputs (ex : minoccurs)
Note:
Document style binding is default
SOAP binding represents what kind of communication and data passed to
request and response for the service.
Document style binding
RPC binding
Service, portType and message
• Service consist of ports and each port will
have address location URL.
• portType has operations of service which
exposed on the particular port.
• Each operation has input/output which
represent as messages.
Example
WSDL Structure
Web service client
• One who consume web service is called web
service client.
• Client needs only WSDL interface.
• Different Types of Clients:
– Java
– .Net
– Ruby
– Python
Steps to create java client
• Use wsimport
– Wsimport –keep –s <src> <wsdl>
• Use Eclipse-IDE
– Create java project.
– Create Web service client.
– Specify the WSDL and Validate.
– Generate required classes using Axis.
Web Service Client Example
package com.soapwebtest.service;
import java.rmi.RemoteException;
import java.util.Arrays;
import java.util.List;
public class OTPClient {
public static void main(String[] args) throws RemoteException {
OTPGenerator service = new OTPGeneratorProxy();
List<Subscriber> ll = Arrays.asList(service.getAllSubscriber());
for (Subscriber subscriber : ll) {
System.out.println(subscriber.getEmail());
}
}
}
Complete Application architecture
(HealthCare Portal)
Generate OTP
Validate
Get All Subscriber
Get Subscriber
DB
WSDL
Mail Server
(GMAIL)
Application Server (Glassfish)
Java
.NET
Ruby
Web Server
(Tomcat)
Servlets
End
User
SOAP Client
JDBC
ORM
(Hibernate)
Developing Web Application and
Integrate SOAP Client
• Required Software:
– Hibernate
– Postgresql(Database)
– Tomcat (web server)
– SOAP Client
• Technology
– HTML
– JSP
– Servlets
– Java
– XML (web.xml)
Tomcat Web Server
Browser
Tomcat
Request
Response
Web Application
Web Application
Web Application
Login Servlet
Web.xml /
annotation
Servlet Terminologies
• Http- Stateless protocol
• HttpRequest – scope will be only on request
• HttpResponse- scope will be only on response
• HttpSession – scope on particular
browser/user
• ServletConfig- Scope on particular servlet
• ServletContext – Scope for all servlet and
every browser/user.
Serialization
• Process of storing object state for streaming
called serialization.
• Every java class should implements
serializable interface
• What is object state?
• Why should we store object state?
Serialization
Network
JVMJVM
SOAP Client Web Service
Serialization Example
Syllabus
• Web Services: JAX-RPC-Concepts-Writing a
Java Web Service-Writing a Java Web Service
Client-Describing Web Services: WSDL-
Representing Data Types: XML Schema-
communicating Object Data: SOAP Related
Technologies-Software Installation-Storing
Java Objects as Files-Databases and Java
Servlets.
Questions???
Thank You

More Related Content

What's hot

Web authentication & authorization
Web authentication & authorizationWeb authentication & authorization
Web authentication & authorization
Alexandru Pasaila
 

What's hot (20)

introduction to Web system
introduction to Web systemintroduction to Web system
introduction to Web system
 
Postman Introduction
Postman IntroductionPostman Introduction
Postman Introduction
 
HTTP Request Header and HTTP Status Code
HTTP Request Header and HTTP Status CodeHTTP Request Header and HTTP Status Code
HTTP Request Header and HTTP Status Code
 
Laravel Introduction
Laravel IntroductionLaravel Introduction
Laravel Introduction
 
Xml http request
Xml http requestXml http request
Xml http request
 
What-is-Laravel-23-August-2017.pptx
What-is-Laravel-23-August-2017.pptxWhat-is-Laravel-23-August-2017.pptx
What-is-Laravel-23-August-2017.pptx
 
Restful web services ppt
Restful web services pptRestful web services ppt
Restful web services ppt
 
Web servers
Web serversWeb servers
Web servers
 
Laravel Tutorial PPT
Laravel Tutorial PPTLaravel Tutorial PPT
Laravel Tutorial PPT
 
Ajax ppt
Ajax pptAjax ppt
Ajax ppt
 
Introduction to ASP.NET
Introduction to ASP.NETIntroduction to ASP.NET
Introduction to ASP.NET
 
Fetch API Talk
Fetch API TalkFetch API Talk
Fetch API Talk
 
Web application architecture
Web application architectureWeb application architecture
Web application architecture
 
POSTMAN.pptx
POSTMAN.pptxPOSTMAN.pptx
POSTMAN.pptx
 
Testing your APIs Performance.pptx
Testing your APIs Performance.pptxTesting your APIs Performance.pptx
Testing your APIs Performance.pptx
 
Web authentication & authorization
Web authentication & authorizationWeb authentication & authorization
Web authentication & authorization
 
REST API and CRUD
REST API and CRUDREST API and CRUD
REST API and CRUD
 
Laravel overview
Laravel overviewLaravel overview
Laravel overview
 
Jmeter vs loadrunner vs neoload
Jmeter vs loadrunner vs neoloadJmeter vs loadrunner vs neoload
Jmeter vs loadrunner vs neoload
 
Scripting languages
Scripting languagesScripting languages
Scripting languages
 

Viewers also liked

Web Services - A brief overview
Web Services -  A brief overviewWeb Services -  A brief overview
Web Services - A brief overview
Raveendra Bhat
 
Web Services - Architecture and SOAP (part 1)
Web Services - Architecture and SOAP (part 1)Web Services - Architecture and SOAP (part 1)
Web Services - Architecture and SOAP (part 1)
Martin Necasky
 

Viewers also liked (20)

Web Service Presentation
Web Service PresentationWeb Service Presentation
Web Service Presentation
 
Web Services Tutorial
Web Services TutorialWeb Services Tutorial
Web Services Tutorial
 
Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)
 
Web Services - A brief overview
Web Services -  A brief overviewWeb Services -  A brief overview
Web Services - A brief overview
 
Web Services
Web ServicesWeb Services
Web Services
 
Web service introduction
Web service introductionWeb service introduction
Web service introduction
 
Web Services - Architecture and SOAP (part 1)
Web Services - Architecture and SOAP (part 1)Web Services - Architecture and SOAP (part 1)
Web Services - Architecture and SOAP (part 1)
 
Webservices Overview : XML RPC, SOAP and REST
Webservices Overview : XML RPC, SOAP and RESTWebservices Overview : XML RPC, SOAP and REST
Webservices Overview : XML RPC, SOAP and REST
 
SOAP vs REST
SOAP vs RESTSOAP vs REST
SOAP vs REST
 
REST vs. SOAP
REST vs. SOAPREST vs. SOAP
REST vs. SOAP
 
REST vs SOAP
REST vs SOAPREST vs SOAP
REST vs SOAP
 
Testing web services
Testing web servicesTesting web services
Testing web services
 
Restful Web Services
Restful Web ServicesRestful Web Services
Restful Web Services
 
RESTful Web Services
RESTful Web ServicesRESTful Web Services
RESTful Web Services
 
ReST Vs SOA(P) ... Yawn
ReST Vs SOA(P) ... YawnReST Vs SOA(P) ... Yawn
ReST Vs SOA(P) ... Yawn
 
Java web services using JAX-WS
Java web services using JAX-WSJava web services using JAX-WS
Java web services using JAX-WS
 
Soap vs. rest - which is right web service protocol for your need?
Soap vs. rest -  which is right web service protocol for your need?Soap vs. rest -  which is right web service protocol for your need?
Soap vs. rest - which is right web service protocol for your need?
 
REST - Representational State Transfer
REST - Representational State TransferREST - Representational State Transfer
REST - Representational State Transfer
 
Spring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSpring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. REST
 
Webservices
WebservicesWebservices
Webservices
 

Similar to Web services - A Practical Approach

A presentation on WCF & REST
A presentation on WCF & RESTA presentation on WCF & REST
A presentation on WCF & REST
Santhu Rao
 

Similar to Web services - A Practical Approach (20)

Ntg web services
Ntg   web servicesNtg   web services
Ntg web services
 
Servlet.pptx
Servlet.pptxServlet.pptx
Servlet.pptx
 
Servlet.pptx
Servlet.pptxServlet.pptx
Servlet.pptx
 
web services-May 25.ppt
web services-May 25.pptweb services-May 25.ppt
web services-May 25.ppt
 
Servlets api overview
Servlets api overviewServlets api overview
Servlets api overview
 
Web service architecture
Web service architectureWeb service architecture
Web service architecture
 
Servlet by Rj
Servlet by RjServlet by Rj
Servlet by Rj
 
06 web api
06 web api06 web api
06 web api
 
IT2255 Web Essentials - Unit V Servlets and Database Connectivity
IT2255 Web Essentials - Unit V Servlets and Database ConnectivityIT2255 Web Essentials - Unit V Servlets and Database Connectivity
IT2255 Web Essentials - Unit V Servlets and Database Connectivity
 
Windows communication foundation (part1) jaliya udagedara
Windows communication foundation (part1)    jaliya udagedaraWindows communication foundation (part1)    jaliya udagedara
Windows communication foundation (part1) jaliya udagedara
 
Servlet ppt by vikas jagtap
Servlet ppt by vikas jagtapServlet ppt by vikas jagtap
Servlet ppt by vikas jagtap
 
Oracle API Gateway
Oracle API GatewayOracle API Gateway
Oracle API Gateway
 
Structured Functional Automated Web Service Testing
Structured Functional Automated Web Service TestingStructured Functional Automated Web Service Testing
Structured Functional Automated Web Service Testing
 
Servlet
ServletServlet
Servlet
 
Overview of java web services
Overview of java web servicesOverview of java web services
Overview of java web services
 
Web service
Web serviceWeb service
Web service
 
58615764 net-and-j2 ee-web-services
58615764 net-and-j2 ee-web-services58615764 net-and-j2 ee-web-services
58615764 net-and-j2 ee-web-services
 
Java servlets
Java servletsJava servlets
Java servlets
 
Windows 8 Metro apps and the outside world
Windows 8 Metro apps and the outside worldWindows 8 Metro apps and the outside world
Windows 8 Metro apps and the outside world
 
A presentation on WCF & REST
A presentation on WCF & RESTA presentation on WCF & REST
A presentation on WCF & REST
 

Recently uploaded

Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 

Recently uploaded (20)

Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaS
 
WSO2CON 2024 - Building a Digital Government in Uganda
WSO2CON 2024 - Building a Digital Government in UgandaWSO2CON 2024 - Building a Digital Government in Uganda
WSO2CON 2024 - Building a Digital Government in Uganda
 
WSO2Con2024 - Facilitating Broadband Switching Services for UK Telecoms Provi...
WSO2Con2024 - Facilitating Broadband Switching Services for UK Telecoms Provi...WSO2Con2024 - Facilitating Broadband Switching Services for UK Telecoms Provi...
WSO2Con2024 - Facilitating Broadband Switching Services for UK Telecoms Provi...
 
WSO2CON 2024 - Designing Event-Driven Enterprises: Stories of Transformation
WSO2CON 2024 - Designing Event-Driven Enterprises: Stories of TransformationWSO2CON 2024 - Designing Event-Driven Enterprises: Stories of Transformation
WSO2CON 2024 - Designing Event-Driven Enterprises: Stories of Transformation
 
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public AdministrationWSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
Evolving Data Governance for the Real-time Streaming and AI Era
Evolving Data Governance for the Real-time Streaming and AI EraEvolving Data Governance for the Real-time Streaming and AI Era
Evolving Data Governance for the Real-time Streaming and AI Era
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
WSO2CON 2024 Slides - Unlocking Value with AI
WSO2CON 2024 Slides - Unlocking Value with AIWSO2CON 2024 Slides - Unlocking Value with AI
WSO2CON 2024 Slides - Unlocking Value with AI
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public AdministrationWSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
WSO2CON 2024 - How CSI Piemonte Is Apifying the Public Administration
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
WSO2Con2024 - Software Delivery in Hybrid Environments
WSO2Con2024 - Software Delivery in Hybrid EnvironmentsWSO2Con2024 - Software Delivery in Hybrid Environments
WSO2Con2024 - Software Delivery in Hybrid Environments
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
WSO2Con2024 - Simplified Integration: Unveiling the Latest Features in WSO2 L...
WSO2Con2024 - Simplified Integration: Unveiling the Latest Features in WSO2 L...WSO2Con2024 - Simplified Integration: Unveiling the Latest Features in WSO2 L...
WSO2Con2024 - Simplified Integration: Unveiling the Latest Features in WSO2 L...
 
Driving Innovation: Scania's API Revolution with WSO2
Driving Innovation: Scania's API Revolution with WSO2Driving Innovation: Scania's API Revolution with WSO2
Driving Innovation: Scania's API Revolution with WSO2
 

Web services - A Practical Approach

  • 1.
  • 2. What is Web Service? • Services are available in the Web. • Communication between the two system over network. • Software system designed to support interoperable machine-machine interaction over the network (w3c definition). • Real-time Example: – Facebook, Google, Twitter, e-commerce sites, and irctc.
  • 3. Simple Use case Application Server-1 bookTicket() IRCTC- Ticket Service DB Dealer site1 (makemytrip.com) Struts Application Server-2 Dealer site2 (cleartrip.com) .NET/RUBY Application Server-3 cancelTicket() Interface
  • 4. Criteria for interface and request/response • Interface should be platform independent. So what is the format? And why? • Request and response should be language natural. So what is the format? And why?
  • 5. Web Service Terminologies • SOAP – Simple Object Access Protocol. – Envelope for soap request/response. • WSDL – Web Service Description Language. – Interface for SOAP web service • UDDI – Universal Description, Discovery and Integration. – Repository/yellow pages of web services • REST – REpresentational State Transfer. – Architecture style of communication to the services • HTTP – Hypertext Transfer Protocol. – Stateless protocol and used for transport
  • 6. Different Types of Web Services SOAP REST JAX-WS standard JAX-RS standard Required WSDL interface for expos as web service No Interface. It uses HTTP methods (GET,POST,PUT,DELETE) XML should be communication medium for request and response Both XML and JSON used for request and response. Maintain session state Stateless (fire and forget) It uses SOAP protocol to transfer data over HTTP Uses only HTTP Not human readable Human readable Client – server communication heavy weight like BLOB Simple client-server communication and light weight.
  • 7. SOAP vs REST Client ServerData SOAP Standard Huge Data+ = <=> SOAP Client ServerData <=> Sending data as its REST *REST are mostly used in industry
  • 8. Web service Flow-I HTTP HTTP Web Browser Mobile WSDL SOAP REST DB Web services Application Server Not Applicable for Real time and it FALSE one for SOAP.
  • 9. Disadvantage of flow-I • Consuming SOAP services from Java Scripts is tedious and time consuming task. • Some browser will not support build in Jquery functions for SOAP.(Browser compatibility) • Security validation is needed for every service. Because anybody can access any service. • No centralized controlled. • UI change to be needed for every Web service enhancements like URL for version update.
  • 10. Web service Flow-II (Actual) Web Browser Mobile (Toolkit) Java Web service Client DB WSDL SOAP REST DB Web Server/application server Web/Servlet application Web services Application Server HTTP HTTP Client for Web service Client for Web App
  • 11. Advantage of Flow-II • Centralized control. • Only authorized users/vendors can consume web services. • No UI changes needed. • Can use OAUTH/APIGEE for security. • Standard industry model
  • 12. Examples • GeoIP service – http://www.webservicex.net/ws/WSDetails.aspx? WSID=64&CATID=12 • One Time Password(OTP) service – Our own service
  • 13. Web Service - OTP • OTP(One-Time-Password) Generator. – This web service will generate OTP for authentication for more security. – Used in banking site, e-commerce site for every transactions. • Functionality – Generate OTP and send to mail. – Validate OTP. – Get registered user. – Get all registered users.
  • 14. Complete Application architecture (HealthCare Portal) Generate OTP Validate Get All Subscriber Get Subscriber DB WSDL SMTP Mail Server (GMAIL) Application Server (Glassfish) Java .Net Ruby Web Server (Tomcat) Servlets End User SOAP Client JDBC ORM (Hibernate)
  • 15. Setup environments • Required software – JDK 1.6 – IDE (Eclipse/NetBeans) – Application server (GlassFish) – Mail API – Database (postgresql DB) • Technology used – Java – XML – JDBC
  • 16. Service Development package com.soapwebtest.service; import java.util.List; import java.util.Random; import javax.jws.WebMethod; import javax.jws.WebService; import com.soapwebtest.service.model.Subscriber; @WebService public class OTPGenerator { @WebMethod public boolean generateOtp(String email) { return false; } public boolean validate(String mail, String otp) { return false; } public Subscriber getSubscriber(String mail) { return subscriber. } public List<Subscriber> getAllSubscriber() { return List<Subscriber> } }
  • 17. OTP service – WSDL interface
  • 18. Compare WSDL with java Interface package com.testapp.webservice //package name Public interface Calculatore{ //interface name int add(int a, int b); // method name, input and output parameters int multiply(int a, int b); Math add (Math math); //Object }
  • 19. WSDL high level elements -<definition> +<types> //input and output types reference +<message> // inputs and outputs (one for input and one for output) -<portType> -<operation> //method name of webservice <input> // all input and output are message (one for input and one for output) <output> </operation> +<binding> //information about how webservices accepts its input and output via http (literal via http) +<service> //list of ports and each port has address location. port consist of operations -</definition>
  • 20. Name Space and types • Name space represent the package name of service. • Name space should be unique. • Types represents what kind of data type to passed to service input and output over HTTP. • Types will be applicable only for document style binding. Not for RPC.
  • 22. SOAP binding style JAX-RPC Document no XSD XSD document as an input and output easy to read complex to read no validation validates inputs (ex : minoccurs) Note: Document style binding is default SOAP binding represents what kind of communication and data passed to request and response for the service.
  • 25. Service, portType and message • Service consist of ports and each port will have address location URL. • portType has operations of service which exposed on the particular port. • Each operation has input/output which represent as messages.
  • 28. Web service client • One who consume web service is called web service client. • Client needs only WSDL interface. • Different Types of Clients: – Java – .Net – Ruby – Python
  • 29. Steps to create java client • Use wsimport – Wsimport –keep –s <src> <wsdl> • Use Eclipse-IDE – Create java project. – Create Web service client. – Specify the WSDL and Validate. – Generate required classes using Axis.
  • 30. Web Service Client Example package com.soapwebtest.service; import java.rmi.RemoteException; import java.util.Arrays; import java.util.List; public class OTPClient { public static void main(String[] args) throws RemoteException { OTPGenerator service = new OTPGeneratorProxy(); List<Subscriber> ll = Arrays.asList(service.getAllSubscriber()); for (Subscriber subscriber : ll) { System.out.println(subscriber.getEmail()); } } }
  • 31. Complete Application architecture (HealthCare Portal) Generate OTP Validate Get All Subscriber Get Subscriber DB WSDL Mail Server (GMAIL) Application Server (Glassfish) Java .NET Ruby Web Server (Tomcat) Servlets End User SOAP Client JDBC ORM (Hibernate)
  • 32. Developing Web Application and Integrate SOAP Client • Required Software: – Hibernate – Postgresql(Database) – Tomcat (web server) – SOAP Client • Technology – HTML – JSP – Servlets – Java – XML (web.xml)
  • 33. Tomcat Web Server Browser Tomcat Request Response Web Application Web Application Web Application Login Servlet Web.xml / annotation
  • 34. Servlet Terminologies • Http- Stateless protocol • HttpRequest – scope will be only on request • HttpResponse- scope will be only on response • HttpSession – scope on particular browser/user • ServletConfig- Scope on particular servlet • ServletContext – Scope for all servlet and every browser/user.
  • 35. Serialization • Process of storing object state for streaming called serialization. • Every java class should implements serializable interface • What is object state? • Why should we store object state?
  • 38. Syllabus • Web Services: JAX-RPC-Concepts-Writing a Java Web Service-Writing a Java Web Service Client-Describing Web Services: WSDL- Representing Data Types: XML Schema- communicating Object Data: SOAP Related Technologies-Software Installation-Storing Java Objects as Files-Databases and Java Servlets.