• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
projectsgeek

ProjectsGeek

Download Mini projects with Source Code, Java projects with Source Codes

  • Home
  • Java Projects
  • C++ Projects
  • VB Projects
  • PHP projects
  • .Net Projects
  • NodeJs Projects
  • Android Projects
    • Project Ideas
      • Final Year Project Ideas
      • JSP Projects
  • Assignment Codes
    • Fundamentals of Programming Language
    • Software Design Laboratory
    • Data Structure and Files Lab
    • Computer Graphics Lab
    • Object Oriented Programming Lab
    • Assembly Codes
  • School Projects
  • Forum

Beginners | What is SOAP Web Service ?

January 15, 2017 by ProjectsGeek Leave a Comment

What is SOAP Web Service ?

 

SOAP stands for Simple Object Access Protocol which used XML format to communicate between two systems. This service can interact or talk with remote system using XML messages. SOAP is a W3C recommendation for building web services. This is platform independent as well as language independent.

Example : Server is running SOAP service using .Net technology and our client is java client. So in this case our client and server will talk using XML message and independent of technologies they are using. Client application is just concerned about SOAP messages which it can understand. Our client is fine till the point server is returning SOAP messages.

 

SOAP Web Service

 

Sample Request

<?xml version="1.0"?>

<soap:Envelope
xmlns:soap="https://www.w3.org/2003/05/soap-envelope/"
soap:encodingStyle="https://www.w3.org/2003/05/soap-encoding">

<soap:Body>
<m:GetName xmlns:m="https://www.websphereportal.org/name">
<m:Item>123456</m:Item>
</m:GetName>
</soap:Body>

</soap:Envelope>

As you can see we are sending some data to server like item number based on which it will return price of this item. This is input which we have to provide to get output from soap web service. 

Sample Response

<?xml version="1.0"?>

<soap:Envelope
xmlns:soap="https://www.w3.org/2003/05/soap-envelope/"
soap:encodingStyle="https://www.w3.org/2003/05/soap-encoding">

<soap:Body>
<m:GetNameResponse xmlns:m="https://www.websphereportal.org/name">
<m:Price>100</m:Price>
</m:GetNameResponse>
</soap:Body>

</soap:Envelope>

As you can see we are receiving response from server  inside price tag which is price for the item. Now we can use this result in our application to process information.

 

SOAP web Services are very common in today’s website architectures or I will say most important part which makes system more flexible and non cohesive. You can call this web service from your java code or .Net code and you can retrieve data from remote system. Then you can process this message to retrieve data and show it on your website or portal. This is advanced concept for college level students but easy to understand and implement as well. We will discuss about other types of web services and web servers in our coming posts.

Other Projects to Try:

  1. Cab Service mini project in .Net
  2. Java Tutorial for beginners – Introduction to Java
  3. Web based Mail Service Client project
  4. Web Skeletonizer Service project in Java
  5. Web Service for Multiple clients Project Idea

Filed Under: Uncategorized

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Tags

.Net Projects Download Android Project Ideas Android Projects Angular 2 Assembly Codes C # Projects C & C++ Projects C++ Projects Class Diagrams Computer Graphics Database Project Data Mining Projects DataScience Projects Datastructure Assignments Download Visual Basic Projects Electronics project Hadoop Projects Installation Guides Internet of Things Project IOS Projects Java Java Interview Questions Java Projects JavaScript JavaScript Projects java tutorial JSON JSP Projects Mechanical Projects Mongodb Networking Projects Node JS Projects OS Problems php Projects Placement Papers Project Ideas Python Projects seminar and presentation Struts

Search this Website


Footer

Download Java Project
Download Visual Basic Projects
Download .Net Projects
Download VB Projects
Download C++ Projects
Download NodeJs Projects
Download School Projects
Download School Projects
Ask Questions - Forum
Latest Projects Ideas
Assembly Codes
Datastructure Assignments
Computer Graphics Lab
Operating system Lab
australia-and-India-flag
  • Home
  • About me
  • Contact Form
  • Submit Your Work
  • Site Map
  • Privacy Policy