SlideShare a Scribd company logo
WEBSERVICES BASIC
OVERVIEW
Web Services
• A Web service is a method of communication
between two electronic devices over
the World Wide Web
• In other words, a web service helps to convert
your application into a web-based application.
Why web services?
• Your application can publish its function or
message to the rest of the world.
Department of Information Science Engg
WEB
Services
REST Services SOAP and WSDL
REST Services
• Relying on URIs and HTTP verbs
• Usage of 5 big HTTP verbs
POST, HEAD, GET, PUT, DELETE
Nothing more than CRUD concept of the Web
• Ex: Delicious APIs
Delicious is a leading social bookmarking service
Visit: http://www.peej.co.uk/articles/restfully-delicious.html
• Data exchange format
XML, JASON or both
SOAP based services
• Simple Object Access Protocol
• Exclusively use XML as the data format to exchange info
over HTTP.
• A service that needs to be used by another service needs
to specify its usage through a “Service Description”.
• In this case, we use WSDL – Web Services Description
Language
• Ex: Apache Axis, Apache CXF
• SOAP has nothing to do with SOA – Service Oriented
Architecture
.
• A service is hosted on a “Discovery Service” in the internet.
• A client which wants to use this service will have to “discover”
this service (similar to RMI) using the ‘Discovery Service’.
• Once the service is “discovered”, the client asks the service
how it should be invoked. The service replies in WSDL format.
• The service is now invoked using SOAP. The client issues a
‘SOAP Request’.
• The service responds with a ‘SOAP Response’, which includes
the result.
A SOAP message is an ordinary XML document
containing the following elements:
• Envelope - identifies the XML document as a SOAP message
o Header - contains information about the request.
o Body
 Message data - contains request and response information
itself.
 Fault (optional) - containing errors and status information.
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-
envelope"
soap:encodingStyle="http://www.w3.org/2001/12/
soap-encoding">
<soap:Body
xmlns:m="http://www.example.org/stock">
<m:GetStockPrice>
<m:StockName>IBM</m:StockName>
</m:GetStockPrice>
</soap:Body>
</soap:Envelope>
A SOAP request:
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/
soap-envelope"
soap:encodingStyle="http://www.w3.org/
2001/12/soap-encoding">
<soap:Body
xmlns:m="http://www.example.org/stock"
>
<m:GetStockPriceResponse>
<m:Price>34.5</m:Price>
</m:GetStockPriceResponse>
</soap:Body>
</soap:Envelope>
The SOAP response:
WSDL
• WSDL stands for Web Services Description Language
• It is an XML-based language that is used for
describing the functionality offered by a Web service.
• WSDL file contains info about
o How the service can be called
o What parameter it expects
o What data structure it returns
o Which port the application uses
o Which protocol the web service uses (like https)
Need for stubs (similar to RMI)
What are stubs?
• A stub is a small program routine that substitutes for
a longer program, possibly to be loaded later or that
is located remotely.
• The stub accepts the request and then forwards it
(through another program) to the remote procedure.
• When that procedure has completed its service, it
returns the results or other status to the stub which
passes it back to the program that made the request.
Comparision
REST services
• Architectural style
• Simply calls services via URL
path
• Lightweight – not a lot of
extra xml markup
• Easy to build – no toolkits
required
SOAP services
• XML-based protocol
• Invokes services by calling
RPC method
• Rigid – type checking,
adheres to a contract
• Development tools – WSDL
Soap analyser tool, oXygen
XML
WebServices Basic Overview

More Related Content

What's hot

Web services soap and rest by mandakini for TechGig
Web services soap and rest by mandakini for TechGigWeb services soap and rest by mandakini for TechGig
Web services soap and rest by mandakini for TechGig
Mandakini Kumari
 
Web Services - A brief overview
Web Services -  A brief overviewWeb Services -  A brief overview
Web Services - A brief overview
Raveendra Bhat
 
Web Services
Web ServicesWeb Services
Web Services
Katrien Verbert
 
Rest presentation
Rest  presentationRest  presentation
Rest presentation
srividhyau
 
