List of scripts to call web services via EKL.
What is web service?
A Web-Service is any standard application that is available over the network (Internet) which is capable of interacting with other Application over the same network. Other applications sends call or request to web service and it responds to the call with requested data or performs some task. The response of the web services are in standard formats like XML, JSON, etc.
How to get Server URL and Security context
There is a “GetSystemInfo()” function available in EKL. This function can be used to get server URL and security context. Below code shows how to use this function:
// Common Variables for HTTP Requests
let serverURL, requestURI, securityCtx (String)
serverURL = GetSystemInfo("serverurl")//Get the URL of Current Server
securityCtx = GetSystemInfo("securitycontext")//Get the Security Context for Current SessionHow to get the CSRF Token? (Click here)
Details about CSRF token
