visual studio 2003 projects
Brought to you by:
wrowe
From: J.P. T. <jpt...@ju...> - 2007-12-18 19:50:09
|
I've just installed and configured mod_aspdotnet (2.0.0.20) on windows = 2000 server running apache 2.0.59. I've setup a test aspx page and it works = fine. My goal here is to be able to write web services for .net 1.1 or greater that will run with apache. In visual studio.net 2003, when I attempt to create a new web service it's detecting the .net version on the server = as 1.0 which isn't even installed (1.1 and 2.0 are installed on the = server). I've tried adding the config directive: AspNetVersion v1.1.4322 Which seems to have no effect. Here's the relevant lines from my = httpd.conf: #aspdotnet config AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx = rem resources resx soap vb vbproj vsdisco webinfo AliasMatch "^/(?i)aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*)" "C:/Winnt/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4" AspNetVersion v1.1.4322 <Directory "C:/Winnt/Microsoft.NET/Framework/v*/ASP.NETClientFiles">=20 Options FollowSymlinks Order allow,deny Allow from all </Directory> Include conf/aspmounts.conf --- And the aspmounts.conf just for reference: AspNetMount /asptest/ "c:/public_html/asptest" Alias /asptest "c:/public_html/asptest" <Directory "C:/public_html/asptest"> Options FollowSymlinks Indexes AspNet files Order allow,deny Allow from all DirectoryIndex aspnet.aspx </Directory> Any ideas on what's wrong or information regarding writing webservices = with mod_aspdotnet would be greatly appreciated. Thanks, J.P. |