Webservice Testing
Webservice TestingWebservice Testing
Webservice Testing
Rachana Khedekar
 
Restful Web Services
Restful Web ServicesRestful Web Services
Restful Web Services
Angelin R
 
HTML5 - An introduction
HTML5 - An introductionHTML5 - An introduction
HTML5 - An introduction
Eleonora Ciceri
 
AJAX - An introduction
AJAX - An introductionAJAX - An introduction
AJAX - An introduction
Eleonora Ciceri
 
Web of Science: REST or SOAP?
Web of Science: REST or SOAP?Web of Science: REST or SOAP?
Web of Science: REST or SOAP?
Duncan Hull
 
React with WordPress : Headless CMS
React with WordPress : Headless CMSReact with WordPress : Headless CMS
React with WordPress : Headless CMS
Imran Sayed
 
Web Services Tutorial
Web Services TutorialWeb Services Tutorial
Web Services Tutorial
Lorna Mitchell
 
SOAP vs REST
SOAP vs RESTSOAP vs REST
SOAP vs REST
Nadia Boumaza
 
Web services101
Web services101Web services101
Web services101
chaos41
 
Soap web service
Soap web serviceSoap web service
Soap web service
NITT, KAMK
 
Web architecture - overview of techniques.
Web architecture - overview of  techniques.Web architecture - overview of  techniques.
Web architecture - overview of techniques.
Ruslan Shevchenko
 
Introducing asp
Introducing aspIntroducing asp
Introducing asp
aspnet123
 
ASP.NET WEB API
ASP.NET WEB APIASP.NET WEB API
ASP.NET WEB API
Thang Chung
 
WebServices
WebServicesWebServices
WebServices
Sunil Komarapu
 
Implementation advantages of rest
Implementation advantages of restImplementation advantages of rest
Implementation advantages of rest
Balamurugan Easwaran
 
SOAP vs REST
SOAP vs RESTSOAP vs REST
SOAP vs REST
Mário Almeida
 

What's hot (20)

Web services soap and rest by mandakini for TechGig
Web services soap and rest by mandakini for TechGigWeb services soap and rest by mandakini for TechGig
Web services soap and rest by mandakini for TechGig
 
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
 
Rest presentation
Rest  presentationRest  presentation
Rest presentation
 
Webservice Testing
Webservice TestingWebservice Testing
Webservice Testing
 
Restful Web Services
Restful Web ServicesRestful Web Services
Restful Web Services
 
HTML5 - An introduction
HTML5 - An introductionHTML5 - An introduction
HTML5 - An introduction
 
AJAX - An introduction
AJAX - An introductionAJAX - An introduction
AJAX - An introduction
 
Web of Science: REST or SOAP?
Web of Science: REST or SOAP?Web of Science: REST or SOAP?
Web of Science: REST or SOAP?
 
React with WordPress : Headless CMS
React with WordPress : Headless CMSReact with WordPress : Headless CMS
React with WordPress : Headless CMS
 
Web Services Tutorial
Web Services TutorialWeb Services Tutorial
Web Services Tutorial
 
SOAP vs REST
SOAP vs RESTSOAP vs REST
SOAP vs REST
 
Web services101
Web services101Web services101
Web services101
 
Soap web service
Soap web serviceSoap web service
Soap web service
 
Web architecture - overview of techniques.
Web architecture - overview of  techniques.Web architecture - overview of  techniques.
Web architecture - overview of techniques.
 
Introducing asp
Introducing aspIntroducing asp
Introducing asp
 
ASP.NET WEB API
ASP.NET WEB APIASP.NET WEB API
ASP.NET WEB API
 
WebServices
WebServicesWebServices
WebServices
 
Implementation advantages of rest
Implementation advantages of restImplementation advantages of rest
Implementation advantages of rest
 
SOAP vs REST
SOAP vs RESTSOAP vs REST
SOAP vs REST
 

Viewers also liked

News SA 24 2016
News SA 24 2016News SA 24 2016
News SA 24 2016
Roberta Culiersi
 
