I'm relatively new to WCF, specifically the WCF 4 REST Online Template.
I am testing a basic method:
[WebGet(UriTemplate = "Test")]
public string Test()
{
return "Test";
}
The response generated is:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">Hello World</string>
Is there any way to send back anything other than XML or JSON, or is there any way to modify the response?