What is SOAP?

SOAP (Simple Object Access Protocol) is a simple XML-based messaging protocol to let applications exchange information over HTTP. It defines a set of rules for structuring messages that can be used for simple one-way messaging but is particularly useful for performing RPC-style (Remote Procedure Call) request-response dialogues. It is not… Continue reading

Web Service Interview Questions

True or False: A Web service can only be written in .NET? False What does WSDL stand for? Web Services Description Language Where on the Internet would you look for Web services? http://www.uddi.org Which property on a Combo Box do you set with a column name, prior to setting the… Continue reading

ASP.NET Basic Interview Questions

Describe the role of inetinfo.exe, aspnet_isapi.dll and aspnet_wp.exe in the page loading process. inetinfo.exe is the Microsoft IIS server running, handling ASP. NET requests among other things. When an ASP. NET request is received (usually a file with .aspx extension), the ISAPI filter aspnet_isapi.dll takes care of it by passing… Continue reading

Free .NET libraries

I have used a lot of free .NET libraries, some from Microsoft itself! Which ones have you found the most useful? Package managers for external libraries NuGet (formerly known as NuPack) – Microsoft (developer-focused package management system for the .NET platform intent on simplifying the process of incorporating third party… Continue reading

Can you inherit a COM class in a .NET application?

The .NET Framework extends the COM model for re-usability by adding implementation inheritance. Managed types can derive directly or indirectly from a COM coclass; more specifically, they can derive from the runtime callable wrapper generated by the runtime. The derived type can expose all the method and properties of the… Continue reading