Presentación asamblea Associaciò de veïns i veïnes de Natzaret 2015
Presentación asamblea Associaciò de veïns i veïnes de Natzaret 2015Presentación asamblea Associaciò de veïns i veïnes de Natzaret 2015
Presentación asamblea Associaciò de veïns i veïnes de Natzaret 2015
hunben
 
Checkliste für Geschäftsführer
Checkliste für GeschäftsführerCheckliste für Geschäftsführer
Checkliste für Geschäftsführer
Filipe Felix
 
Technical presentation
Technical presentationTechnical presentation
Technical presentation
TakumiSugiyama
 
Trainee all murilo oki
Trainee all   murilo okiTrainee all   murilo oki
Trainee all murilo oki
Leandro Menna
 
‫Cloud technology نسخة
‫Cloud technology   نسخة‫Cloud technology   نسخة
‫Cloud technology نسخة
English TVTC
 
Gute Gründe warum Sie mit dem IT-Systemhaus coretress GmbH arbeiten sollten
Gute Gründe warum Sie mit dem IT-Systemhaus coretress GmbH arbeiten solltenGute Gründe warum Sie mit dem IT-Systemhaus coretress GmbH arbeiten sollten
Gute Gründe warum Sie mit dem IT-Systemhaus coretress GmbH arbeiten sollten
Filipe Felix
 
Урок 53 української мови у 2 класі "Добирання заголовків"
Урок 53 української мови у 2 класі  "Добирання заголовків" Урок 53 української мови у 2 класі  "Добирання заголовків"
Урок 53 української мови у 2 класі "Добирання заголовків"
Viktoria Oliynuk
 
K kolyva-and-eileen-sills 1221
K kolyva-and-eileen-sills 1221K kolyva-and-eileen-sills 1221
K kolyva-and-eileen-sills 1221
3GDR
 
Friction in orthodontics /certified fixed orthodontic courses by Indian den...
Friction in orthodontics   /certified fixed orthodontic courses by Indian den...Friction in orthodontics   /certified fixed orthodontic courses by Indian den...
Friction in orthodontics /certified fixed orthodontic courses by Indian den...
Indian dental academy
 
Dentofacial perspective / cosmetic dentistry course
Dentofacial perspective   / cosmetic dentistry courseDentofacial perspective   / cosmetic dentistry course
Dentofacial perspective / cosmetic dentistry course
Indian dental academy
 
Презентація до уроку української мови в 2кл. "Добирання заголовків"
Презентація до уроку української мови в 2кл. "Добирання заголовків"Презентація до уроку української мови в 2кл. "Добирання заголовків"
Презентація до уроку української мови в 2кл. "Добирання заголовків"
Viktoria Oliynuk
 
Muscles of mastication / dental implant courses by Indian dental academy 
Muscles of mastication / dental implant courses by Indian dental academy Muscles of mastication / dental implant courses by Indian dental academy 
Muscles of mastication / dental implant courses by Indian dental academy 
Indian dental academy
 
Что строить первым делом: казармы или ферму?
Что строить первым делом: казармы или ферму?Что строить первым делом: казармы или ферму?
Что строить первым делом: казармы или ферму?
Sergei Prokofiev
 
Diaporama description physique
Diaporama description physique Diaporama description physique
Diaporama description physique
lebaobabbleu
 
Beginner Guide to Impression Trays in Dentistry
Beginner Guide to Impression Trays in DentistryBeginner Guide to Impression Trays in Dentistry
Beginner Guide to Impression Trays in Dentistry
Iraqi Dental Academy
 
Lawyer in Vietnam Oliver Massmann Capital Markets and Privatization THE BREAK...
Lawyer in Vietnam Oliver Massmann Capital Markets and Privatization THE BREAK...Lawyer in Vietnam Oliver Massmann Capital Markets and Privatization THE BREAK...
Lawyer in Vietnam Oliver Massmann Capital Markets and Privatization THE BREAK...
Dr. Oliver Massmann
 

Viewers also liked (18)

corporate social networks
corporate social networkscorporate social networks
corporate social networks
 
