• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

About SOAP

 
Ranch Hand
Posts: 8945
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
SOAP is a protocol but it uses HTTP or SMTP as a transport protocol. Then does it mean that SOAP just defines the structure of XML exchanged between client and server?
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually SOAP messages can be transmitted any number of ways, HTTP just happens to get the most publicity. One obvious starting point to learn more is the W3C site defining the protocol.
Bill
 
Pradeep bhatt
Ranch Hand
Posts: 8945
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does the J2EE spec provide support for encryption of SOAP messages or is just SSL suffice
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Security standardization in web services is pretty much up to organizations other than Sun or the JCP (such as ).OASIS and W3C.
 
Ranch Hand
Posts: 1312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Structure of SOAP message
1. Message with no attachment is contains
- SOAP Part is contains SOAP Envelope
In SOAP Envelope is contains
- SOAP Header (optional) : header
- SOAP BODY : XML content and SOAPFault(optional)
2. Message with attachment is contains all in Message with no attachment. addition in SOAP Part :
- Attachment Part (optional) is contains MINE Header and content (XML or non-XML)
 
reply
    Bookmark Topic Watch Topic
  • New Topic