Another way to run a Web application on the system is also on the ASP.NET Development Server.
This requires that we make the following call:
%WINDIR%\Microsoft.NET\Framework\v2.0.50727\webdev.webserver.exe /port:50806 /path:"C:\XXX\WebApp" /vpath:/WebApp"
It is then started and is registered locally with the user account usable.
This brings a great advantage, since no restrictions occur (shared memory).
How to install WebDev.WebServer.exe as a Standlone application
These files are required:
* WebDev.WebHost.dll
* WebDev.WebServer.EXE
* WebDev.WebServer.exe.manifest
And you may need to Install WebDev.WebHost.dll in GAC.
Copy and paste this code into a .BAT file:
@SET GACUTIL="C:\Program Files\Microsoft SDKs\Windows\v6.1\bin\gacutil.exe"
Echo Installing WebDev.WebHost.dll in GAC
%GACUTIL% -if WebDev.WebHost.dll