Key steps while implementing the stress testing tool for FIX messages

Determine the test scenarios: Identify the various scenarios that you want to test, such as message throughput, connection latency, and order book depth. Choose a programming language: Choose a programming language that is suitable for your requirements and is commonly used in FIX testing tools, such as C#, Java or C++. Select a FIX engine … Continue reading Key steps while implementing the stress testing tool for FIX messages

Distributed Caching layer across the Kubernetes clusters

This post contains views on considering the distributed caching for the case when common data e.g. master data, and reference data, have to be used by various consumer microservices deployed across containers. If you have multiple consumer clusters that need to access the same data in the caching layer, the best pattern to use is … Continue reading Distributed Caching layer across the Kubernetes clusters

Convert pdf into csv using c#

This code block is using pdf sharp a open source library to read the pdf file and extract the data into csv file. using PdfSharp.Pdf; using PdfSharp.Pdf.IO; using System.IO; class PdfToCsvConverter { public void Convert(string pdfFilePath, string csvFilePath) { // Create a new PDF document object PdfDocument pdfDoc = PdfReader.Open(pdfFilePath, PdfDocumentOpenMode.Import); // Create a new … Continue reading Convert pdf into csv using c#

How to use azure key vault in nextjs, nodejs?

Azure Key Vault is a cloud service that allows you to store and manage cryptographic keys, secrets, and certificates. To use Azure Key Vault in a Next.js application, you will need to do the following: Pre-Requisite: Grant your application access to the Key Vault: To access the Key Vault from your Next.js application, you will … Continue reading How to use azure key vault in nextjs, nodejs?

Powershell script to copy sharepoint website

Step 1: Copy template from current SharePoint website #Set variables $SiteURL = "https://tenant.sharepoint.com" $SchmaXMLPath = "C:\Temp\testSiteSchema.xml" #Connect to sharepoint website Connect-PnPOnline -Url $siteUrl #Get all site schema - sharepoint list, document libraries etc. Get-PnPProvisioningTemplate -Out ($SchmaXMLPath) -PersistBrandingFiles -PersistPublishingFiles 2. Apply template to new website #Set variables $SiteURL = "https://tenant.sharepoint.com/sites/destinationwebsite" $SchmaXMLPath = "C:\Temp\testSiteSchema.xml" #Connect to sharepoint … Continue reading Powershell script to copy sharepoint website

Receive Trade Capture (AE) Report on FIX Protocol

Trade Capture Report (AE) message is a post-trade message which is sent by the broker or exchange to report the trades for participant. How to request Trade capture report? A client may use Trade Capture Report Request (AD) to subscribe for trade capture reports based upon selection criteria provided on the trade capture report request. The … Continue reading Receive Trade Capture (AE) Report on FIX Protocol

List of useful .Net libraries, NuGet packages and Tools for Developers

List of useful .net Libraries, NuGet packages, and Tools LinqPad  Very useful instantly tool to test LINQ, SQL queries ReoGrid: Fast and powerful .NET spreadsheet component, support data format, freeze, outline, formula calculation, chart, script execution and etc. Compatible with Excel 2007 (&later) format and working on .NET 3.5 (or client profile), WPF and Android (view … Continue reading List of useful .Net libraries, NuGet packages and Tools for Developers

PowerShell Sample Scripts

I am listing some of the commonly used PowerShell scripts which might make your life little easier. Files and Folders GetFiles: Get file count in a folder GetFiles("c:\temp", "*.*").Count get-ChildItem : Enumerating files in a folder $dirpath="c:\temp" foreach ($file in get-ChildItem -Path $dirpath\* -Include *.*) { $file.FullName } Filtering files in a folder. Below script is showing … Continue reading PowerShell Sample Scripts