| Author |
About SOAP
|
Pradeep bhatt
Ranch Hand
Joined: Feb 27, 2002
Posts: 8876
|
|
|
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?
|
Groovy
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12265
|
|
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
|
Java Resources at www.wbrogden.com
|
 |
Pradeep bhatt
Ranch Hand
Joined: Feb 27, 2002
Posts: 8876
|
|
|
Does the J2EE spec provide support for encryption of SOAP messages or is just SSL suffice
|
 |
Lasse Koskela
author
Sheriff
Joined: Jan 23, 2002
Posts: 11962
|
|
|
Security standardization in web services is pretty much up to organizations other than Sun or the JCP (such as ).OASIS and W3C.
|
Author of Test Driven (2007) and Effective Unit Testing (2013) [Blog] [HowToAskQuestionsOnJavaRanch]
|
 |
somkiat puisungnoen
Ranch Hand
Joined: Jul 04, 2003
Posts: 1312
|
|
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)
|
SCJA,SCJP,SCWCD,SCBCD,SCEA I
Java Developer, Thailand
|
 |
 |
|
|
subject: About SOAP
|
|
|