Addressing Apex Heap Size Issues

Salesforce enforces specific Apex Heap Size Limits, with a limit of 6MB for synchronous transactions and 12MB for asynchronous transactions. These limits are considered governor limits, meaning they are strict and cannot be adjusted. The ‘Apex heap size too large’ error occurs when there is an excessive amount of data stored in memory during processing. …

Addressing Apex Heap Size Issues Read More »

The parent POM and the main project POM are deployed to the Maven repository for sharing

In real-world projects, the reuse of dependencies across various projects and APIs is a common practice, and a parent POM proves invaluable in such scenarios. It serves as a central hub for efficiently managing shared resources and provides a single point for making modifications that can be applied across all our projects. The parent POM …

The parent POM and the main project POM are deployed to the Maven repository for sharing Read More »

Salesforce Wrapper Class

Author: Neyaj Ansari, Tenetizer Technology A wrapper class is a class nested within another class that encapsulates a set of variables within a single object. These variables can have similar or different data types. Illustration: 1. Wrapper Class 2. Wrapper Class with Constructor Utilization of Wrapper Class in Apex A wrapper class assists developers in …

Salesforce Wrapper Class Read More »

Implementing Salesforce Web-to-Lead and Web-to-Case with JavaScript [CORS-Enabled]

Have you encountered a CORS problem when attempting to embed Web-to-Lead or Web-to-Case forms on your website? Cross-Origin Resource Sharing (CORS) Cross-Origin Resource Sharing (CORS) is an HTTP header-based mechanism that enables a server to specify which origins (domains, schemes, or ports) other than its own are permitted to load resources through a web browser. …

Implementing Salesforce Web-to-Lead and Web-to-Case with JavaScript [CORS-Enabled] Read More »

Using Flex Gateway as a Kubernetes Ingress Controller in Connected Mode

Authored by Neyaj Ansari of Tenetizer Technology Anypoint Flex Gateway is a lightweight, cloud-native API gateway with versatile deployment options. It can expose both MuleSoft APIs and non-MuleSoft APIs to the public internet. When configured in connected mode, Flex Gateway becomes a valuable tool for managing and securing APIs running on Kubernetes. In Kubernetes, an …

Using Flex Gateway as a Kubernetes Ingress Controller in Connected Mode Read More »

Initiating Your Linux Journey: An Introductory Guide for Beginners (Part 2)

Essential Commands to Know: 1.Command Manual The initial command I’d like to introduce is one that serves as a valuable resource for comprehending various other commands. The ‘man’ command offers an in-depth overview, including the synopsis, author’s name, available options, a brief description, and other informative details pertaining to the specified command. 2.Command to Determine …

Initiating Your Linux Journey: An Introductory Guide for Beginners (Part 2) Read More »

Encryption of JSON Data using AES

Opening statement Encryption has emerged as a critical necessity in the realm of software development, particularly in light of the risks tied to handling sensitive information. This imperative extends not only to safeguarding data within our internal systems but also to securing data transmitted over networks. A noticeable trend has arisen wherein an increasing number …

Encryption of JSON Data using AES Read More »