News SA 24 2016
News SA 24 2016News SA 24 2016
News SA 24 2016
 
Presentación asamblea Associaciò de veïns i veïnes de Natzaret 2015
Presentación asamblea Associaciò de veïns i veïnes de Natzaret 2015Presentación asamblea Associaciò de veïns i veïnes de Natzaret 2015
Presentación asamblea Associaciò de veïns i veïnes de Natzaret 2015
 
Checkliste für Geschäftsführer
Checkliste für GeschäftsführerCheckliste für Geschäftsführer
Checkliste für Geschäftsführer
 
Technical presentation
Technical presentationTechnical presentation
Technical presentation
 
Trainee all murilo oki
Trainee all   murilo okiTrainee all   murilo oki
Trainee all murilo oki
 
‫Cloud technology نسخة
‫Cloud technology   نسخة‫Cloud technology   نسخة
‫Cloud technology نسخة
 
Gute Gründe warum Sie mit dem IT-Systemhaus coretress GmbH arbeiten sollten
Gute Gründe warum Sie mit dem IT-Systemhaus coretress GmbH arbeiten solltenGute Gründe warum Sie mit dem IT-Systemhaus coretress GmbH arbeiten sollten
Gute Gründe warum Sie mit dem IT-Systemhaus coretress GmbH arbeiten sollten
 
Урок 53 української мови у 2 класі "Добирання заголовків"
Урок 53 української мови у 2 класі  "Добирання заголовків" Урок 53 української мови у 2 класі  "Добирання заголовків"
Урок 53 української мови у 2 класі "Добирання заголовків"
 
K kolyva-and-eileen-sills 1221
K kolyva-and-eileen-sills 1221K kolyva-and-eileen-sills 1221
K kolyva-and-eileen-sills 1221
 
Friction in orthodontics /certified fixed orthodontic courses by Indian den...
Friction in orthodontics   /certified fixed orthodontic courses by Indian den...Friction in orthodontics   /certified fixed orthodontic courses by Indian den...
Friction in orthodontics /certified fixed orthodontic courses by Indian den...
 
Dentofacial perspective / cosmetic dentistry course
Dentofacial perspective   / cosmetic dentistry courseDentofacial perspective   / cosmetic dentistry course
Dentofacial perspective / cosmetic dentistry course
 
Презентація до уроку української мови в 2кл. "Добирання заголовків"
Презентація до уроку української мови в 2кл. "Добирання заголовків"Презентація до уроку української мови в 2кл. "Добирання заголовків"
Презентація до уроку української мови в 2кл. "Добирання заголовків"
 
Muscles of mastication / dental implant courses by Indian dental academy 
Muscles of mastication / dental implant courses by Indian dental academy Muscles of mastication / dental implant courses by Indian dental academy 
Muscles of mastication / dental implant courses by Indian dental academy 
 
Что строить первым делом: казармы или ферму?
Что строить первым делом: казармы или ферму?Что строить первым делом: казармы или ферму?
Что строить первым делом: казармы или ферму?
 
Diaporama description physique
Diaporama description physique Diaporama description physique
Diaporama description physique
 
Beginner Guide to Impression Trays in Dentistry
Beginner Guide to Impression Trays in DentistryBeginner Guide to Impression Trays in Dentistry
Beginner Guide to Impression Trays in Dentistry
 
Lawyer in Vietnam Oliver Massmann Capital Markets and Privatization THE BREAK...
Lawyer in Vietnam Oliver Massmann Capital Markets and Privatization THE BREAK...Lawyer in Vietnam Oliver Massmann Capital Markets and Privatization THE BREAK...
Lawyer in Vietnam Oliver Massmann Capital Markets and Privatization THE BREAK...
 

Similar to WebServices Basic Overview

WebServices introduction
WebServices introductionWebServices introduction
WebServices introduction
princeirfancivil
 
Web-Services!.pptx
Web-Services!.pptxWeb-Services!.pptx
Web-Services!.pptx
ssuserae0316
 
Esri Web Applications February11 2011
Esri Web Applications February11 2011Esri Web Applications February11 2011
Esri Web Applications February11 2011
delmelle
 
