I have no idea of the URL to use for a call to WCF service method using jQuery. I'm new to WCF.
url:'http://localhost:8732/Design_Time_Addresses/RnDServiceLibrary/Service1/mex/SetJSON',
The above is not working.
I have no idea of the URL to use for a call to WCF service method using jQuery. I'm new to WCF.
url:'http://localhost:8732/Design_Time_Addresses/RnDServiceLibrary/Service1/mex/SetJSON',
The above is not working.
Use service url/method where method is used in service. Url="http://localhost:52136/Service1.svc/GetCustomer"; where GetCustomer is method that is created you in you wcf service.
Please Check this link also Wcf Service Jquery
I first host the wcf service in localhost and then I use this url http://localhost:81/Test/Service.svc/MethodName?parameterName=" + "{ \"pl\":" + mylist + " }"