Burp Suite is a popular tool for web application testing, and one of its most powerful features is the Intruder. The Intruder allows you to perform automated tests on a target, such as brute-forcing or parameter fuzzing. In this blog, we’ll take a closer look at how to use Intruder in Burp Suite, step-by-step. Step […]
Posts Tagged ‘Perficient GDC Nagpur’
File Based Routing in Next.js
Next.js is a framework for building web applications built on top of React. Everything we can do in React we can also do in Next.js – with some additional features like routing, API calls, authentication, and more. We don’t have these features in React. Instead, we must install some external libraries and dependencies – like […]
Unlocking Efficiency and Seamlessness: Workato Integration for On-Premise Systems
Introduction: In today’s technology-driven world, businesses often rely on a combination of cloud-based and on-premise systems to meet their unique requirements. However, many organizations still rely on on-premises systems to maintain control over sensitive data or adhere to specific regulatory requirements. The challenge lies in bridging the gap between cloud and on-premises systems, ensuring seamless […]
Mastering RefreshApex() in Lightning Web Components
In the world of Lightning Web Components, one of the most crucial aspects of building responsive applications is managing data. Salesforce provides us with a powerful utility called refreshApex() that allows us to easily refresh data in our components. In this blog, we will dive deep into the details of refreshApex() and explore how to […]
Migrating Docker Compose from V1 to V2 Code Details
High-level details to migrate docker-compose from v1 to v2 are available in this blog, “Docker-Compose v1 End of Life in June 2023. Welcome Docker Compose v2! Upgrade Instructions,” authored by Martin Miles. Here in this article, we are going to see step-by-step code changes required to migrate docker-compose from v1 to v2. 1: Check, if […]
Parallelism In Playwright
Introduction Tests are executed in parallel with Playwright Test. It executes numerous parallel worker processes to do it. Test files are by default run in parallel. The same worker process executes each test in a single file sequentially. Tests can be set up to run concurrently in a single file using test.describe.configure. Using testProject.fullyParallel or […]
Postman Workspace: A Collaboration Tool for API Testing
Postman workspaces are a way to organize your work with Postman. They can be used to share collections, environments, and variables with others. There are Four Different Types of Workspaces in Postman: Personal workspaces are only visible to you. Private workspaces are only visible to you and to any team members you invite to them. […]
Classic to Spire CMS Conversion Tool in Optimizely
Content Management Systems (CMS) have been around for quite some time now and have helped businesses in creating and managing their online content efficiently. However, as technology evolves, so does the CMS. Many businesses that have been using the Classic CMS for a long time now are looking to switch to the new and more […]
Troubleshooting Docker Container Problems Part 2
We discussed a few Docker problems in the Troubleshooting Docker Container Problems article with its solutions. We will discuss several other Sitecore docker issues in this article. Problem 1: Requested resource is in use ERROR: for xxxxxx Cannot start service xxxxxx: hcsshim: CreateComputeSystem xxxxxxxxxxxxxxxxxxx. The Requested resource is in use. First Solution: The very first […]
Troubleshooting Docker Container Problems
Several factors could cause Sitecore containers running on Docker to stop functioning or display as unhealthy containers. To troubleshoot or fix the errors, we ran into a few Docker container issues, which we have listed below. This helped us identify and comprehend the root causes of the problems, which allowed us to check and fix […]
An Introduction to Record Triggered Flow with Scenario – Salesforce
What is Salesforce Flow Salesforce Flow is a tool used for automating business processes in the Salesforce platform. It allows users to create custom, guided processes that can interact with Salesforce data and other external systems. With Salesforce Flow, users can create custom screens, input forms, and conditional logic to automate complex business processes. Flows […]
Apex REST Services in Salesforce
Apex REST services are used to expose Salesforce data and functionality via RESTful APIs. They allow developers to create custom endpoints to access data and execute custom logic. In this blog, we will explore the various aspects of Apex REST services and provide some examples to illustrate their usage. […]