Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is REST? [duplicate]

Tags:

rest

c#

.net

wcf

Possible Duplicate:
What am I not understanding about REST?

What is REST? How does it relate to WCF? I have been asked to look into RESTful implementation of services. Can you please point me to links that would be helpful for beginners.

I am a .NET developer with a decent knowledge of ASP.NET

like image 384
Developer Avatar asked Jun 02 '09 18:06

Developer


People also ask

What does duplicate data mean?

Duplicate data is any record that inadvertently shares data with another record in a Database. Duplicate data is easy to spot and it mostly occurs when transferring data between systems. The most popular occurrence of duplicate data is a complete carbon copy of a record.

How do I stop duplicate API calls in react native?

we can call memoize function only one time with particular unique set of arguments. If we call it again will same arguments, it is not going to run the logic inside of the memoized function. Rather it will return previously fetched set of data only. This will prevent making duplicate api calls....


1 Answers

REpresentational State Transfer

It is basically the HTTP protocol, which was originally created to allow representational state transfer, not just transfer of web pages. HTTP is most commonly used to GET content and POST data. But it can also be used to PUT and DELETE data, as well as get HEADer information, etc.

like image 84
jrista Avatar answered Sep 18 '22 13:09

jrista