MOSSO Cloud Computing for .NET, IIS7

image 

Shared Hosting, VPS, Dedicated Server

MOSSO :: The Hosting Cloud - Home

IIS Console Command line Management for ASP.NET Developer

    1. Restart IIS: iisreset
    2. Create a Virtual Directory: iisvdir /create “Default Web Site” localDir c:workwwwrootlocalDir
    3. And More here and here 
Posted in IIS, Tools. No Comments »

Cassini for ASP.NET 2.0 Source Code - Build a Web Server That Hosts ASP.NET

 

Dmitry has posted the new source code for Cassini v2.0.  Very cool stuff if you would like to learn how to build a web server that hosts ASP.NET

New to Cassini v2:

  • Cassini v2 uses new ASP.NET v2 hosting APIs (System.Web.Hosting: ApplicationManager, IRegisteredObject, etc.).
  • Grab the Cassini web server source code from Dmitry’s website.

Note: You may also want to check out UltiDev’s own incarnation of Cassini which runs as a Windows Service and comes with a easy distribution package for Visual Studio 2005

Posted in IIS. No Comments »

ASPhere - free editor of web.config files

 

 image

ASPhere is a freeware tool that helps to create and modify configuration files for ASP.NET.

Download: http://asphere.aspweb.cz/download.aspx

ASPhere - free editor of web.config files

Posted in IIS. No Comments »

Distributed state management for ASP.NET

 

The more I delve into distributed architectures, the more I’m feeling like Microsoft just isn’t providing much of a path forward to scalable distributed systems. Case in point: state management.
By default, session state in ASP.NET is stored in the web server’s memory. To share state across servers - which you would want to do in a server farm - you need to store it in SQL Server or in the .NET state service. This is fine for small solutions, but once you bump up against the need to partition state across many servers or multiple hosting locations, things start to get complex and expensive.

Solutions:

ASP.NET SessionStateStoreProviderBase

Using JavaSpaces from .NET

3rd Parties: ScaleOut, NCache, GigaSpaces

 

Via using Enterprise.Architecture;: Distributed state management for ASP.NET

Web Hosters offering ASP.NET 3.5

Posted in IIS. No Comments »

Installing PHP Applications (like WordPress) on IIS7 & Integrate with IIS Form Authentication

 

image

In this screencast, discover how easy it is to get PHP up and configured on your IIS7 webserver using FastCGI.  The popular PHP-based blogging application, WordPress, is used to demonstrate.
Additionally, we see how quickly and easily we can integrate a PHP app with IIS7’s integrated pipeline as we convert WordPress to use IIS7’s built-in Forms Authentication.

Watch the screencast(WMV)

Via Installing PHP Applications on IIS7

Posted in IIS. No Comments »