1 12, 2020

Lightning Web Component (Salesforce)

2020-12-01T05:16:04+00:00December 1, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

LWC is a new programming model leveraging recent web standards. This framework is quite powerful and allows developers to do customization with the best approach. Web Standards and Specialized services like Base Lightning Components, Lightning Data Service, and User Interface [...]

11 11, 2020

Salesforce Einstein

2020-11-11T05:43:54+00:00November 11, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

Salesforce Einstein is the first encompassing AI for CRM. Einstein is an integrated set of AI technologies that make Salesforce Customer 360 degrees smarter and bring AI to trailblazers everywhere. Salesforce is one of the earliest adopters of AI capabilities [...]

4 11, 2020

Salesforce Dashboard Customization

2020-11-04T06:52:07+00:00November 4, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

Dashboards in Salesforce are the graphical representation and easily understandable visual presentation of reports data in salesforce. Salesforce dashboards have some visual representation components like graphs, visualforce pages, charts, tables, gauges, and metrics. Salesforce dashboard components are used to represent [...]

28 10, 2020

How to get Salesforce object records with only required fields in Apex

2020-10-28T13:10:38+00:00October 28, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

Problem: If you want to get records with dynamic fields (all fields or only required fields) selection of an object in Salesforce. Solution: List normalFields = new List(); List requiredFields = new List(); Schema.DescribeSObjectResult objectDetails = ObjectName.sObjectType.getDescribe(); Map fieldsMap = [...]

21 10, 2020

Azure API Management

2020-10-21T04:14:02+00:00October 21, 2020|Cloud|0 Comments

|
| ByWebner

INTRODUCTION Azure API Management is a secure, scalable, and reliable way to manage, consume, and publish the APIs which are running on the Microsoft Azure platform. It provides the tools to fully manage the APIs. It makes sure that the [...]

28 06, 2019

How to close Heroku Postgres Database connections

2019-06-28T12:43:55+00:00June 28, 2019|Big Data, Cloud|0 Comments

|
| ByWebner

Problem: Heroku Postgres Database Fatal error too many database connections for role ‘username’ Solution: 1. First install Heroku toolbelt with command a. sudo snap install heroku --classic 2. Login from command line a. heroku login 3. Check current database connections [...]

23 04, 2019

Class ‘App\Controller\Aws\S3\S3Client’ not found error in CakePHP 3.*

2019-04-23T13:19:29+00:00April 23, 2019|Cloud, Database, Linux, Windows, Mac, Others (Technical), PHP Frameworks, Web Development|0 Comments

|
| ByWebner

How to resolve "Class 'App\Controller\Aws\S3\S3Client' not found" error in CakePHP 3.* Problem: Class 'App\Controller\Aws\S3\S3Client' not found error occurs when we are trying to create S3Client class object with given code (code copied from github): $s3 = new Aws\S3\S3Client ( [ [...]

12 02, 2019

Send text message by Alexa through Twilio

2019-02-12T12:56:07+00:00February 12, 2019|Cloud|0 Comments

|
| ByWebner

Steps to write code to send text message by Alexa through Twilio Alexa is Amazon’s cloud-based voice service. With Alexa, masses can build natural voice experiences that offer customers a simple and easy way to interact with the latest technologies. [...]

10 01, 2019

Send Bulk Emails Using Amazon SES

2019-01-10T12:20:39+00:00January 10, 2019|Cloud|1 Comment

|
| ByWebner

Send Bulk Emails Using Amazon SES Amazon SES- Amazon SES (Simple Email Service) is a cloud based email sending service used by developers and for marketing purposes. It is a reliable, cost-effective service for all sizes of businesses. Here we [...]

30 11, 2018

Creating custom log for AWS Lambda

2018-11-30T10:53:10+00:00November 30, 2018|Cloud|0 Comments

|
| ByWebner

Creating custom log files for AWS Lambda function using Java other than using CloudWatch For developers who are using AWS Lambda function either for executing several concurrent processes or for processing large files; monitoring logs in CloudWatch is definitely a [...]

26 11, 2018

Access S3 buckets from EC2 instances

2018-11-26T12:06:35+00:00November 26, 2018|Cloud|1 Comment

|
| ByWebner

Access S3 buckets from EC2 instances We’ll follow few steps to access S3 bucket from EC2 instance with the help of ROLE that grants access to the bucket. For this we’ll use IAM to create the role. Quick steps below: [...]

18 10, 2018

Sending email using Amazon SES service

2018-10-18T12:30:20+00:00October 18, 2018|Cloud|0 Comments

|
| ByWebner

Sending email with or without Attachment using Amazon SES service First download the aws library using the this link: http://docs.aws.amazon.com/aws-sdk-php/v3/download/aws.zip link and save it in project. Now the usage of library is below where we write the code to send [...]

Go to Top