473,396 Members | 1,982 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,396 software developers and data experts.

How to use Copy Project

I use VS.Net 2003 on Win XP Pro SP2. I created an ASP.Net app on local IIS.

Now I just wanted to "Copy Project" to remote server, but I get this error:

"An error occured while copying the project
'http://localhost/MyApp/MyApp.csproj'. The web sever reported the following
error when attemptimg to create or open the web project located at the
following URL: 'http://www.mysite.com'. 'HTTP/1.1 500 Internal Sever Error'

More details:
- The remote server is IIS 5.0 on Win2000 Server, running multiple sites on
one IP address. (www.mysite.com is one of them; it has FP 2002 ext). Both
local machine and remote server have .Net Framework 1.1 and ASP.NET is
started.
- www.mysite.com is already existing, I am trying to add MyApp as a subweb
(which is an ASP.Net app).
- The same error occurs with both FrontPage and File Share options in Copy
Project.
- When attempting to "Copy Project", the www.mysite.com log adds a line "GET
/get_aspx_ver.aspx - 500 Microsoft-Visual-Studio.NET/7.10.3077"

What did I miss?
--
camp
Nov 19 '05 #1
2 1960
Is it this?

http://support.microsoft.com/default...b;en-us;886389

CAUSE

When you create or open a project in Microsoft Visual Studio .NET 2003,
Visual Studio .NET 2003 makes an HTTP Web request to determine the version
of the .NET Framework that is on the Web server. Visual Studio .NET 2003
calls the http://servername/get_aspx_ver.aspx page. If you receive the error
message, the default Web site is using Forms authentication, and the request
is redirected to an .htm page. Therefore, the request for the .aspx page is
never made, and Microsoft Internet Information Services (IIS) cannot return
the version information.

RESOLUTION
To resolve this problem, use the location tag to stop Forms authentication
from redirecting the request. To do this, add the following code to the
Web.config file:

<location path="get_aspx_ver.aspx" />
Do you have FTP access to the site? If so, you might find it easier to open
the FTP site in Internet Explorer and then drag the files using Windows
Explorer and drop them into Internet Explorer for upload.

Ken
Microsoft MVP [ASP.NET]
"camp" <ca**@discussions.microsoft.com> wrote in message
news:6A**********************************@microsof t.com...
I use VS.Net 2003 on Win XP Pro SP2. I created an ASP.Net app on local IIS.

Now I just wanted to "Copy Project" to remote server, but I get this
error:

"An error occured while copying the project
'http://localhost/MyApp/MyApp.csproj'. The web sever reported the
following
error when attemptimg to create or open the web project located at the
following URL: 'http://www.mysite.com'. 'HTTP/1.1 500 Internal Sever
Error'

More details:
- The remote server is IIS 5.0 on Win2000 Server, running multiple sites
on
one IP address. (www.mysite.com is one of them; it has FP 2002 ext). Both
local machine and remote server have .Net Framework 1.1 and ASP.NET is
started.
- www.mysite.com is already existing, I am trying to add MyApp as a subweb
(which is an ASP.Net app).
- The same error occurs with both FrontPage and File Share options in Copy
Project.
- When attempting to "Copy Project", the www.mysite.com log adds a line
"GET
/get_aspx_ver.aspx - 500 Microsoft-Visual-Studio.NET/7.10.3077"

What did I miss?
--
camp

Nov 19 '05 #2
Thank you.

This didn't fix it... I wonder if this problem has anything to do with the
web on the server not being the default... or is it a security issue with SP2
? I can, however, publish with Frontpage from the same workstation to the
same server. What could be the problem?

Yes I have total access to the server, but I wanted to be able to post
updates easier, as well as to filter files that are not needed.

--
camp
"Ken Cox [Microsoft MVP]" wrote:
Is it this?

http://support.microsoft.com/default...b;en-us;886389

CAUSE

