Web Services And APIs
In progress We b ser vic es An d A P I Int egra tion B asics ------------------------------------------------------------- Webservices : Webservices are synchronous services. Because immediately we send the request, we get the response. API (Application Program Interface) In the above image, from the local system, we send a request to the API ( a program to calculate the addition) which is located in a remote server through HTTP. In return, we get the response of the added value as part of the response over HTTP.API is nothing but a program that performed the requested task by taking the request value processing them and returning the response. Requirement : I have a .java application and also an application built with .net.i wanted to connect with each other. Bu t they are two different applications built with different technologies. So to communic ate with 2 different applications built in totally different languages is difficult to interact with. we need a common set of sta...