473,404 Members | 2,178 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

VS 2003 & VS 2005 on one machine

Can I have both 1.1 and 2.0 frameworks installed on same machine? I
have 2005 already, for some reason I had to install 2003. When I try to
create a new project in 2003, I get an error as below:

"Visual Studio could not identify the version of ASP.NET oon the Web
Server. The Web Server reported the following error when attempting to
create or open the Web project located at the following URL:
'http://localhost/WebApplication1'. 'HTTP/1.1 401 Access Denied'."

But I could create or open projects in 2005.
Any one know how to solve this?

Thanks in advance.
Shil.

Sep 6 '06 #1
7 3357
hi,

Even the same from my side. for various resons, i installed VS2005;
which will actually convert ur solution which is not
backward-compatible with VS2003. so, once the conversion is done, we
cannot open the same in 2003.

Also, 2003 will be the default mode of selection, when u open a
project; and wen v try to open a web-page it gives an error as "Unable
to get the project file from the web server".
When the same project is opened with VS2003 in a different system, it
gets opened.

That means, both cannot exist simultaneously.
So, accord.to me its not possible. Also, if anyone have resolved this
problem, plz reply

shil wrote:
Can I have both 1.1 and 2.0 frameworks installed on same machine? I
have 2005 already, for some reason I had to install 2003. When I try to
create a new project in 2003, I get an error as below:

"Visual Studio could not identify the version of ASP.NET oon the Web
Server. The Web Server reported the following error when attempting to
create or open the Web project located at the following URL:
'http://localhost/WebApplication1'. 'HTTP/1.1 401 Access Denied'."

But I could create or open projects in 2005.
Any one know how to solve this?

Thanks in advance.
Shil.
Sep 7 '06 #2
For me it works fine.
But as always with any product I first installed 2003 and then 2005...

--
Michael
----
http://michael.moreno.free.fr/
http://port.cogolin.free.fr/
Sep 7 '06 #3
Works here with VS 2003 installed first...

"Unable to get the project from file server" would be rather mean to me that
VS can't access the file on the server for some reason totally unrelated to
having both installed...

IMO it would look rather like the default access option for VS 2003 is not
set properly (if I remember it uses frontpage extensions rather than file
sharing by default).

Good luck.
--
Patrice

"Freaky" <cu************@gmail.coma écrit dans le message de news:
11**********************@i3g2000cwc.googlegroups.c om...
hi,

Even the same from my side. for various resons, i installed VS2005;
which will actually convert ur solution which is not
backward-compatible with VS2003. so, once the conversion is done, we
cannot open the same in 2003.

Also, 2003 will be the default mode of selection, when u open a
project; and wen v try to open a web-page it gives an error as "Unable
to get the project file from the web server".
When the same project is opened with VS2003 in a different system, it
gets opened.

That means, both cannot exist simultaneously.
So, accord.to me its not possible. Also, if anyone have resolved this
problem, plz reply

shil wrote:
>Can I have both 1.1 and 2.0 frameworks installed on same machine? I
have 2005 already, for some reason I had to install 2003. When I try to
create a new project in 2003, I get an error as below:

"Visual Studio could not identify the version of ASP.NET oon the Web
Server. The Web Server reported the following error when attempting to
create or open the Web project located at the following URL:
'http://localhost/WebApplication1'. 'HTTP/1.1 401 Access Denied'."

But I could create or open projects in 2005.
Any one know how to solve this?

Thanks in advance.
Shil.

Sep 7 '06 #4
"shil" <jo******@gmail.comwrote
Can I have both 1.1 and 2.0 frameworks installed on same machine?
You sure can. I run like this all the time.
"Visual Studio could not identify the version of ASP.NET oon the Web
Server. The Web Server reported the following error when attempting to
create or open the Web project located at the following URL:
'http://localhost/WebApplication1'. 'HTTP/1.1 401 Access Denied'."
You need to register / unregister the right version of ASP.Net each time you
switch environments.

To Register ASP.Net 2.0:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspn et_regiis /i

