Freelancer
Freelancer

Reputation: 844

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?

Upvotes: 0

Views: 57

Answers (1)

user764357
user764357

Reputation:

It seems they've stolen their content from Reuters OpenCalais documentation (ClearForest is also a Reuters subsidiary.

Unfortunately there isn't any documentation I could find on the ClearForest XML Schema to describe it further.

Upvotes: 1

Related Questions