3

Has Microsoft made any indication of WinRT's current or future relationship with server development (such as ASP.NET)?

While it's been made clear that WinRT is the intended future of Windows UI programming, it also includes a substantial library of common features like networking and data processing (like JSON). If these libraries are to the the future of Windows development, it seems to me like it's only natural that they will eventually move into the world of server development (WinRT is already supported by "Server 8").

(I realise that ASP.NET isn't going anywhere and that MVC, for example, could potentially be completely gutted without affecting the programming model. I'm just curious)

Richard Szalay
  • 249
  • 1
  • 7
  • I guess you have more changes to get an answer to this question on stackoverflow.com – SiberianGuy Sep 25 '11 at 06:32
  • @Idsa - It was originally asked on SO and closed for being off topic. – Richard Szalay Sep 25 '11 at 06:58
  • Strange. I tried it by myself just for fun: http://stackoverflow.com/questions/7544185/winrt-and-the-server-asp-net-azure-etc May be it won't be closed this time. – SiberianGuy Sep 25 '11 at 07:18
  • Any answer would be nothing but speculation (even if MS says it is ...) - Do you remember the first days of Silverlight, it was not intended for LOB but then it became an important product that competes with ASP.NET. The truth may only be inside MS. – NoChance Sep 25 '11 at 11:58
  • If ASP.NET has access to the .NET libraries then why does it need WinRT? – paparazzo May 22 '12 at 13:49

1 Answers1

3

I will quote here Steve Rowe's answer from SO:

Most WinRT APIs are only usable inside Metro style apps. ASP.Net or any server programming for that matter, is done in the context of a desktop application. Thus a large amount of WinRT is not usable there. If you look at the WinRT reference, you will see that most of what is present is aimed at consumer apps, not server applications.

Microsoft has not said what will happen in the future, but for Windows 8/Server 8 WinRT is not aimed at server development.

SiberianGuy
  • 4,753
  • 6
  • 34
  • 46