To Unregister ASP.Net 2.0:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspn et_regiis /u
To Register ASP.Net 1.1:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis /i

To UnRegister ASP.Net 1.1:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis /u

That does the trick for me. Just remember to unregister the version you're
not using, and register the version you want. Then fire up Visual STudio and
create whatever you need...

--
Chris Mullins
Sep 8 '06 #5

what if i keep two xp installed and keep vs2003 on one and vs2005 on
another than will there be any problem.

Sep 9 '06 #6
"psycho" <pa***********@gmail.comwrote
what if i keep two xp installed and keep vs2003 on one and vs2005 on
another than will there be any problem.
It's really not worth the trouble. The two versions of Visual Studio
co-exist just fine. You just have to make sure the right version of ASP.NET
is registered with IIS before you do web development.

--
Chris Mullins, MCSD.NET, MCPD:Enterprise
http://www.coversant.net/blogs/cmullins
Sep 9 '06 #7
Not each time. You can define the version to use for each framework once.
2.0 adds also a new tab in the IIS console that allows to do that using the
UI...
--
Patrice

"Chris Mullins" <cm******@yahoo.coma écrit dans le message de news:
eF*************@TK2MSFTNGP05.phx.gbl...
"shil" <jo******@gmail.comwrote
>Can I have both 1.1 and 2.0 frameworks installed on same machine?

You sure can. I run like this all the time.
>"Visual Studio could not identify the version of ASP.NET oon the Web
Server. The Web Server reported the following error when attempting to
create or open the Web project located at the following URL:
'http://localhost/WebApplication1'. 'HTTP/1.1 401 Access Denied'."

You need to register / unregister the right version of ASP.Net each time
you switch environments.

To Register ASP.Net 2.0:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspn et_regiis /i

To Unregister ASP.Net 2.0:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspn et_regiis /u
To Register ASP.Net 1.1:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis /i

To UnRegister ASP.Net 1.1:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspne t_regiis /u

That does the trick for me. Just remember to unregister the version you're
not using, and register the version you want. Then fire up Visual STudio
and create whatever you need...

--
Chris Mullins

Sep 11 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: rcamarda | last post by:
I may not be the best forum for this post, however I believe some one can still help me or direct me somewhere else. I'm finding that win 2003 x64 and SQL 2005 CTP is slower than win 2003 and SQL...
4
by: VB Programmer | last post by:
Just wondering... Have you had any issues using both vs.net 2003 and 2005 beta on your machine? (including the 2 frameworks) Or, do they work pretty autonomously? Any suggestions? Thanks.
2
by: Ily | last post by:
Can Visaal Studio 2005 and Visual Studio 2005 co-exist?
18
by: Jon Delano | last post by:
Hey all I am building a new computer. I have Windows XP Pro with SP2 and all the updates. I installed VS 2003. Then copied a project from my old computer to the new one. When I try and run...
14
by: el_sid | last post by:
Our developers have experienced a problem with updating Web References in Visual Studio.NET 2003. Normally, when a web service class (.asmx) is created, updating the Web Reference will...
7
by: Rene | last post by:
I am still waiting for my copy of VS 2005 that I ordered about 2 weeks ago. When I finally get VS 2005, I will want to continue to run my projects using 2003 and at the same time I want to make a...
3
by: Rene | last post by:
I just got my copy of VS 2005 and getting ready to install it but I am not sure if the installation of VS 2005 is going to override my 2003 installation. Ideally, I would like to have the two...
9
by: Neil | last post by:
We have an Access 2000 MDB with a SQL 7 back end. We are upgrading SQL Server to SQL 2005, and are considering upgrading to Access 2003. Someone mentioned that they had heard about some...
5
by: 2005Newbie | last post by:
I need to work in both .net 2003 & .net 2005 on the same machine until all applications in .net 2003 are converted to .net 2005 has anyone experienced any problems doing this?
3
by: shil | last post by:
Can I have both 1.1 and 2.0 frameworks installed on same machine? I have 2005 already, for some reason I had to install 2003. When I try to create a new project in 2003, I get an error as below: ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.