I use Fiddler to call my method. Here are the parameters:
{"timestamp":"",
"json":
{
"something":[{"text":"bla","status":"1"},{"text":"sfdf","status":"1"}],
"somethingElse":[{"description":"description""status":"1"}],
"som1":[{"id":"1""status":"1"}]
}
}
The path to the method is correct. Here is the signature:
public void MyMethod(string timestamp, string json)
But it never gets called. How to modify my method so that it gets called? Should the parameter 'json' be not string?
I make the call via Fiddler. My method is in C#. The project is Wcf service.
I tried changing the type of json from string to object, and the method gets called, but json has no value.