Category: Cloud
AWS API Gateway Overview
Amazon API Gateway is a fully managed service offered by Amazon Web Services that enables developers to design, publish, secure, and manage APIs at scale. It functions as a gateway that allows communication between client applications (such as web apps,
AWS Lambda vs Fargate: Which One Should You Choose?
Cloud computing has moved far beyond managing virtual machines and manually scaling servers. Organizations today want to focus on writing code and delivering features rather than maintaining infrastructure. This demand has led to the rise of serverless computing. In the
Issues with Calling External Services in an API Endpoint
A common implementation pattern in backend systems is to call an external service directly inside a request handler. For example: @router.post(“/process-document”) async def process_document(file: UploadFile): content = await file.read() response = requests.post(
A Beginner’s Guide to Setting up a MuleSoft-Salesforce Connector
The power of Salesforce often depends on its ability to exchange data with external systems, from ERPs to marketing platforms. MuleSoft, Salesforce’s integration platform, excels at this by providing pre-built connectors that drastically simplify the complexities of API communication. For
What Is AWS Lambda Runtime?
An AWS Lambda runtime is the environment that executes your function code. It includes: The programming language version (e.g., Python 3.9 or 3.11) The AWS SDK (boto3) System libraries and environment configurations When AWS releases new runtimes, older ones are
Securing Session Cookies in .NET
Session security stands as a critical component of web application development. Within ASP.NET and ASP.NET Core frameworks, session cookies play a vital role in tracking authenticated users. Without proper security measures, these cookies become prime targets for malicious actors seeking
Integration of SQL using Azure Portal
To integrate SQL into an application using Azure Portal, there are a few steps you need to follow depending on the SQL database service you want to use. The most generally used SQL services on Azure are Azure SQL Database
Building real-time chat app using WebSockets with AWS API Gateway and Lambda
We can build many real-time applications such as chat applications, multiplayer games, financial trading platforms, and collaboration platforms using WebSockets with AWS API Gateway, Lambda, and dynamoDB. In this blog we will learn how to build real-time applications using WebSockets
Some Important Web Services in AWS
AWS Web Services is a cloud computing platform that is widely used by different types of organizations and developers all over the world. For example: Medical industries are using it to create personalized treatments for their patients. Finance industries are
