SOAP - A Protocol, Not a Technology
SOAP is just a Communication or Messaging Protocol not a technology.SOAP defines a set of rules which we must follow while creating messages for communication.SOAP uses XML based formats for sending &…
A proper & well organized listing of IT companies
SOAP is just a Communication or Messaging Protocol not a technology.SOAP defines a set of rules which we must follow while creating messages for communication.SOAP uses XML based formats for sending &…
What is a Socket?Socket is endpoint with IP Address & port number. ex. 192.22.56.345:3000. Here 192.22.56.345 is IP Address & 3000 is port number. If real world example, this socket will get created…
Angular CLI stands for Angular Command Line Interface. It is simply a node package that is available in Node Package Manager (NPM), where NPM is a library that contains or hosts thousands of Node…
To check which version of TypeScript is your Visual Studio using, there are 3 ways.First, you can open Visual Studio and then go to Help menu. UnderHelp menu, click on About Microsoft Visual Studio -…
How IIS Process a Web Request?In ASP.NET, web requests are processed by IIS. Once your request arrives at IIS, a thread (also known as Worker Thread) from the CLR ThreadPool is taken to process your…
Programming Round - Written[1,2,4,5,8,8,9,0] - Write a program to find if any duplicate exist?Write a program to check if integer is palindrom or not? Ex. 232.Without converting it into string.Write a…
Pen drive has been detected but not showing data. In this page, we will tell you what commands you need to hit to get files back in the pen drive.…
What is Managed Code & Unmanaged Code? What is Boxing & Unboxing?Difference between Value type & Reference type?…
What is WEB API?WEB API is a framework developed by Microsoft to build REST APIs. Building REST APIs using WEB API is very easy. Response provided by WEB API or a REST API can be in two formats - XML…
What is NodeJS?NodeJS is a server-side JavaScript programming language. You can think of it as C#. As C#'s code get executed on server, in the same way NodeJS's code is also executed on Node server.…