what does this xml code in the body of POST request mean?



I am trying to implement the POST request for my HTTP server , The tutorials point website has used the method for applying some kind of change , and the server returns this in the response body:



<html>
<body>
<h1>Request Processed Successfully</h1>
</body>
</html>


the POST request that was sent has this entity body:



<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://clearforest.com/">string</string>


what does this xml code is supposed to do and what does it mean?


No comments:

Post a Comment