SlideShare a Scribd company logo
1 of 40
Download to read offline
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

ASP.NET MVC Presentation
ASP.NET MVC PresentationASP.NET MVC Presentation
ASP.NET MVC Presentationivpol
 
Java web services using JAX-WS
Java web services using JAX-WSJava web services using JAX-WS
Java web services using JAX-WSIndicThreads
 
Introduction to the Web API
Introduction to the Web APIIntroduction to the Web API
Introduction to the Web APIBrad Genereaux
 
Node.js Express
Node.js  ExpressNode.js  Express
Node.js ExpressEyal Vardi
 
Introduction to Swagger
Introduction to SwaggerIntroduction to Swagger
Introduction to SwaggerKnoldus Inc.
 
Servlet.ppt
Servlet.pptServlet.ppt
Servlet.pptVMahesh5
 
Web Service Presentation
Web Service PresentationWeb Service Presentation
Web Service Presentationguest0df6b0
 
C# ASP.NET WEB API APPLICATION DEVELOPMENT
C# ASP.NET WEB API APPLICATION DEVELOPMENTC# ASP.NET WEB API APPLICATION DEVELOPMENT
C# ASP.NET WEB API APPLICATION DEVELOPMENTDr. Awase Khirni Syed
 
ASP.NET Web API
ASP.NET Web APIASP.NET Web API
ASP.NET Web APIhabib_786
 
Spring Boot and REST API
Spring Boot and REST APISpring Boot and REST API
Spring Boot and REST API07.pallav
 
Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)Peter R. Egli
 
Rest API with Swagger and NodeJS
Rest API with Swagger and NodeJSRest API with Swagger and NodeJS
Rest API with Swagger and NodeJSLuigi Saetta
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.jsVikash Singh
 
Introduction to REST API with Node.js
Introduction to REST API with Node.jsIntroduction to REST API with Node.js
Introduction to REST API with Node.jsYoann Gotthilf
 

What's hot (20)

ASP.NET MVC Presentation
ASP.NET MVC PresentationASP.NET MVC Presentation
ASP.NET MVC Presentation
 
Web api
Web apiWeb api
Web api
 
Java web services using JAX-WS
Java web services using JAX-WSJava web services using JAX-WS
Java web services using JAX-WS
 
Introduction to the Web API
Introduction to the Web APIIntroduction to the Web API
Introduction to the Web API
 
Simple object access protocol(soap )
Simple object access protocol(soap )Simple object access protocol(soap )
Simple object access protocol(soap )
 
Node.js Express
Node.js  ExpressNode.js  Express
Node.js Express
 
Introduction to Swagger
Introduction to SwaggerIntroduction to Swagger
Introduction to Swagger
 
Servlet.ppt
Servlet.pptServlet.ppt
Servlet.ppt
 
Web Service Presentation
Web Service PresentationWeb Service Presentation
Web Service Presentation
 
Java Servlets
Java ServletsJava Servlets
Java Servlets
 
Express js
Express jsExpress js
Express js
 
C# ASP.NET WEB API APPLICATION DEVELOPMENT
C# ASP.NET WEB API APPLICATION DEVELOPMENTC# ASP.NET WEB API APPLICATION DEVELOPMENT
C# ASP.NET WEB API APPLICATION DEVELOPMENT
 
ASP.NET Web API
ASP.NET Web APIASP.NET Web API
ASP.NET Web API
 
Spring Boot and REST API
Spring Boot and REST APISpring Boot and REST API
Spring Boot and REST API
 
Web services
Web servicesWeb services
Web services
 
IIS
IISIIS
IIS
 
Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)Web Services (SOAP, WSDL, UDDI)
Web Services (SOAP, WSDL, UDDI)
 
Rest API with Swagger and NodeJS
Rest API with Swagger and NodeJSRest API with Swagger and NodeJS
Rest API with Swagger and NodeJS
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 
Introduction to REST API with Node.js
Introduction to REST API with Node.jsIntroduction to REST API with Node.js
Introduction to REST API with Node.js
 

Viewers also liked

Web Services - A brief overview
Web Services -  A brief overviewWeb Services -  A brief overview
Web Services - A brief overviewRaveendra 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
 
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 RESTPradeep Kumar
 
Testing web services
Testing web servicesTesting web services
Testing web servicesTaras Lytvyn
 
Restful Web Services
Restful Web ServicesRestful Web Services
Restful Web ServicesAngelin R
 
ReST Vs SOA(P) ... Yawn
ReST Vs SOA(P) ... YawnReST Vs SOA(P) ... Yawn
ReST Vs SOA(P) ... Yawnozten
 
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?Vijay Prasad Gupta
 
REST - Representational State Transfer
REST - Representational State TransferREST - Representational State Transfer
REST - Representational State TransferPeter R. Egli
 
Spring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSpring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSam Brannen
 
External Data Access with jQuery
External Data Access with jQueryExternal Data Access with jQuery
External Data Access with jQueryDoncho Minkov
 
Understanding REST
Understanding RESTUnderstanding REST
Understanding RESTNitin Pande
 

Viewers also liked (20)

Web Services Tutorial
Web Services TutorialWeb Services Tutorial
Web Services Tutorial
 
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
 
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
 
External Data Access with jQuery
External Data Access with jQueryExternal Data Access with jQuery
External Data Access with jQuery
 
Understanding REST
Understanding RESTUnderstanding REST
Understanding REST
 
Web Service Security
Web Service SecurityWeb Service Security
Web Service Security
 

