Good day,
I have a custom Web service that am using for a test.
class CustomerStatementService
{
public str getFoo()
{
return "Hello World";
}
}
When i make a GET call on this service i get the class description and not the expected response.
{
"Parameters":[],
"Return":{
"Name":"return",
"Type":"String"
}
}
I also returned a contract class. instead of getting the values in json, i got the response as the description of the class.
Thanks for your assistance.