Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say I asked Microsoft to describe the perfect, modern, Microsoft-based technology stack to power a standard e-commerce web site, which perhaps has a simple 2-tier web/database architecture. What would it be like? Yes, I'm just looking for a list of product / technology names.

For example, in the J2EE world, I might describe a stack that includes:

  • J2EE 6 standard
  • JavaServer Faces
  • Glassfish 3
  • MySQL 5.1.x

I'm guessing this stack includes some combination of .NET, SQL Server, ASP.NET, IIS, etc. but I am not familiar with this world. Looking for ideas on the equivalent in Microsoft-land.

share|improve this question
Community Wiki...? – Betamoo May 17 '10 at 17:10

closed as not constructive by nemesv, gnat, rene, Perception, AlphaMale Dec 28 '12 at 12:36

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

up vote 12 down vote accepted

To take just one example:

All on Windows Server 2012

Just like in the Java world however, there are a lot more choices - that's even sticking with just Microsoft.

share|improve this answer
1  
Ah - outdated like hell. Make it Windows Sever 2008 R2 and SQL Server 2008 R2 ;) – TomTom May 20 '10 at 11:01
This will always be out of date. Try MS SQL Server 2012, Windows Azure, .NET 4.5, EF 5.0, MVC 4, etc. You could include jQuery also given that it's bundled with ASP.NET MVC. Interestingly, the latest Microsoft certifications (MCSE, MCSD) are not related to product versions but rather the product itself (and relate closely with the cloud). They now require re-certification every few years to ensure the qualifier remains qualified. – flem Dec 27 '12 at 22:06

Your typical Microsoft stack probably looks like this:

  • IIS 7
  • ASP.NET 4
  • ASP.NET MVC 2 or Web Forms (MVC is probably considered to be the more modern technology)
  • Entity Framework 4
  • SQL Server 2008

You can substitute non-Microsoft technology at some points in the stack. The database server is probably the most common place to do this. I have used Oracle, PostgreSQL and MySQL with ASP.NET in addition to SQL Server. As long as you have an ADO.NET driver you're good to go.

share|improve this answer
I don't think I would consider the Entry Framework part of the stack. It's an implementation option, but not part of the required stack. – Chris May 17 '10 at 16:17
Server 2008 R2, IIS 7.5, SQL Server 2008 R2. Dump EntityFramework for something not sucking - NHibernate. – TomTom May 20 '10 at 11:02
I heard that folks weren't fond of EF. I haven't used it for anything substantial. Hanselman said version 4.0 was better than previous ones. Any truth to that? – Cory Grimster May 20 '10 at 17:15

A helpful utility to get a machine set up for the MS stack is their Web Platform Installer 2.0. It includes the IIS (and it knows which version is applicable for your particular OS), ASP.NET and the 3.5 and 4.0 .NET runtimes, the Express version of SQL Server 2008, and options like WCF RIA Services, ASP.NET MVC2, etc. It also supports dozens of web applications (blogs, CMS apps, wikis, etc.) you might want to host.

share|improve this answer

This would most likely be:

  • SQL Server (DB Layer)
  • IIS
  • ASP.NET or ASP.NET MVC

Depending on your requirements, there could also be various web services written in .NET using Windows Communication Foundation, as well. This is often used for communication between layers, and includes many "sub products" like WCF Data Services. Data layers may be using technologies such as ADO.NET Entity Framework.

share|improve this answer
  • J2EE ~ WCF (The most enterprisy of the various component and service technologies)
  • JavaServer Face ~ ASP.NET
  • Glassfish ~ IIS 7 (I'm not expert on Java app servers, but until IIS7, ASP.NET seemed to be in IIS, but not of it and didn't make much use of IIS. In IIS7, the app server is more interesting as a provider of various services)
  • MySQL ~ MS-SQL Server
share|improve this answer

I can't imagine Microsoft recommending a stack that doesn't include Commerce Server 2009. But with it the preferred stack is listed http://www.microsoft.com/commerceserver/en/us/system-requirements.aspx. I'd imagine it would be the same without it.

share|improve this answer

I'd say something like

  • Windows Server 2008 R2
  • IIS7
  • Visual Studio 2010
  • ASP.NET MVC 2
  • SQL Server Standard (unless you need more)
share|improve this answer

Something no one has mentioned yet is the .Net equivilent of the Java AppServer environment - IIS, ASP.Net et al do not come together as an equivilent of the Java AppServer.

For that you need AppFabric.

share|improve this answer
  • SharePoint
  • IIS
  • MS SQL Server
share|improve this answer

protected by Sean Owen Mar 23 '12 at 10:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.