I have this code in the onLoad instance of a webform and am getting the error “XMLRPC is undefined” when I try to load the page via the web. I do not know JavaScript, so I don’t know what to include to set that up. Any ideas?
var appName=“Demo ADISMembership”;
var userID=“”;
var password=“”;
var inputArray = new Array(3);
inputArray[0]=userID;
inputArray[1]=password;
inputArray[2]=appName;
var balancedUrl=XMLRPC.call(“https://vwtest.oas.psu.edu/isapi/gi.dll/rpc2","getBalancedURL”,inputParams);
document.write(balancedUrl);