Asynchronous Apex

|
| By Rushali kashyap

Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations

CakePHP | Redirect from http to https URL

| By Webner

If you want to redirect from http to https in CakePHP, generally redirect method code is like this: $this­->redirect(array(“controller” => “myController”,”action” =>t; “myAction”)); But if your site is running on http protocol it will redirect to the url with http

Moodle and Java | Retrieving users’ data from Moodle using External Java Application

| By Webner

Retrieving users’ data from Moodle using External Java Application We can write a basic REST moodle client code using Java to fetch users’ records from moodle. Before writing the code, you need to perform below steps in Moodle which are

Linux | Installation of custom AWS metrics script & prerequisites for AMI

| By Webner

1.  Login to Amazon Linux-AMI / Centos / RedHat: Using ssh 2.  To Upgrade from a previous version of the scripts: # sudo yum install perl-DateTime 3.  To install the scripts for the first time: # sudo yum install perl-DateTime

Curl | How to test a Restful web service using curl

| By Webner

Let’s consider, we have a demo Restful service (created in Java Spring here but you can create in any language) to login user which accepts username and password as input and returns Success/Failure in response. Request Object : Demo Login