Overview of java web services
Overview of java web servicesOverview of java web services
Introduction to SOAP
Introduction to SOAPIntroduction to SOAP
Introduction to SOAP
Hayati Guvence
 
Soap
SoapSoap
web programming
web programmingweb programming
web programming
shreeuva
 
Soap xp-wg
Soap xp-wgSoap xp-wg
Soap xp-wg
Safwan Hashmi
 
Soap.doc
Soap.docSoap.doc
Soap.doc
xavier john
 
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
Dr. Awase Khirni Syed
 
Mule webservices in detail
Mule webservices in detailMule webservices in detail
Mule webservices in detail
Shahid Shaik
 
Intro to web services
Intro to web servicesIntro to web services
Intro to web services
Neil Ghosh
 
Lecture 3 soap
Lecture 3 soapLecture 3 soap
Lecture 3 soap
Aravindharamanan S
 
Lecture 3 soap
Lecture 3 soapLecture 3 soap
Lecture 3 soap
Jetender Sambyal
 
Exchange of data over internet using web service(e.g., soap and rest) in SAS ...
Exchange of data over internet using web service(e.g., soap and rest) in SAS ...Exchange of data over internet using web service(e.g., soap and rest) in SAS ...
Exchange of data over internet using web service(e.g., soap and rest) in SAS ...
Kevin Lee
 
Web Programming
Web ProgrammingWeb Programming
Web Programming
VijayapriyaP1
 
Web Services
Web ServicesWeb Services
Web Services
F K
 
Jee course web services
Jee course web servicesJee course web services
Jee course web services
odedns
 
Soap
SoapSoap
WebServices SOAP WSDL and UDDI
WebServices SOAP WSDL and UDDIWebServices SOAP WSDL and UDDI
WebServices SOAP WSDL and UDDI
Rajkattamuri
 

Similar to WebServices Basic Overview (20)

WebServices introduction
WebServices introductionWebServices introduction
WebServices introduction
 
Web-Services!.pptx
Web-Services!.pptxWeb-Services!.pptx
Web-Services!.pptx
 
Esri Web Applications February11 2011
Esri Web Applications February11 2011Esri Web Applications February11 2011
Esri Web Applications February11 2011
 
Overview of java web services
Overview of java web servicesOverview of java web services
Overview of java web services
 
Introduction to SOAP
Introduction to SOAPIntroduction to SOAP
Introduction to SOAP
 
Soap
SoapSoap
Soap
 
web programming
web programmingweb programming
web programming
 
Soap xp-wg
Soap xp-wgSoap xp-wg
Soap xp-wg
 
Soap.doc
Soap.docSoap.doc
Soap.doc
 
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
 
Mule webservices in detail
Mule webservices in detailMule webservices in detail
Mule webservices in detail
 
Intro to web services
Intro to web servicesIntro to web services
Intro to web services
 
Lecture 3 soap
Lecture 3 soapLecture 3 soap
Lecture 3 soap
 
Lecture 3 soap
Lecture 3 soapLecture 3 soap
Lecture 3 soap
 
Exchange of data over internet using web service(e.g., soap and rest) in SAS ...
Exchange of data over internet using web service(e.g., soap and rest) in SAS ...Exchange of data over internet using web service(e.g., soap and rest) in SAS ...
Exchange of data over internet using web service(e.g., soap and rest) in SAS ...
 
Web Programming
Web ProgrammingWeb Programming
Web Programming
 
Web Services
Web ServicesWeb Services
Web Services
 
Jee course web services
Jee course web servicesJee course web services
Jee course web services
 
Soap
SoapSoap
Soap
 
WebServices SOAP WSDL and UDDI
WebServices SOAP WSDL and UDDIWebServices SOAP WSDL and UDDI
WebServices SOAP WSDL and UDDI
 

More from Khan625

Mapping and listing in mule
Mapping and listing in muleMapping and listing in mule
Mapping and listing in mule
Khan625
 
Message properties component in Mule
Message properties component in MuleMessage properties component in Mule
Message properties component in Mule
Khan625
 
