Hi,
For information :
if you code using VS2010 against .Net 4.0 and want to deploy on Windows 2003 / IIS 6.0 there are few things to do.
Obviously you have to install the Framework .Net 4.0.
Then create a new IIS Application Pool, create the VWG Application virtual directory, add your application to the new pool, set it's framework to be .Net 4.0, and change the .wgx extension to be handled by C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll.
That will remove the following error :
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Unrecognized attribute 'targetFramework'. Note that attribute names are case-sensitive.
Source Error:
Line 130: debugging ASP.NET files.
Line 131: -->
Line 132: <compilation defaultLanguage="c#" debug="true" targetFramework="4.0"/>
Line 133: <!-- CUSTOM ERROR MESSAGES
Line 134: Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable. |
But after that you are still not ready to go. If you visit your App page, IIS 6.0 is reporting "The Page cannot be found".
Thanks to Johan's blog "Getting an ASP.NET 4 application to work on IIS6" you can help yourself.
In a short, even Net 4.0 aspnet_isapi.dll is installed, it isn't enabled in IIS.
To enable it :
cscript iisext.vbs /EnFile C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll |
If you want to list the registered : cscript iisext.vbs /listfile
That's it
|