Similar to Web services - A Practical Approach

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

Osi security architecture in network.pptx
Osi security architecture in network.pptxOsi security architecture in network.pptx
Osi security architecture in network.pptxVinzoCenzo
 
What’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesWhat’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesVictoriaMetrics
 
Pros and Cons of Selenium In Automation Testing_ A Comprehensive Assessment.pdf
Pros and Cons of Selenium In Automation Testing_ A Comprehensive Assessment.pdfPros and Cons of Selenium In Automation Testing_ A Comprehensive Assessment.pdf
Pros and Cons of Selenium In Automation Testing_ A Comprehensive Assessment.pdfkalichargn70th171
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonLeveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonApplitools
 
The Ultimate Guide to Performance Testing in Low-Code, No-Code Environments (...
The Ultimate Guide to Performance Testing in Low-Code, No-Code Environments (...The Ultimate Guide to Performance Testing in Low-Code, No-Code Environments (...
The Ultimate Guide to Performance Testing in Low-Code, No-Code Environments (...kalichargn70th171
 
Strategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsStrategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsJean Silva
 
Understanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM ArchitectureUnderstanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM Architecturerahul_net
 
Effectively Troubleshoot 9 Types of OutOfMemoryError
Effectively Troubleshoot 9 Types of OutOfMemoryErrorEffectively Troubleshoot 9 Types of OutOfMemoryError
Effectively Troubleshoot 9 Types of OutOfMemoryErrorTier1 app
 
Mastering Project Planning with Microsoft Project 2016.pptx
Mastering Project Planning with Microsoft Project 2016.pptxMastering Project Planning with Microsoft Project 2016.pptx
Mastering Project Planning with Microsoft Project 2016.pptxAS Design & AST.
 
Ronisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited CatalogueRonisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited Catalogueitservices996
 
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxRTS corp
 
Introduction to Firebase Workshop Slides
Introduction to Firebase Workshop SlidesIntroduction to Firebase Workshop Slides
Introduction to Firebase Workshop Slidesvaideheekore1
 
Understanding Plagiarism: Causes, Consequences and Prevention.pptx
Understanding Plagiarism: Causes, Consequences and Prevention.pptxUnderstanding Plagiarism: Causes, Consequences and Prevention.pptx
Understanding Plagiarism: Causes, Consequences and Prevention.pptxSasikiranMarri
 
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...Bert Jan Schrijver
 
Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLionel Briand
 
2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shardsChristopher Curtin
 
VictoriaMetrics Q1 Meet Up '24 - Community & News Update
VictoriaMetrics Q1 Meet Up '24 - Community & News UpdateVictoriaMetrics Q1 Meet Up '24 - Community & News Update
VictoriaMetrics Q1 Meet Up '24 - Community & News UpdateVictoriaMetrics
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jNeo4j
 
Best Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITBest Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITmanoharjgpsolutions
 
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingOpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingShane Coughlan
 

Recently uploaded (20)

Osi security architecture in network.pptx
Osi security architecture in network.pptxOsi security architecture in network.pptx
Osi security architecture in network.pptx
 
What’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesWhat’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 Updates
 
Pros and Cons of Selenium In Automation Testing_ A Comprehensive Assessment.pdf
Pros and Cons of Selenium In Automation Testing_ A Comprehensive Assessment.pdfPros and Cons of Selenium In Automation Testing_ A Comprehensive Assessment.pdf
Pros and Cons of Selenium In Automation Testing_ A Comprehensive Assessment.pdf
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonLeveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
 
The Ultimate Guide to Performance Testing in Low-Code, No-Code Environments (...
The Ultimate Guide to Performance Testing in Low-Code, No-Code Environments (...The Ultimate Guide to Performance Testing in Low-Code, No-Code Environments (...
The Ultimate Guide to Performance Testing in Low-Code, No-Code Environments (...
 
Strategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsStrategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero results
 
Understanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM ArchitectureUnderstanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM Architecture
 
Effectively Troubleshoot 9 Types of OutOfMemoryError
Effectively Troubleshoot 9 Types of OutOfMemoryErrorEffectively Troubleshoot 9 Types of OutOfMemoryError
Effectively Troubleshoot 9 Types of OutOfMemoryError
 
Mastering Project Planning with Microsoft Project 2016.pptx
Mastering Project Planning with Microsoft Project 2016.pptxMastering Project Planning with Microsoft Project 2016.pptx
Mastering Project Planning with Microsoft Project 2016.pptx
 
Ronisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited CatalogueRonisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited Catalogue
 
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
 
Introduction to Firebase Workshop Slides
Introduction to Firebase Workshop SlidesIntroduction to Firebase Workshop Slides
Introduction to Firebase Workshop Slides
 
Understanding Plagiarism: Causes, Consequences and Prevention.pptx
Understanding Plagiarism: Causes, Consequences and Prevention.pptxUnderstanding Plagiarism: Causes, Consequences and Prevention.pptx
Understanding Plagiarism: Causes, Consequences and Prevention.pptx
 
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
 
Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and Repair
 
2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards
 
VictoriaMetrics Q1 Meet Up '24 - Community & News Update
VictoriaMetrics Q1 Meet Up '24 - Community & News UpdateVictoriaMetrics Q1 Meet Up '24 - Community & News Update
VictoriaMetrics Q1 Meet Up '24 - Community & News Update
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
 
Best Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITBest Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh IT
 
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingOpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
 

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.