what is the difference b/w PUT and POST method to send data
to the server
Answer Posted / rahul
PUT replaces the resource at the known url if it already exists, so sending the same request twice has no effect. In other words, calls to PUT are idempotent. The RFC reads like this: The fundamental difference between the POST and PUT requests is reflected in the different meaning of the Request-URI.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how many types of Inheritance?
What is this keyword used for?
whatis Home interface and Remoteinterface? with example?
Is java code slower than native code?
Can we overload the constructors?
Explain the importance of throwable class and its methods?
What is meant by stack and queue?
Difference between a class and an object?
What is a classloader in java?
What are kinds of processors?
Does the order of public and static declaration matter in main method?
What classes of exceptions may be thrown by a throw statement?
what happens when a thread cannot acquire a lock on an object? : Java thread
What is the set interface in java programming?
Can we catch more than one exception in a single catch block?