WCF Ajax service - How can I pass an Array or JSON to the service? What should the method parameter
- by Kettenbach
I have a very simple WCF service I would like to pass it an array or json?
[OperationContract, WebGet(ResponseFormat = WebMessageFormat.Json)]
public string GetPreDisplay(string inputData)
{
//DoSomething with inputData
return "Sweet!";
}
My javascript...
var data = [paymentControls['claimNum'], paymentControls['claimSeq']];
$lps.GetPreDisplay(data, onComplete);
Obviously string is the wrong type. Can anyone point me in the right direction?
Thanks,
~ck