When you create or open a project in Microsoft Visual Studio .NET 2003,
Visual Studio .NET 2003 makes an HTTP Web request to determine the version
of the .NET Framework that is on the Web server. Visual Studio .NET 2003
calls the http://servername/get_aspx_ver.aspx page. If you receive the error
message, the default Web site is using Forms authentication, and the request
is redirected to an .htm page. Therefore, the request for the .aspx page is
never made, and Microsoft Internet Information Services (IIS) cannot return
the version information.

RESOLUTION
To resolve this problem, use the location tag to stop Forms authentication
from redirecting the request. To do this, add the following code to the
Web.config file:

<location path="get_aspx_ver.aspx" />
Do you have FTP access to the site? If so, you might find it easier to open
the FTP site in Internet Explorer and then drag the files using Windows
Explorer and drop them into Internet Explorer for upload.

Ken
Microsoft MVP [ASP.NET]
"camp" <ca**@discussions.microsoft.com> wrote in message
news:6A**********************************@microsof t.com...
I use VS.Net 2003 on Win XP Pro SP2. I created an ASP.Net app on local IIS.

Now I just wanted to "Copy Project" to remote server, but I get this
error:

"An error occured while copying the project
'http://localhost/MyApp/MyApp.csproj'. The web sever reported the
following
error when attemptimg to create or open the web project located at the
following URL: 'http://www.mysite.com'. 'HTTP/1.1 500 Internal Sever
Error'

More details:
- The remote server is IIS 5.0 on Win2000 Server, running multiple sites
on
one IP address. (www.mysite.com is one of them; it has FP 2002 ext). Both
local machine and remote server have .Net Framework 1.1 and ASP.NET is
started.
- www.mysite.com is already existing, I am trying to add MyApp as a subweb
(which is an ASP.Net app).
- The same error occurs with both FrontPage and File Share options in Copy
Project.
- When attempting to "Copy Project", the www.mysite.com log adds a line
"GET
/get_aspx_ver.aspx - 500 Microsoft-Visual-Studio.NET/7.10.3077"

What did I miss?
--
camp


Nov 19 '05 #3

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

Similar topics

2
by: John at Free Design | last post by:
I have developed several web solutions (projects) in .NET from scratch and deployed them successfully. However, I have a new web project to do that would benefit by starting with a copy of an...
1
by: Adrian | last post by:
Hi all Initial postion: IIS 6.0, Windows 2003 Server, .NET Framework 1.1 We have a development Server A, a stating Server B and a production Server C. After development of the .NET ASP...
3
by: Johnny | last post by:
Hi, I have created an ASP.NET application (let's call it FooBar) with VS.NET on my local machine, residing in http://localhost/FooBar. Deploying it to another folder on my machine works well...
1
by: Paul Smith | last post by:
I am new to using VB.net and am learning through a book, and it does not cover this well enough!!!! I have created a basic asp.net web page and can view this when my project is located on my...
1
by: Mythran | last post by:
Can a couple of you verify the following VS.Net 2003 Copy Project bug? I believe it's a bug with IIS and more specifically, Front Page Server Extensions: Create a text file that is greater than...
0
by: dave | last post by:
I have used Copy Project in Visual Studio.Net 2003 to make a copy of a project on which I want to base a very similar project. The project uses a back-end SQL Server database and has a lot of...
4
by: Mark | last post by:
Good morning. I recently made some changes to my Access project, and I introduced some problems that I could not resolve. So I deleted the forms that I had altered and saved the project. Then I...
5
by: Benson | last post by:
Since there are many similar programs worked out, I want to copy a similar program (alreay work under form inheritance) to a new one so that I can change the new one quicker. It is not ok to copy...
4
by: Vili | last post by:
How to copy a visual studio 2005 web project with another name? I have a visual studio project 2005 web project "myWebSite1" in visual source safe I would like to copy this project with another...
9
by: AWW | last post by:
Running XP - Visual Studio 2005 - VB Want to have duplicate projects - one safe and stable - other for experimenting Can't fine easy way to make duplicate project. Stupid question? or stupid ME?...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
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,...

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.