SOAP

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

flashcard set

Earn XP

Description and Tags

Learn about SOAP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

SOAP

simple object access protocol

2
New cards

what is soap

the core underlying middleware protocol for most web services

3
New cards

container

a process whose main goal is to host components

4
New cards

container and component interaction

the container provides the lifecycle services and the components provide the user functionality

5
New cards

containers in web services

they are typically a web server that can redirect requests to other code

6
New cards

SOAP vs XML RPC

SOAP also uses XML to generate messages passed to endpoints, but doesn’t mandate a single schema or a single syntax

7
New cards

what does a soap interaction consist of 1

wire protocol - how data is passed over the network (http)

8
New cards

what does a soap interaction consist of 2

marshalling - converting values into a wire representation suitable for transfer (xml)

9
New cards

what does a soap interaction consist of 3

endpoint addresses - the mechanism for identifying where data should be streamed to (urls)

10
New cards

how is soap message based

the client sends a message and may later receive a result message back. fast and non blocking

11
New cards

programming view on asynchonicity

makes SOAP more like MOM than DO or RPC, harder for the programmer to control

12
New cards

current SOAP abstraction

it sits on top of HTTP as its transport protocol. note that there is no requirement that SOAP has to use HTTP

13
New cards

significant things in SOAP requests and responses 1

extensive use of XML namespaces

14
New cards

significant things in SOAP requests and responses 2

the main part of the request format is user-specified

15
New cards

significant things in SOAP requests and responses 3

the forms of requests and responses are the same - an envelope containing message body and the payload in a user-defined XML format

16
New cards

significant things in SOAP requests and responses 4

it is just xml documents, way simpler than most other middlewares that have been developed