Is it possible to call a web service from javascript within a Design Studio form? We would like to add validation to data entry on a Design Studio form by utilizing a web service.
You can call any web server using httpRequest
Same way you parse the return from a DME or AGS call.
var sInfo = portalWnd.httpRequest(URLStr); var vObjDMEXML = new portalWnd.DataStorage(sInfo); var vRecords = vObjDMEXML.document.getElementsByTagName("RECORD");