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