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
What is the difference between the jdk 1.02 event model and the event-delegation model introduced with jdk 1.1?
How do you include a string in java?
Explain the difference between abstract classes and interfaces in java?
How does arrays sort work in java?
What is jvm? How its run?
Can an abstract class be a final class?
How to handle a web browser resize operation?
What are the basic concepts of OOPS in java?
what is nested class in java?
What is the use of using enum to declare a constant?
What is number data type?
What is object of class in java?
How many classes can any class inherit java?
What will happen if there is a default method conflict as mentioned above and we have specified the same signature method in the base class instead of overriding in the existing class ?
What is difference between static class and normal class?