Architecture - Middle ware in .net? - Asked By karur krishna madhu on 05-Mar-14 01:21 AM

What is Middle ware ? where does it fit in exactly ? what middle ware's do we have as far as .net technology is concerned? Is it any way related to SOA (WCF)?
Robbe Morris replied to karur krishna madhu on 05-Mar-14 11:21 AM
Middleware is software/components that sit in the "middle" of architecture.  You will see this most often with large and complex backend systems.  Third party companies write easy to understand interfaces that expose backend functionality or perhaps combine that functionality with additional features.  You/your company buy the middleware to reduce the cost of developing and managing your applications that interface with this monsterous backend system.

Sometimes, this middleware is exposed in the form of web services or WCF services as part of SOA (service oriented architecture).  Sometimes, it is in the form of class libraries you include references to in your app.  It varies.

Middleware can be written in just about any language or process that is consumable with other languages/processes.  .NET is one of course.  Java is also a common alternative.

 User Interface ->  Middleware ->  Some backend system you don't know how to interact with
karur krishna madhu replied to Robbe Morris on 06-Mar-14 01:42 AM
Thanks Morris for the info.