You need to an HTTP request to update the Country property of an Employees record which has a value of as 1000

DRAG DROP
There is MS Visual Studio 2010 and MS .NET Framework 4 application PassGuideApp.
An WCF data service service is created.
This service use the URL http://PassGuide.com/PassGuide.svc.
You need to an HTTP request to update the Country property of an Employees record
which has a value of as 1000. The other properties should not be changed.

DRAG DROP
There is MS Visual Studio 2010 and MS .NET Framework 4 application PassGuideApp.
An WCF data service service is created.
This service use the URL http://PassGuide.com/PassGuide.svc.
You need to an HTTP request to update the Country property of an Employees record
which has a value of as 1000. The other properties should not be changed.

Answer:

Explanation:



Leave a Reply 4

Your email address will not be published. Required fields are marked *


John Galt

John Galt

You obviously need the payload:
{ Country ‘England’ }

and the palyload type:
Content-Type application/json

John Galt

John Galt

And the final choice is between Host PassGuide and Accept: application/json, and clearly the Host is the right answer since we’re sending a message, not receiving it (plus the service address does not include the host, so we need to include it separately).