I\'m trying to call a simple JSON webservice with a parameter in objective c. Doesn\'t work so far.
Here is the web service method:
[WebMethod]
[ScriptMe
For the iOS part,
Your code looks OK. There should be no problem on the client side. But you can do the following debuggings;
sendSynchronousRequest:returningResponse:error
insert a breakpoint and check if your jsonData is valid. Because you are not checking the error
you assigned for JSON Serialization.Cheers