WinsurTech Blog | Insurance Concepts and Practical Solutions

Microsoft Azure: Backup

Author - Webner
|
10:30 am
|
1 Comment
| |

Azure Backup

Azure Backup is the Azure-based service you can use to backup and restore your data in the Microsoft cloud. Azure Backup replaces your existing on-premises or off-site backup solution with a cloud-based solution that is reliable, secure, and cost-competitive. Many cloud vendors offer some kind of backup service as it is a simple but important use case for every business.

Backing up your data to a cloud service like Microsoft Azure has a few advantages over traditional on-premise backup solutions which include:

1. Capacity
When you taking backing […]

Purpose of “Insuring Agreement” and what is covered in it

Author - Webner
|
9:27 am
|
0 Comments
| |

What is an Insuring Agreement?

An insuring agreement is the part of an insurance contract in which the insurance company explains exactly which risks it will give insurance coverage for in exchange for premium payments at a certain amount and interval. The insuring agreement also generally lists the exclusions for insurance coverage so that the policyholder knows the specific extent of their coverage. Insuring agreements are necessary in case a conflict arises over whether or not a specific loss is covered. Both the insurance company and the policyholder should be able to determine from the insuring agreement whether […]

AWS Relational Database System

Author - Webner
|
8:59 am
|
1 Comment
| |

Overview:

RDS is a Relational Database Service that helps you to manage your database on the cloud through the desired database engine. The AWS RDS and database administration tasks can be managed easily through simple steps.

Amazon RDS is a fully manageable and scalable cloud service that takes care of all the maintenance, backups, and patching for you. You can take the backup manually or schedule the Amazon RDS for automatic backup. Amazon RDS provides the facility to scale up and scale down the CPU, MEM, and IOPS. If your requirement is high memory, high CPU and low […]

DevOps Ecosystem

Author - Webner
|
12:56 pm
|
0 Comments
| |

What is DevOps and why it is gaining popularity?

DevOps (Development and Operations) is a culture that promotes collaboration between the development and operations team to increase the organization’s ability to deliver products or applications in an automated and repeatable way. Today an increasing number of organizations are implementing DevOps, fueled by reports of the benefits of DevOps which includes less time consumption to deliver things to market, reduced costs, increased security, and higher quality of products. So, it can be defined as a type of agile relationship between development and IT operations with a basic goal […]

AWS Monitoring Tools

Author - Webner
|
12:50 pm
|
0 Comments
| |

Monitoring Tools

AWS provides the multiple tools that help the users to monitor Amazon resources and applications that are hosted on AWS cloud Infrastructure. You can customize these tools to do monitoring for you when you are not using Amazon Web Service console or you can do the monitoring manually. Automatic Monitoring tools are divided into three components as mentioned below:
a) System Status Check.
b) Instance Status Check.
c) Amazon CloudWatch.

A system check is a tool that can detect the problem that may harm your instances and the System Status Check tool is preprogrammed to check […]

Salesforce Script To Fetch Object

Author - Webner
|
12:51 pm
|
1 Comment
| |

Salesforce script to fetch object which contains fields using fields API

When we work with objects in salesforce, sometimes we need a few things dynamically like a list of object names that contain field with a given API name of the field. So, here is a script that gives us all the objects which contain those fields.

String fieldAPI = ‘fieldAPI__c’; // API name of field to be searched
List sObjectList = new List();

//fetching objects which will be used to get field names
for(Schema.SObjectType eachShema : Schema.getGlobalDescribe().Values()){
String objectName = eachShema.getDescribe().getName();

// Exclude all the unwanted sObjects […]

Amazon Route 53

Author - Webner
|
1:41 pm
|
0 Comments
| |

Amazon Route 53 Overview:

Route 53 is a Domain Name Service provided by Amazon Web Services. Amazon Route 53(DNS service) is used to convert the human-friendly name (such as www.example.com) into an internet protocol addresses(Such as 192.0.1.1) with an authoritative name server in data centers all over the world. Internet protocol addresses (IP addresses) are used by computers to identify each other on the network. We use two types of IP addresses, one is IPv4 and the second is IPv6. Amazon Route 53 is a much reliable, very fast and […]

Salesforce Development Best Practices

Author - Webner
|
5:20 am
|
0 Comments
| |

Salesforce Development Best Practice

There are various approaches for developing code in salesforce but there is always one way which is better than others. So here is a list of best practices that should be followed while working in Salesforce.

Apex
1. You can write the code in any format as you want but you should use the capitalization for class names. For example:

public class EmployeeDetails{}

Use Camel case for function and variable names. For example:

String empId = ‘’;
Public function employeeAdd{}

You should keep in mind that the name should be descriptive for anyone who […]

Microsoft Azure Security

Author - Webner
|
5:43 am
|
1 Comment
| |

Microsoft Azure Security

Microsoft Azure provides security features for customers to host their infrastructure and applications. The Microsoft Threat Intelligence Center is one of the security teams at Microsoft that encounters and mitigates threats.

A few years back, security was a weak point in the cloud environment but today we have the best cloud services offer stronger security than many businesses can achieve. Its benefits don’t come automatically so, the customer has to understand how the security features work and how they can be more beneficial to their business and protect them from unforeseen consequences […]

AWS Summary

Author - Webner
|
10:50 am
|
1 Comment
| |

Amazon Web Services Summary

The AWS platform serves a big role to lead businesses to achieve their goals. AWS comes with lots of features and services with a secure cloud platform offering compute power, database storage, content delivery, and other functionality to help businesses scale and grow. One of the best things about AWS is that you pay only for the individual services that you need.

Why Webner Solution?

We are working with an AWS platform from the last six […]

Salesforce Shield Introduction

Author - Webner
|
12:09 pm
|
0 Comments
| |

Salesforce Shield Introduction

Salesforce Shield has been introduced to help users with complex governance and compliance needs. It is basically a set of integrated services built in the Salesforce1 platform.
It lets customers see who is doing what with the sensitive information, know the state and value of their information going back up to 10 years, and cipher the sensitive information.

Nowadays, there are a number of organizations of different industries and different sizes that use Salesforce to run their businesses quicker. Since the usage of the Salesforce platform for significant business capabilities is growing, the […]

Salesforce script to fetch child objects of an object

Author - Webner
|
11:12 am
|
0 Comments
| |

Salesforce script to fetch child objects of an object

When we work with objects in salesforce, sometimes we need a few things dynamically like child objects of an object. So I have created a script that gives us all the child objects of a given object.

String parentObjectName = ‘Account’;
Map<string,string> objectRelationshipMap = new Map<string,string>();
Map<String, Schema.SObjectType> schemaMap = Schema.getGlobalDescribe();
for(String ss1: schemaMap.keyset()){
Schema.SObjectType objToken=schemaMap.get(ss1);
if(ss1.equalsignorecase(parentObjectName)){
//find details about sobject
Schema.DescribeSObjectResult objDescribe=objToken.getdescribe();
List<Schema.ChildRelationship> childRelationshipList […]

‹ Prev page1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 Next page ›
Contact Us