Trying to call a apex remote method in Skuid,but getting this error :
Uncaught {faultcode:‘soapenv:Client’, faultstring:'No service available for class ‘TestClass’ ', }
Here is my Apex code :
global class TestClass {
webservice static string testMe(String str){
return ‘Success’;
}
}
I have added AJAX Toolkit in resource as External type,as per the below link
https://community.skuid.com/t/calling-apex-function
Inline-Script :
var params = arguments[0], $ = skuid.$;
var result = sforce.apex.execute(“TestClass”,“testMe”,{str:‘test’});
console.log(result);
getting this error " Uncaught {faultcode:‘soapenv:Client’, faultstring:'No service available for class ‘TestClass’ ', } "
Question
No able to Call Apex Webservice(SOAP API) Method in Skuid
This topic has been closed for replies.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.