Saturday 12, Apr 2025
We are moved to new domain
Click -> www.ehowtonow.com
Friday, 27 December 2013

SOAP Web service Introduction


In this tutorial we are going to see the introduction about SAOP web service.

SOAP – Simple Object Access Protocol is standard protocol specification for message exchange based on XML.  Web service as two component

  1. Client
  2. Service Provider

Communication between web service and client happens using XML message. The client must knows the following details to communicate with service provider.Service provider will create a standard XML file which will have all the information given below.

  1. Location of web service provider
  2. Functions available, signature and return types of function.
  3. Communication protocol.
  4. Input output formats

If this file (WSDL) is given to client then client can access the web service.

WSDL – Web Service Description Language

WSDL is a XML file, which is used to describe the details of web service such as how to implement web service, URI, port, method names, arguments, and data types. WSDL is XML so is both human readable and machine  consumable.WSDL used to call and bind the service.
WSDL for web service is published publicly so client can understand the nature of service and consume it accordingly.WSDL file contains following details

  1. Port/End point
  2. Input message format
  3. Output message format
  4. Security protocols need to be followed
  5. Which protocol the web service uses

Access the web service

You can access the web service in following ways

  1. WSDL file given to Client
  2. Service Provider register its WSDL to UDDI and Client can access the WSDL from UDDI

Shop and help us

Flipkart Offer Snapdeal offer Amazon.in offer Amazon.com offer

Related Posts:

  • JAX-WS Hello World Web serviceIn this tutorial we are going to see how to create web service end point and client. Default its document style SOAP binding. Follow the steps given below to create hello world SOAP web service. 1. Open Eclipse, Select Fil… Read More
  • Axis2 – Lifecycle of Web Service message To understand Axis2 and what it does, you must have good idea of life cycle of Web services message.See the figure given below. This image collected from official web site of Apache Axis2 The sending application create… Read More
  • File Upload using JAX-RS RESTful WebserviceIn this tutorial we are going to see how to upload file using Jersey RESTful web service 1. Create new Dynamic web project by choosing File –> New –> Dynamic Web Project . 2. Create the Project called RESTful-WebServic… Read More
  • Axis2 – Message exchange patternIn this Tutorial we are going to see the quick overview of SOAP  message exchange patterns. Message Exchange PatternAll the SOAP messages carry the same structure, the ways in which they are used can be combined into a … Read More
  • JAX-WS wsgen tool In this tutorial we are going to see how to generate web service client using wsgen tool. The wsgen tool is used to generate required files from web service implementation class for web service deployment. The wsgen tool is … Read More
  • Blogger Comments
  • Facebook Comments
  • Disqus Comments

0 comments:

Post a Comment

Item Reviewed: SOAP Web service Introduction Rating: 5 Reviewed By: eHowToNow