Saturday, March 18, 2017

what is the difference between web service and a web application?

Web Application:Any application which we can run in our web browser is a web application.

Web Service:A web service is an Application Program Interface (API) that runs on the server, which provide data to the client over http through a standardized messaging system. (XML, JSON, etc...). 

No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...