Resources  
  • How to Identify Code Is Running on Client or Server in Vue.jsMar 28, 2024. In Vue.js, distinguishing between client and server-side execution is vital, especially in SSR scenarios. By checking for windows or process.server, developers tailor code for respective environments, ensuring seamless operation.
  • Difference Between Kafka vs RabbitMQMar 26, 2024. Apache Kafka is an open-source platform built for handling real-time data streams efficiently. RedditMQ does not exist as a real technology or platform but could hypothetically refer to a messaging system tailored to Reddit's communication and interaction mechanisms.
  • What is Blazor WebAssembly?Mar 24, 2024. Blazor WebAssembly, a client-side web framework powered by .NET and C#, empowers developers to craft dynamic and interactive web applications directly in the browser. In this article, we'll explore the capabilities, advantages, and potential of Blazor WebAssembly in revolutionizing web development.
  • Business Rules in ServiceNow and Its Automation PotentialsMar 21, 2024. In this article, we will learn automation and efficiency are important in IT service management. ServiceNow provides an effective toolkit for streamlining corporate procedures and increasing output. Business Rules are one of the core elements of automation in ServiceNow.
  • Establishing Communication Between Executable Files Using TCP/IPMar 19, 2024. WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Steps include server/client development, execution instructions. Use CommonHelper for collaboration.
  • A Simple Guide to Creating an Azure Databricks WorkspaceMar 12, 2024. Learn how to set up your own Azure Databricks workspace with this easy step-by-step guide. Whether you're new to Databricks or looking to create a collaborative environment for big data analytics, follow these straightforward steps to get started.
  • Apache Kafka Without ZooKeeperFeb 28, 2024. Apache Kafka Without ZooKeeper employs the KRaft protocol (KIP 500), replacing ZooKeeper for metadata management. This enables simplified deployment, enhanced reliability, and native support for Kafka's distributed consensus.
  • Installing and Configuring XAMPP on Windows 11Feb 20, 2024. This article provides a comprehensive guide on installing XAMPP, the popular PHP development environment, on Windows 10/11. XAMPP includes Apache, MySQL, PHP, and Perl, making it a convenient solution for local development.
  • Apache Kafka with Dapr Bindings in .NETFeb 07, 2024. This content provides an in-depth overview of integrating Apache Kafka with Dapr Bindings for building distributed event-driven applications. It explains the key concepts of Apache Kafka, Dapr, and Dapr Bindings, along with step-by-step
  • Introduction to Apache Kafka with .NETJan 30, 2024. This is an introduction to Apache Kafka and how to work with Kafka with .NET. This article introduces Apache Kafka, a distributed event streaming platform, and explains how to set it up with .NET. It covers installation, configuration, and integration, providing a comprehensive overview of Kafka.
  • How To Generate Curl Script of the HttpClient in .NETJan 29, 2024. The HttpClientToCurl is a NuGet package for generating the curl script of HttpClient in C# (.Net) supported features: Post, Get, Put and Delete. content types: application/json, text/xml, application/x-www-form-urlencoded
  • How to Connect Client Computer to Server DomainJan 22, 2024. For Active Directory Federation Services (AD FS) to function, each computer that functions as a federation server must be joined to a domain. Federation server proxies may be joined to a domain, but this is not a requirement.
  • How to Restrict Clients Desktop Settings in ServerJan 08, 2024. Learn to restrict client desktop settings on Server 2019 efficiently. Understand the benefits, reduce risks, protect sensitive data, and follow a step-by-step guide for proper implementation.
  • IndexedDB and Its Basic ConceptJan 05, 2024. In this article, we will learn about IndexedDB, a powerful client-side storage API for storing and retrieving structured data asynchronously. Explore its key features, concepts, and a practical example for efficient data management in web applications.
  • Azure Key Vault Secret Client Library for Python SDKJan 02, 2024. This module speaks about accessing Key Vault secrets through Python code. Key Vault is a service offered by Azure to store secrets such as passwords, certificates, keys etc in a safe and secure manner.
  • How To Invoke SOAP Web Service in MuleSoftDec 24, 2023. In this article, you will learn how to invoke SOAP Web Service from the MuleSoft application. SOAP (Simple Object Access Protocol) is a protocol for exchanging structured information in the implementation of web services. It is a messaging protocol that allows programs running on different operating systems to communicate with each other by using XML as the message format.
  • Event Driven Architecture in MicroservicesDec 24, 2023. In this article, you will learn about event streaming in microservices. Event streaming in microservices is a powerful approach to communication and data processing based on a continuous flow of events. Instead of relying on traditional request-response mechanisms, services publish and subscribe to events, enabling loose coupling and real-time data processing.
  • SOAP VS REST APIDec 23, 2023. Difference between soap and rest API.In the field of Web Development, the most common and well-known keyword is Web Services. So before going to start the discussion about Rest and Soap API, we first understand what is Web Services?
  • Deploy Angular App on Apache ServerDec 21, 2023. Effortlessly deploy a new server with step-by-step instructions. From installing essential tools like NVM, Node, npm, and Angular, to setting up Apache and deploying code, this guide ensures a seamless process.
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web APIDec 19, 2023. Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focus on implementing functionality rather than managing low-level HTTP communication.By breaking down each operation—POST, PUT, DELETE, GET, PATCH—and providing corresponding code snippets, the process of creating, retrieving, updating, and deleting resources becomes more accessible. The RestClientHelper class encapsulates RESTSharp configuration, promoting code reusability and maintainability.
  • Kafka For Mere Mortals : Running Multiple BrokersDec 15, 2023. This article delves into the importance of having multiple brokers in an Apache Kafka cluster. It explains the reasons, such as high availability and scalability, and provides a practical guide using Docker.
  • ValidateAntiForgeryToken in ASP.NET CoreDec 13, 2023. In web development, security is a crucial aspect that demands meticulous attention. Cross-Site Request Forgery (CSRF) is a type of attack where unauthorized commands are transmitted from a user trusted by a web application. ASP.NET Core provides a built-in defense mechanism against CSRF attacks called ValidateAntiForgeryToken.
  • How to Share a Drive and Mapping for Client User?Dec 01, 2023. Learn the proper and easy method to share and map a drive for client users. Follow clear steps from creating a shared folder to setting up permissions in this insightful guide.
  • Creating Consistent ASP.NET Core Web API Responses with AutoMapper and DTOsNov 17, 2023. Developing a robust ASP.NET Core Web API hinges on the subtle yet pivotal details of response structuring. Leveraging AutoMapper in tandem with well-designed Data Transfer Objects (DTOs) not only ensures the separation of concerns but also orchestrates a symphony of consistent and predictable API responses. These intricacies extend beyond mere data mapping; they epitomize a strategic approach in harmonizing the internal model intricacies with the API's outward-facing facade. Unveiling the elegance of these detailed mappings and the orchestration of a uniform response structure not only enhances the developer's workflow but also augments client-side integration, presenting an intuitive and standardized communication channel. Addressing these finer points not only establishes a foundation for resilient error handling but also fuels the API's scalability and ease of maintenance, fostering an environment where agility meets reliability.
  • Microsoft Kiota Command Line ToolOct 16, 2023. The Microsoft Kiota Command Line Tool is a software utility designed by Microsoft that aids developers in generating code for Microsoft's Kiota API client libraries. It offers a command line interface (CLI) for streamlined code generation, allowing developers to efficiently create client libraries that interact with various Microsoft services and APIs. This tool assists in enhancing productivity by automating the process of generating the necessary code for interacting with the Kiota-based APIs, ultimately expediting the development of robust applications and services in the Microsoft ecosystem.
  • Upload Files to SharePoint Online Library using POSTMANOct 09, 2023. In this article we will go thorugh the steps needed to test the Graph API endpoints against the client application.
  • Enhancing ASP.NET Core Web API Responses with Consistent and Predictable Wrapper ClassesSep 27, 2023. In ASP.NET Core Web API, you can use wrapper classes to standardize the format of your API responses. A wrapper class typically contains a status code, a message, and the actual data payload. This helps in providing a consistent structure for your API responses, making it easier for clients to understand and handle them.
  • Software Architecture TypesSep 26, 2023. Software architecture is the foundation of any software system, determining its structure, component interactions, and trade-offs. It significantly influences application quality, performance, scalability, and maintainability. This comprehensive guide delves into various software architecture types, offering insights into their strengths and weaknesses and guiding you on when to deploy them.
  • Server-Side Rendering (SSR) and Client-Side Rendering (CSR) in React.jsSep 18, 2023. In this article we will learn what is the Server-Side Rendering (SSR) and Client-Side Rendering (CSR) in React Js
  • RabbitMQ Implementation for ASP.NET CoreSep 15, 2023. Learn how to implement RabbitMQ in an ASP.NET Core application, covering prerequisites, establishing connections, sending and receiving messages, and building reliable, scalable message-driven applications.
  • Sending Messages with RabbitMQ in .NET CoreSep 11, 2023. Here we will learn how to use RabbitMQ for sending message in dotnet core
  • Keeping Secrets Safe in .NET/ASP.NET Core Applications with Azure Key VaultSep 07, 2023. Securing secrets in .NET/ASP.NET Core applications using Azure Key Vault is crucial for maintaining the confidentiality and integrity of sensitive information such as API keys, connection strings, and certificates. In this example, I'll walk you through the steps to integrate Azure Key Vault into an ASP.NET Core application to keep secrets safe in real time.
  • SignalR to enable real-time communication between clients and the serverSep 04, 2023. SignalR to enable real-time communication between clients and a server. SignalR is a library for ASP.NET that allows you to build real-time, interactive web applications. In this example, we'll create a simple chat application where clients can send and receive messages in real-time.
  • Registering Applications with Certificates, Secrets, and Federated CredentialsSep 02, 2023. Discover the process of registering applications using certificates, secrets, and federated credentials in this informative guide. Unlock powerful authentication methods for your digital endeavors.
  • Enhancing Client Responses: Crafting Custom Middleware for Effective Error HandlingAug 27, 2023. Designing a robust error handling mechanism and returning meaningful error responses to clients is crucial for enhancing the reliability and user experience of your ASP.NET Core Web API. Here's a concise guide on how to achieve this using custom middleware:
  • Effective API Versioning with Custom MiddlewareAug 22, 2023. API versioning with custom middleware, enables clients to access different versions of your API based on the version specified in the request header. This allows you to manage backward compatibility while rolling out new features or changes in a controlled manner. Custom middleware provides a central point for extracting and validating version information, making your versioning logic more modular and maintainable.
  • Deploy Angular Project On DomainAug 22, 2023. In this article, I told you how to run a project on the domain. It appears you're requesting a description, but you haven't specified what you'd like a description of. Could you please provide more context or clarify the subject you're referring to? Whether it's a technology, concept, process, or something else, providing additional details will help me provide you with an accurate and relevant description.
  • SOAP Web Service in .NET CoreAug 18, 2023. Discover JavaScript's Math Functions: From rounding and absolute values to square roots and random numbers, learn about vital math operations with concise examples.
  • Implementing Content Negotiation for Flexible Data FormatsAug 16, 2023. Content negotiation in ASP.NET Core is crucial for serving different data formats like JSON, XML, etc., based on the client's preferences. Here's a complete example of how to implement content negotiation in an ASP.NET Core Web API:
  • How to Create Records for Salesforce SObjects using SOAP API?Aug 11, 2023. In this article, we explore how we can create new records for Salesforce Standard & Custom SObjects using SOAP API Endpoints available for the Salesforce Platform.
  • Kafka For Mere Mortals: IntroductionAug 10, 2023. The purpose of this series is to help you to understand and use KAFKA in your real projects along with any programming languages, especially with the .NET platform
  • Salesforce REST API: The Login Request (Authentication Step)Aug 02, 2023. In this article, we will discuss the detailed steps on how to authenticate REST-based requests against Salesforce Org. We will explore the REST payloads for the Request & Response cycle for the request.
  • Source Control (4-9-2), Git - Merge in Client SideAug 01, 2023. Explore a comprehensive series of articles on Source Control, ranging from standalone apps like MS SourceSafe to web services like GitHub, Azure DevOps, and Git. Understand merging methods, integration, and comparisons for effective version control.
  • Client Credentials Flow - Call Web API to API without user interactionJul 18, 2023. This article shows the way to call API to API with user interaction by using Client Credentials Flow.
  • Secure User Authentication in Azure Using Microsoft.Identity.ClientJul 14, 2023. The process of authenticating users securely is essential in Azure applications. Microsoft.Identity.Client (MSAL) is a C# library that simplifies the implementation of secure user authentication in Azure. It provides functionality for integrating Azure Active Directory (Azure AD) and other identity providers, enabling applications to authenticate and authorize users.
  • Docker CommandsJul 10, 2023. Docker Commands
  • Efficient CRUD Operations with ElasticSearch and .NET Core APIMay 29, 2023. ElasticSearch is a powerful and highly scalable open-source search and analytics engine built on top of Apache Lucene.
  • Learn How Event Loop Works in Client / Server Side in JavaScriptMay 26, 2023.
  • How to Add Security Headers to Your Website Using .htaccessMay 18, 2023. Want to know how to add security headers to your website using .htaccess? Read this blog and add content security policy header in wordpress site.
  • Apache Spark: RDD vs. DataFrame vs. DatasetsMay 17, 2023. This articel will give you an insight about the differences between RDD,Dataframe and Dataset
  • Confluent Apache Kafka Registration PaaS ServicesMay 01, 2023. Kafka is managed and monitored through Confluent Control Center, a GUI-based solution. You can create, amend, and manage connections to other systems, as well as administer Kafka Connect, with ease. Additionally, it enables you to keep an eye on data streams going from the producer to the consumer, guaranteeing that each message is sent and timing the delivery of messages. Without writing a single line of code, you can use Control Center to construct a production data pipeline based on Kafka. Control Center also provides the ability to create warnings based on the latency and completeness statistics of data streams, which may be sent via email or accessed via a centralized alerting system.
  • Dependency Injection In .NET Core - Understanding The Fundamentals And Best PracticesApr 12, 2023. In this article, you will learn about dependency Injection in .NET Core: Understanding the Fundamentals and Best Practices.
  • How To Use MQTT Client In .Net 7Mar 31, 2023. In this article, you will learn how to use MQTT Client in .Net 7.
  • Build A ChatGPT Client And An Image Generator In Blazor Using OpenAI APIMar 23, 2023. In this article, you will learn how to build a chatgpt client and an image generator in blazor using openai api.
  • Spark Web UIMar 10, 2023. In this article, you will learn about Spark Web UI.
  • ChatGPT In .NET 7 API And Testing With PostmanFeb 24, 2023. In this article, I'm going to explain how we can configure chatGPT in .NET7 API and we'll also check the response in postman
  • Getting Specific YouTube Video using C# .NET and YouTube APIFeb 09, 2023. In this article we will learn how to get Videos details of specific video by video id.
  • Apache Kafka Introduction, Installation, And Implementation Using .NET Core 6Dec 12, 2022. In this article, you will learn about Apache Kafka Introduction, Installation, and Implementation Using .NET Core 6.
  • Apache Kafka Basics And ArchitectureNov 28, 2022. In this lesson we learn basics of Apache Kafka, its Architecture and use cases and Setting up Kafka on a windows System
  • API Styles EvolutionOct 25, 2022. In this article, you will learn about API Styles and its evolution.
  • SharePoint List Operation With Time Trigger Azure FunctionOct 20, 2022. In this article, you will learn about SharePoint List Operation with Time Trigger Azure Function.
  • Solution For New-AzResourceGroup : ‘this.Client.SubscriptionId’ Cannot Be NullOct 20, 2022. In this article, you will learn about Solution For New-AzResourceGroup : ‘this.Client.SubscriptionId’ Cannot Be Null.
  • How To Receive Real-Time Data In An ASP.NET Core Client Application Using SignalR JavaScript ClientOct 10, 2022. This article explains how to connect with SignalR Server hub and receive the message data from the server to the client application using the SignalR JavaScript client in ASP.NET Core 6 application
  • Monitor The Azure Active Directory Client Secret ExpirationOct 06, 2022. In this article, we will learn how to use Azure Functions and PowerShell to monitor the Client Secret Expiration of Azure AD apps and sent reminder emails
  • Validating Client ID And Client Secret Using POSTMANAug 30, 2022. This article explains how to check the validation of client credentials (client id and secret) using POSTMAN and by interacting with Graph API. This also has steps for POST request which is a rare find in internet.
  • Git - 6 Free GUI ClientsAug 13, 2022. We give an overview of six free Git Gui clients.
  • Git - Push From GUI Client Returns "Authentication Failed"Aug 13, 2022. Git push to GitHub or Bitbucket from third party Gui client results in "Authentication Failed."
  • Consuming Apache Axis Service In .NET CoreAug 09, 2022. In this article, you will learn how to consume Apache Axis in .NET core.
  • How To Receive Real-Time Data In .NET 6 Client Application Using SignalRJul 30, 2022. This article explains how to receive real-time data in ASP.NET Core Client application from Server using SignalR with a code example.
  • How To Connect To Dynamics 365 CE Environment Using Client ID And Secret In XrmToolBoxJul 25, 2022. A step-by-step process to connect to Dynamics 365 CE environment using Client Id and Secret in XrmToolBox.
  • Extending The Validity Of Existing Client Secret In SharePointJul 22, 2022. In this article, you will learn how to extend the validity of existing Client secrets in SharePoint.
  • Consume Web API By MVC In .NET Core (4), .NET ClientsJul 04, 2022. In this article, you will learn how to consume Web API By MVC In .NET Core (4), .NET Clients.
  • Deploy An Apache Server On Public/Private Subnets On AWSJun 05, 2022. This article describes how we can deploy apache server to both private and public EC2 instances
  • OAuth2.0 Authorization With The Azure AD Client Credentials FLow To Secure APIs Of Azure API ManagementMay 25, 2022. In this article, we learn how you can protect your APIs using OAuth2.0 Authorization with the Azure AD Client Credentials flow. When APIs on API Management consumed by other application(End User), we need communicate service to service communication by configuring the OAuth 2.0 authorisation code flow to protect APIs on API Management.
  • Fetch Client - Test REST API Using VSCode ExtensionMay 16, 2022. In this article, you are going to learn about how to using Rest API using "Fetch Client" VSCode extension.
  • Azure Duration Functions - How To Use And Implement ItMay 03, 2022. In this article, we will discuss related to the implementation process of Azure Durable Function. We also discuss how to implement timer intervals while running any long-running Durable Function Workflow.
  • Query Apache Hive With C# And ODBCApr 26, 2022. This article introduces the combination of C# and ODBC to query data from Hive
  • Show And Hide Form Header With Webresource In Dynamics CRM Mar 30, 2022. In Dynamics 365 CRM, at times we must show or hide form header,header command bar,header body,Header tab navigator for a selected entity. This can be achieved by using client API Reference. As an example, contact record was taken to show this functionality.
  • Understand setShowTime With Webresource In Dynamics CRMMar 23, 2022. In Dynamics 365 CRM, at times we must show only date part for a field of date time type if at all customers were not in favour of creating same field with date Only format. Then this can be achieved by the usage of setShowTime Client API reference, which specify whether a date control should show the time portion of the date or not. As an example, Vaccination date is used to explain this functionality.
  • Exploring Transforms In Apache BeamFeb 16, 2022. The most common types of transformations are categorized into Element-Wise Transformation and Aggregation. The element-wise transformations are the most common ones like Filter, FlatMap, Keys, Map, ParDo etc. Aggregation transforms are GroupBy, GroupByKey, Min, Sum, Combines, Count, etc. The article explains with Python examples some of the transforms element-wise as well as aggregation.
  • Understanding Apache BeamFeb 15, 2022. The article explains what is Apache Beam and the internals of it.
  • Client-side Application For JWT Refresh Token In Angular 13 Feb 13, 2022. In this post, we will create a client-side application for JWT refresh token in Angular 13.
  • Azure Synapse Analytics - Create Apache Spark PoolFeb 11, 2022. In this article, we'll learn to create apache spark pool in Azure Synapse Analytics.
  • Consuming GRPC Service At Client Based .NET Core 6.0 Entity Framework For CRUD OperationFeb 09, 2022. In our previous article (GRPC Service Create Using .NET Core 6.0 Entity Framework For CRUD Operation (c-sharpcorner.com)we have seen how to create the GRPC service. In this article we are going to see to consume the GRPC service at the client
  • Operators In Apache AirflowFeb 03, 2022. The article explains what Operators are in Apache Airflow
  • Apache Spark - Create Cluster In Azure HDInsightFeb 02, 2022. In this article, we'll learn to create a Apache Spark cluster in Azure HDInsight.
  • Apache SparkFeb 01, 2022. In this article, we'll learn about Apache Spark in Azure.
  • Validate If Client ID And Client Secret Are ValidJan 31, 2022. This article describes about validating the app principals by checking the validation of client ID and Client Secret details.
  • DAGs In Apache AirflowJan 31, 2022. The article explains the DAGs in Apache Airflow. The article explains DAG, its common properties, writing a DAG, Scheduling DAG, and other basics, and by covering these topics step by step we will develop our first workflow with a simple operator which will be later monitored and scheduled by Airflow.
  • Understanding Apache AirflowJan 28, 2022. The article explains about the open-source workflow management tool Apache Airflow.
  • Understanding Move Next and Move Previous in BPFDec 01, 2021. At times we must work on BPF Stages and navigate Stages automatically based on the business requirement, for quick test D365 Client API’s can be used for navigation with predefined methods moveNext and movePrevious in console window of browser before writing JavaScript code. As an example, existing Vaccination BPF on an existing Contact record was used to show these navigation methods.
  • Creating Apache Synapse Analytics WorkspaceNov 02, 2021. In this article, you will learn how to create Apache Synapse Analytics Workspace.
  • VS Code as a Testing Client For Web APIOct 18, 2021. This article discusses the Testing Clients for Web API.
  • New GraphQL Client For TypeScriptAug 12, 2021. In this article, you will learn about the new GraphQL client for TypeScript.
  • Stream Data From Console To Console Using Apache KafkaAug 08, 2021. In this article, you will learn about stream data from console to console using Apache Kafka.
  • Creating A .NET 5 Client To Call An API Protected By CertificatesJul 15, 2021. In this article, you will learn how to create a .NET 5 client to call an API protected by certificates.
  • How To Develop Custom Salesforce SOAP API Endpoint Jul 06, 2021. In this article, we will discuss detailed steps on how to develop Custom SOAP APIs for Salesforce and how can we consume the SOAP API Endpoint using Postman API Client. We will also look for Service Operations return collection of records as part of Response.
  • Check And Update Expiration Date Of Client ID In SharePoint OnlineJul 05, 2021. This client Id and secret key is generation from SharePoint Online and gets expired after one year. After one year, your application will be unauthorized to SharePoint.
  • Generate The Client Code Of Web API Using Swagger API SpecificationJun 11, 2021. In this article, you will learn how to generate the client code of Web API using Swagger API specification.
  • Thunder Client - An API Testing ExtensionApr 27, 2021. Thunder Client is a lightweight API testing extension which a developer can use in Visual Studio code for testing API.

About Apache-SOAP-Client

NA

OUR TRAINING