Jenkins Build System
Jenkins Build SystemJenkins Build System
Jenkins Build System
Khan625
 
Building and Managing Projects with Maven
Building and Managing Projects with MavenBuilding and Managing Projects with Maven
Building and Managing Projects with Maven
Khan625
 
Web services soap
Web services soapWeb services soap
Web services soap
Khan625
 
Web services wsdl
Web services wsdlWeb services wsdl
Web services wsdl
Khan625
 
Web services uddi
Web services uddiWeb services uddi
Web services uddi
Khan625
 
Web services with soap
Web services with soapWeb services with soap
Web services with soap
Khan625
 
Maven
Maven Maven
Maven
Khan625
 
Java Basics
Java BasicsJava Basics
Java Basics
Khan625
 
Mmc rest api user groups
Mmc rest api user groupsMmc rest api user groups
Mmc rest api user groups
Khan625
 
Mapping and listing with mule
Mapping and listing with muleMapping and listing with mule
Mapping and listing with mule
Khan625
 
Message properties component in mule
Message properties component in muleMessage properties component in mule
Message properties component in mule
Khan625
 
Expression filter in Mule
Expression filter in MuleExpression filter in Mule
Expression filter in Mule
Khan625
 
Data weave
Data weave Data weave
Data weave
Khan625
 
Anypoint data gateway
Anypoint data gatewayAnypoint data gateway
Anypoint data gateway
Khan625
 
Mule with drools
Mule with droolsMule with drools
Mule with drools
Khan625
 
Mule esb
Mule esbMule esb
Mule esb
Khan625
 
Idempotent filter with simple file
Idempotent filter with simple fileIdempotent filter with simple file
Idempotent filter with simple file
Khan625
 
Mule with quartz
Mule with quartzMule with quartz
Mule with quartz
Khan625
 

More from Khan625 (20)

Mapping and listing in mule
Mapping and listing in muleMapping and listing in mule
Mapping and listing in mule
 
Message properties component in Mule
Message properties component in MuleMessage properties component in Mule
Message properties component in Mule
 
Jenkins Build System
Jenkins Build SystemJenkins Build System
Jenkins Build System
 
Building and Managing Projects with Maven
Building and Managing Projects with MavenBuilding and Managing Projects with Maven
Building and Managing Projects with Maven
 
Web services soap
Web services soapWeb services soap
Web services soap
 
Web services wsdl
Web services wsdlWeb services wsdl
Web services wsdl
 
Web services uddi
Web services uddiWeb services uddi
Web services uddi
 
Web services with soap
Web services with soapWeb services with soap
Web services with soap
 
Maven
Maven Maven
Maven
 
Java Basics
Java BasicsJava Basics
Java Basics
 
Mmc rest api user groups
Mmc rest api user groupsMmc rest api user groups
Mmc rest api user groups
 
Mapping and listing with mule
Mapping and listing with muleMapping and listing with mule
Mapping and listing with mule
 
Message properties component in mule
Message properties component in muleMessage properties component in mule
Message properties component in mule
 
Expression filter in Mule
Expression filter in MuleExpression filter in Mule
Expression filter in Mule
 
Data weave
Data weave Data weave
Data weave
 
Anypoint data gateway
Anypoint data gatewayAnypoint data gateway
Anypoint data gateway
 
Mule with drools
Mule with droolsMule with drools
Mule with drools
 
Mule esb
Mule esbMule esb
Mule esb
 
Idempotent filter with simple file
Idempotent filter with simple fileIdempotent filter with simple file
Idempotent filter with simple file
 
Mule with quartz
Mule with quartzMule with quartz
Mule with quartz
 

Recently uploaded

5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
operationspcvita
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
Antonios Katsarakis
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Alpen-Adria-Universität
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
Chart Kalyan
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
Alex Pruden
 
"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota
Fwdays
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
Safe Software
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
Jason Yip
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
ScyllaDB
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
Neo4j
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 

Recently uploaded (20)

5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
 
"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 

WebServices Basic Overview