Web Services Flashcards
What is JSON and what it is used for?
Java Script object notation, It is a structured format used to send data from a client to server and vice versa.
What is an API
Application Programming Interface - is an interface for software to communicate with other software.
What is REST
Representational state transfer is a set of specifications with rules about how to use APIs and WEB Services.
What is a Web Service
Is an API for the context of the WEB. That is accessible via WEB.
What are the steps for creating a Web service in abap
1) Create a Function Module
2) Create a web service from the FM
3) Follow the steps in SOAMANAGER.
What is SOAP?
Simple object access protocol. Rules and definitions on how two applications will talk to each other (SOAP Message and so on).
What contains a SOAP Message
Envelope
Header with data about the content and authentication if required
Body with the request and parameters.
What is Fiddler
Is a tool that captures HTTP traffic and it can be used to get request and response so that you can see what is actually going on. Can be used to capture secure trafic (SSL).