• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

7 Cards in this Set

  • Front
  • Back

What does the acronym SOAP stand for?

Simple object access protocol

What does the acronym WSDL stand for?

Web Service Definition Language or Web Service Discovery Language

What does the acronym REST stand for?

Representational state transfer

What is REST good for?

Web Services, Limited bandwidth (smaller message size), limited resources (no xml parsing), exposing data over internet, easily accessed (even javascript can use), Stateless

What is SOAP good for?

Enterprise (reliable & secure), asynchronous processing (multiple threads/users), Stateful, defined standards

What does a WSDL document define?

Services as collections of network endpoints, or ports. Defines an XML grammar for describing network services. The document itself is an XML formatted set of definitions describing web service public interface.

Re: SOAP, define marshalling & unmarshalling

Very similar to serialization. Allows for data conversion into a bytestream, and conversion back to original data.