Can't create New Proj. with XP/.NET 2003

M

Marc Miller

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET 7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server with IIS 5.0.

I can create a new project on my test server from the 1st machine, but I
receive an 'HTTP/1.1 500 Internal Server error" from my Web Server.

My userid/password are the same on all 3 machines.

Any ideas?

Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA
 
J

Jim Cheshire [MSFT]

Marc,

Do you have any .aspx pages already on that server that you can test
against? What I believe is likely happening is that you are receiving a
500 when browsing .aspx pages. The reason that shows up when you are
creating projects is due to the way that Visual Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET 2003, we try to
browse to a non-existant file called get_aspx_ver.aspx. What we expect to
get back is a 404, but included in that 404 is the version of ASP.NET
that's running on the server. We can then determine whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with ASP.NET on your
machine and you're getting back a 500 at that point. A look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
 
D

Dale Binder

I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.

Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.

-----Original Message-----
Marc,

Do you have any .aspx pages already on that server that you can test
against? What I believe is likely happening is that you are receiving a
500 when browsing .aspx pages. The reason that shows up when you are
creating projects is due to the way that Visual Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET 2003, we try to
browse to a non-existant file called get_aspx_ver.aspx. What we expect to
get back is a 404, but included in that 404 is the version of ASP.NET
that's running on the server. We can then determine whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with ASP.NET on your
machine and you're getting back a 500 at that point. A look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path: cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!
TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET 7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server with IIS 5.0.

I can create a new project on my test server from the 1st machine, but I
receive an 'HTTP/1.1 500 Internal Server error" from my Web Server.

My userid/password are the same on all 3 machines.

Any ideas?

Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA

.
 
J

Jim Cheshire [MSFT]

Dale,

What you need to do is troubleshoot why ASP.NET is not working on the site.
I would try browsing to a simple inline .aspx page and see what the result
it. Turn off Friendly HTTP Error Messages in the browser first.

Here is a simple page you can use. Just copy and paste this code into
Notepad and save as who.aspx. Copy it to your Web server content area and
then browse to it.

<%@ Page Language="C#" %>
<script runat="server">

// Insert page code here
//
private void Page_Load(object sender, System.EventArgs e) {
lblWho.Text = "ASP.NET running as : " +
System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho" runat="server">Label</asp:Label>
<!-- Insert content here -->
</form>
</body>
</html>

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.


--------------------
Content-Class: urn:content-classes:message
From: "Dale Binder" <[email protected]>
Sender: "Dale Binder" <[email protected]>
References: <[email protected]>
Subject: RE: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 10:59:56 -0800
Lines: 95
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcO/T818h0r419sdRH2J+eHQLotQKA==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195608
NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.

Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.

-----Original Message-----
Marc,

Do you have any .aspx pages already on that server that you can test
against? What I believe is likely happening is that you are receiving a
500 when browsing .aspx pages. The reason that shows up when you are
creating projects is due to the way that Visual Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET 2003, we try to
browse to a non-existant file called get_aspx_ver.aspx. What we expect to
get back is a 404, but included in that 404 is the version of ASP.NET
that's running on the server. We can then determine whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with ASP.NET on your
machine and you're getting back a 500 at that point. A look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path: cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!
TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET 7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server with IIS 5.0.

I can create a new project on my test server from the 1st machine, but I
receive an 'HTTP/1.1 500 Internal Server error" from my Web Server.

My userid/password are the same on all 3 machines.

Any ideas?

Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA

.
 
M

Marc Miller

Jim,

1. Nothing ever showed in my system32 logs that had today's date.
2. I've checked the server's ADD/Remove programs and it shows only Framework
1.1 installed.
3. Created the who.aspx page and placed it in the server's inetpub/wwwroot
and got Server Application Unavailable.
4. Placed the who.aspx in a folder under inetpub/wwwroot and got: ASP.NET
running as SERVERNAME/ASPNET.

As an added note, I can create a project from a 3rd machine (Win 2000 /
..NET 7.0)
then open it and convert it on the XP Machine with .NET 2003 and run and
debug it from there.
But I still cannot create a project from the XP machine.

Thanks,
Marc Miller





Jim Cheshire said:
Dale,

What you need to do is troubleshoot why ASP.NET is not working on the site.
I would try browsing to a simple inline .aspx page and see what the result
it. Turn off Friendly HTTP Error Messages in the browser first.

Here is a simple page you can use. Just copy and paste this code into
Notepad and save as who.aspx. Copy it to your Web server content area and
then browse to it.

<%@ Page Language="C#" %>
<script runat="server">

// Insert page code here
//
private void Page_Load(object sender, System.EventArgs e) {
lblWho.Text = "ASP.NET running as : " +
System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho" runat="server">Label</asp:Label>
<!-- Insert content here -->
</form>
</body>
</html>

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.


--------------------
Content-Class: urn:content-classes:message
From: "Dale Binder" <[email protected]>
Sender: "Dale Binder" <[email protected]>
References: <[email protected]>
Subject: RE: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 10:59:56 -0800
Lines: 95
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcO/T818h0r419sdRH2J+eHQLotQKA==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195608
NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.

Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.

-----Original Message-----
Marc,

Do you have any .aspx pages already on that server that you can test
against? What I believe is likely happening is that you are receiving a
500 when browsing .aspx pages. The reason that shows up when you are
creating projects is due to the way that Visual Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET 2003, we try to
browse to a non-existant file called get_aspx_ver.aspx. What we expect to
get back is a 404, but included in that 404 is the version of ASP.NET
that's running on the server. We can then determine whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with ASP.NET on your
machine and you're getting back a 500 at that point. A look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl! TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET 7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server with IIS 5.0.

I can create a new project on my test server from the 1st machine, but I
receive an 'HTTP/1.1 500 Internal Server error" from my Web Server.

My userid/password are the same on all 3 machines.

Any ideas?

Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA




.
 
J

Jim Cheshire [MSFT]

Marc,

Anything in the Application Event Viewer log?

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
References: <[email protected]>
<[email protected]>
Subject: Re: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 15:49:03 -0500
Lines: 190
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path: cpmsftngxa07.phx.gbl!cpmsftngxa06.phx.gbl!cpmsftngxa09.phx.gbl!TK2MSFTNGP08.
phx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195635
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Jim,

1. Nothing ever showed in my system32 logs that had today's date.
2. I've checked the server's ADD/Remove programs and it shows only Framework
1.1 installed.
3. Created the who.aspx page and placed it in the server's inetpub/wwwroot
and got Server Application Unavailable.
4. Placed the who.aspx in a folder under inetpub/wwwroot and got: ASP.NET
running as SERVERNAME/ASPNET.

As an added note, I can create a project from a 3rd machine (Win 2000 /
.NET 7.0)
then open it and convert it on the XP Machine with .NET 2003 and run and
debug it from there.
But I still cannot create a project from the XP machine.

Thanks,
Marc Miller





Jim Cheshire said:
Dale,

What you need to do is troubleshoot why ASP.NET is not working on the site.
I would try browsing to a simple inline .aspx page and see what the result
it. Turn off Friendly HTTP Error Messages in the browser first.

Here is a simple page you can use. Just copy and paste this code into
Notepad and save as who.aspx. Copy it to your Web server content area and
then browse to it.

<%@ Page Language="C#" %>
<script runat="server">

// Insert page code here
//
private void Page_Load(object sender, System.EventArgs e) {
lblWho.Text = "ASP.NET running as : " +
System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho" runat="server">Label</asp:Label>
<!-- Insert content here -->
</form>
</body>
</html>

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.


--------------------
Content-Class: urn:content-classes:message
From: "Dale Binder" <[email protected]>
Sender: "Dale Binder" <[email protected]>
References: <[email protected]>
Subject: RE: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 10:59:56 -0800
Lines: 95
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcO/T818h0r419sdRH2J+eHQLotQKA==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195608
NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.

Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.


-----Original Message-----
Marc,

Do you have any .aspx pages already on that server that
you can test
against? What I believe is likely happening is that you
are receiving a
500 when browsing .aspx pages. The reason that shows up
when you are
creating projects is due to the way that Visual
Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET
2003, we try to
browse to a non-existant file called get_aspx_ver.aspx.
What we expect to
get back is a 404, but included in that 404 is the
version of ASP.NET
that's running on the server. We can then determine
whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with
ASP.NET on your
machine and you're getting back a 500 at that point. A
look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and
confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!
TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET
7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server
with IIS 5.0.

I can create a new project on my test server from the
1st machine, but I
receive an 'HTTP/1.1 500 Internal Server error" from
my Web Server.

My userid/password are the same on all 3 machines.

Any ideas?

Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA




.
 
M

Marc Miller

Jim,

Nothing that I see which would pertain to dotnet or IIS. I think I am going
to re-build
the Win 2000 server tho, I'm having troubles with SQL Server too and maybe a
re-build
will clear things up.



Marc
PS


Jim Cheshire said:
Marc,

Anything in the Application Event Viewer log?

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
References: <[email protected]>
<[email protected]>
Subject: Re: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 15:49:03 -0500
Lines: 190
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path:
cpmsftngxa07.phx.gbl!cpmsftngxa06.phx.gbl!cpmsftngxa09.phx.gbl!TK2MSFTNGP08.
phx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195635
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Jim,

1. Nothing ever showed in my system32 logs that had today's date.
2. I've checked the server's ADD/Remove programs and it shows only Framework
1.1 installed.
3. Created the who.aspx page and placed it in the server's inetpub/wwwroot
and got Server Application Unavailable.
4. Placed the who.aspx in a folder under inetpub/wwwroot and got: ASP.NET
running as SERVERNAME/ASPNET.

As an added note, I can create a project from a 3rd machine (Win 2000 /
.NET 7.0)
then open it and convert it on the XP Machine with .NET 2003 and run and
debug it from there.
But I still cannot create a project from the XP machine.

Thanks,
Marc Miller





Jim Cheshire said:
Dale,

What you need to do is troubleshoot why ASP.NET is not working on the site.
I would try browsing to a simple inline .aspx page and see what the result
it. Turn off Friendly HTTP Error Messages in the browser first.

Here is a simple page you can use. Just copy and paste this code into
Notepad and save as who.aspx. Copy it to your Web server content area and
then browse to it.

<%@ Page Language="C#" %>
<script runat="server">

// Insert page code here
//
private void Page_Load(object sender, System.EventArgs e) {
lblWho.Text = "ASP.NET running as : " +
System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho" runat="server">Label</asp:Label>
<!-- Insert content here -->
</form>
</body>
</html>

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.


--------------------
Content-Class: urn:content-classes:message
From: "Dale Binder" <[email protected]>
Sender: "Dale Binder" <[email protected]>
References: <[email protected]>
<[email protected]>
Subject: RE: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 10:59:56 -0800
Lines: 95
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcO/T818h0r419sdRH2J+eHQLotQKA==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:195608
NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.

Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.


-----Original Message-----
Marc,

Do you have any .aspx pages already on that server that
you can test
against? What I believe is likely happening is that you
are receiving a
500 when browsing .aspx pages. The reason that shows up
when you are
creating projects is due to the way that Visual
Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET
2003, we try to
browse to a non-existant file called get_aspx_ver.aspx.
What we expect to
get back is a 404, but included in that 404 is the
version of ASP.NET
that's running on the server. We can then determine
whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with
ASP.NET on your
machine and you're getting back a 500 at that point. A
look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and
confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!
TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET
7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server
with IIS 5.0.

I can create a new project on my test server from the
1st machine, but I
receive an 'HTTP/1.1 500 Internal Server error" from
my Web Server.

My userid/password are the same on all 3 machines.

Any ideas?

Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA




.
 
D

Dale

Jim:

Thanks for the info. I created who.aspx and on the
server I tried to access it from the browser with
friendly messages off. Here is the output below:

Dale

Server Error in '/' Application.
----------------------------------------------------------
----------------------

Access denied to 'D:\Inetpub\wwwroot\'. Failed to start
monitoring file changes.
Description: An unhandled exception occurred during the
execution of the current web request. Please review the
stack trace for more information about the error and
where it originated in the code.

Exception Details: System.Web.HttpException: Access
denied to 'D:\Inetpub\wwwroot\'. Failed to start
monitoring file changes.

Source Error:

An unhandled exception was generated during the execution
of the current web request. Information regarding the
origin and location of the exception can be identified
using the exception stack trace below.

Stack Trace:


[HttpException (0x80070005): Access denied
to 'D:\Inetpub\wwwroot\'. Failed to start monitoring file
changes.]
System.Web.DirMonCompletion..ctor(DirectoryMonitor
dirMon, String dir, Boolean watchSubtree, UInt32
notifyFilter) +140
System.Web.DirectoryMonitor.StartMonitoring() +42
System.Web.DirectoryMonitor.StartMonitoringFile(String
file, FileChangeEventHandler callback, String alias) +154

System.Web.FileChangesMonitor.StartMonitoringDirectoryRena
mesAndBinDirectory(String dir, FileChangeEventHandler
callback) +278
System.Web.HttpRuntime.FirstRequestInit(HttpContext
context) +331

[HttpException (0x80004005): ASP.NET Initialization Error]
System.Web.HttpRuntime.FirstRequestInit(HttpContext
context) +965
System.Web.HttpRuntime.ProcessRequestInternal
(HttpWorkerRequest wr) +128

----------------------------------------------------------
----------------------
Version Information: Microsoft .NET Framework
Version:1.1.4322.573; ASP.NET Version:1.1.4322.573

Dale,

What you need to do is troubleshoot why ASP.NET is not working on the
site.
I would try browsing to a simple inline .aspx page and see what the
result
it. Turn off Friendly HTTP Error Messages in the browser first.

Here is a simple page you can use. Just copy and paste this code into
Notepad and save as who.aspx. Copy it to your Web
server content area
and
then browse to it.

<%@ Page Language="C#" %>
<script runat="server">

// Insert page code here
//
private void Page_Load(object sender, System.EventArgs e) {
lblWho.Text = "ASP.NET running as : " +
System.Security.Principal.WindowsIdentity.GetCurrent ().Name;
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho"
runat="server">Label said:
<!-- Insert content here -->
</form>
</body>
</html>

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.


--------------------
Content-Class: urn:content-classes:message
From: "Dale Binder" <[email protected]>
Sender: "Dale Binder" <[email protected]>
References: <[email protected]>
<[email protected]>
Subject: RE: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 10:59:56 -0800
Lines: 95
Message-ID: <032b01c3bf4f$cd7c41a0 [email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcO/T818h0r419sdRH2J+eHQLotQKA==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195608
NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.

Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.


-----Original Message-----
Marc,

Do you have any .aspx pages already on that server that
you can test
against? What I believe is likely happening is that you
are receiving a
500 when browsing .aspx pages. The reason that shows up
when you are
creating projects is due to the way that Visual
Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET
2003, we try to
browse to a non-existant file called get_aspx_ver.aspx.
What we expect to
get back is a 404, but included in that 404 is the
version of ASP.NET
that's running on the server. We can then determine
whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with
ASP.NET on your
machine and you're getting back a 500 at that point. A
look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and
confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID:
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!
TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET
7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server
with IIS 5.0.

I can create a new project on my test server from the
1st machine, but I
receive an 'HTTP/1.1 500 Internal Server error" from
my Web Server.

My userid/password are the same on all 3 machines.

Any ideas?

Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA




.


.
 
G

Guest

As it turns out, in Visual Studio .NET, I went under
Tools/Options and the Projects folder and under Web
Settings, I changed the preferred access method to use
FrontPage server extensions instead of UNC/file share.
Apparently, after some troubleshooting, and your
suggestion, I found that the local ASPNET account on the
server (Windows 2000/IIS 5.0/FrontPage Server Ext),
didn't have permissions to use the UNC/file share method
to create the project and generated the HTTP/1.1 500
Internal Server Error.

Now that I switched to use FrontPage server extensions as
the access method for web projects in VS .NET, it appears
to work. I'll have to do a server reboot and make sure
any of the NTFS perm changes I made to WWWRoot folders to
add ASPNET account in are removed. After that, if all
works, I'll post again.

Thanks - Dale
-----Original Message-----
Jim:

Thanks for the info. I created who.aspx and on the
server I tried to access it from the browser with
friendly messages off. Here is the output below:

Dale

Server Error in '/' Application.
--------------------------------------------------------- -
----------------------

Access denied to 'D:\Inetpub\wwwroot\'. Failed to start
monitoring file changes.
Description: An unhandled exception occurred during the
execution of the current web request. Please review the
stack trace for more information about the error and
where it originated in the code.

Exception Details: System.Web.HttpException: Access
denied to 'D:\Inetpub\wwwroot\'. Failed to start
monitoring file changes.

Source Error:

An unhandled exception was generated during the execution
of the current web request. Information regarding the
origin and location of the exception can be identified
using the exception stack trace below.

Stack Trace:


[HttpException (0x80070005): Access denied
to 'D:\Inetpub\wwwroot\'. Failed to start monitoring file
changes.]
System.Web.DirMonCompletion..ctor(DirectoryMonitor
dirMon, String dir, Boolean watchSubtree, UInt32
notifyFilter) +140
System.Web.DirectoryMonitor.StartMonitoring() +42
System.Web.DirectoryMonitor.StartMonitoringFile (String
file, FileChangeEventHandler callback, String alias) +154

System.Web.FileChangesMonitor.StartMonitoringDirectoryRen a
mesAndBinDirectory(String dir, FileChangeEventHandler
callback) +278
System.Web.HttpRuntime.FirstRequestInit(HttpContext
context) +331

[HttpException (0x80004005): ASP.NET Initialization Error]
System.Web.HttpRuntime.FirstRequestInit(HttpContext
context) +965
System.Web.HttpRuntime.ProcessRequestInternal
(HttpWorkerRequest wr) +128

--------------------------------------------------------- -
----------------------
Version Information: Microsoft .NET Framework
Version:1.1.4322.573; ASP.NET Version:1.1.4322.573

"Jim Cheshire [MSFT]"
wrote in message page
and see what the System.Security.Principal.WindowsIdentity.GetCurrent
().Name;
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho"
runat="server">Label said:
<!-- Insert content here -->
</form>
</body>
</html>

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.


--------------------
Content-Class: urn:content-classes:message
From: "Dale Binder" <[email protected]>
Sender: "Dale Binder" <[email protected]>
References:
<[email protected]>
Subject: RE: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 10:59:56 -0800
Lines: 95
Message-ID: <032b01c3bf4f$cd7c41a0 [email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcO/T818h0r419sdRH2J+eHQLotQKA==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195608
NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.

Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.


-----Original Message-----
Marc,

Do you have any .aspx pages already on that server that
you can test
against? What I believe is likely happening is that you
are receiving a
500 when browsing .aspx pages. The reason that shows up
when you are
creating projects is due to the way that Visual
Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET
2003, we try to
browse to a non-existant file called get_aspx_ver.aspx.
What we expect to
get back is a 404, but included in that 404 is the
version of ASP.NET
that's running on the server. We can then determine
whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with
ASP.NET on your
machine and you're getting back a 500 at that point. A
look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and
confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID:
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!
TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET
7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server
with IIS 5.0.

I can create a new project on my test server from the
1st machine, but I
receive an 'HTTP/1.1 500 Internal Server
error"
.
 
J

Jim Cheshire [MSFT]

Dale,

Yes, the error you were seeing indicates that the ASP.NET process account
doesn't have permissions to the Web site content. Changing those
permissions and giving the account the default permissions should resolve
it.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: <[email protected]>
Sender: <[email protected]>
References: <[email protected]>
<[email protected]>
<[email protected]>
<RcN#[email protected]>
<[email protected]>
<[email protected]>
Subject: Re: Can't create New Proj. with XP/.NET 2003
Date: Fri, 12 Dec 2003 10:48:17 -0800
Lines: 312
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcPA4IGOH07AwJx9RYGVj6TY+kqsKw==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:196068
NNTP-Posting-Host: tk2msftngxa05.phx.gbl 10.40.1.49
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

As it turns out, in Visual Studio .NET, I went under
Tools/Options and the Projects folder and under Web
Settings, I changed the preferred access method to use
FrontPage server extensions instead of UNC/file share.
Apparently, after some troubleshooting, and your
suggestion, I found that the local ASPNET account on the
server (Windows 2000/IIS 5.0/FrontPage Server Ext),
didn't have permissions to use the UNC/file share method
to create the project and generated the HTTP/1.1 500
Internal Server Error.

Now that I switched to use FrontPage server extensions as
the access method for web projects in VS .NET, it appears
to work. I'll have to do a server reboot and make sure
any of the NTFS perm changes I made to WWWRoot folders to
add ASPNET account in are removed. After that, if all
works, I'll post again.

Thanks - Dale
-----Original Message-----
Jim:

Thanks for the info. I created who.aspx and on the
server I tried to access it from the browser with
friendly messages off. Here is the output below:

Dale

Server Error in '/' Application.
--------------------------------------------------------- -
----------------------

Access denied to 'D:\Inetpub\wwwroot\'. Failed to start
monitoring file changes.
Description: An unhandled exception occurred during the
execution of the current web request. Please review the
stack trace for more information about the error and
where it originated in the code.

Exception Details: System.Web.HttpException: Access
denied to 'D:\Inetpub\wwwroot\'. Failed to start
monitoring file changes.

Source Error:

An unhandled exception was generated during the execution
of the current web request. Information regarding the
origin and location of the exception can be identified
using the exception stack trace below.

Stack Trace:


[HttpException (0x80070005): Access denied
to 'D:\Inetpub\wwwroot\'. Failed to start monitoring file
changes.]
System.Web.DirMonCompletion..ctor(DirectoryMonitor
dirMon, String dir, Boolean watchSubtree, UInt32
notifyFilter) +140
System.Web.DirectoryMonitor.StartMonitoring() +42
System.Web.DirectoryMonitor.StartMonitoringFile (String
file, FileChangeEventHandler callback, String alias) +154

System.Web.FileChangesMonitor.StartMonitoringDirectoryRen a
mesAndBinDirectory(String dir, FileChangeEventHandler
callback) +278
System.Web.HttpRuntime.FirstRequestInit(HttpContext
context) +331

[HttpException (0x80004005): ASP.NET Initialization Error]
System.Web.HttpRuntime.FirstRequestInit(HttpContext
context) +965
System.Web.HttpRuntime.ProcessRequestInternal
(HttpWorkerRequest wr) +128

--------------------------------------------------------- -
----------------------
Version Information: Microsoft .NET Framework
Version:1.1.4322.573; ASP.NET Version:1.1.4322.573

"Jim Cheshire [MSFT]"
wrote in message
Dale,

What you need to do is troubleshoot why ASP.NET is not working on the
site.
I would try browsing to a simple inline .aspx
page
and see what the
result
it. Turn off Friendly HTTP Error Messages in the browser first.

Here is a simple page you can use. Just copy and paste this code into
Notepad and save as who.aspx. Copy it to your Web server content area
and
then browse to it.

<%@ Page Language="C#" %>
<script runat="server">

// Insert page code here
//
private void Page_Load(object sender, System.EventArgs e) {
lblWho.Text = "ASP.NET running as : " +
System.Security.Principal.WindowsIdentity.GetCurrent
().Name;
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho"
runat="server">Label said:
<!-- Insert content here -->
</form>
</body>
</html>

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.


--------------------
Content-Class: urn:content-classes:message
From: "Dale Binder" <[email protected]>
Sender: "Dale Binder" <[email protected]>
References:
<[email protected]>
Subject: RE: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 10:59:56 -0800
Lines: 95
Message-ID: <032b01c3bf4f$cd7c41a0 [email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcO/T818h0r419sdRH2J+eHQLotQKA==
Newsgroups: microsoft.public.dotnet.framework.aspnet
Path: cpmsftngxa07.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195608
NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
X-Tomcat-NG:
microsoft.public.dotnet.framework.aspnet

I'm having the same problem. I have a 2000 server
with .NET Framework 1.1 and I have VS.NET 2003 on another
dev box running XP. From the dev box to the server, I'm
getting the "HTTP/1.1 500" and the IIS logs do show the
problem you noted - the call to get_aspx_ver.aspx
returned 500.

Any other ideas? I've reinstalled the .NET 1.1 framework
on the server.


-----Original Message-----
Marc,

Do you have any .aspx pages already on that server that
you can test
against? What I believe is likely happening is that you
are receiving a
500 when browsing .aspx pages. The reason that shows up
when you are
creating projects is due to the way that Visual
Studio .NET 2003 handles
project creation.

When you create a new project with Visual Studio .NET
2003, we try to
browse to a non-existant file called get_aspx_ver.aspx.
What we expect to
get back is a 404, but included in that 404 is the
version of ASP.NET
that's running on the server. We can then determine
whether or not you are
running ASP.NET 1.1.

In your case, I'll bet that there's something wrong with
ASP.NET on your
machine and you're getting back a 500 at that point. A
look at the IIS
logs should confirm what's going on.

Jim Cheshire, MCSE, MCSD [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and
confers no rights.

--------------------
Reply-To: "Marc Miller" <[email protected]>
From: "Marc Miller" <[email protected]>
Subject: Can't create New Proj. with XP/.NET 2003
Date: Wed, 10 Dec 2003 09:23:23 -0500
Lines: 18
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1106
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Message-ID:
Newsgroups:
microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: inet1.ct-enterprises.com 209.74.63.71
Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!
TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.aspnet:195531
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Hi all,

I have 2 dev. machines, the 1st is Win 2000 with .NET
7.0 and the 2nd is XP
Pro with .NET 2003. My Web Server is Win 2000 Server
with IIS 5.0.

I can create a new project on my test server from the
1st machine, but I
receive an 'HTTP/1.1 500 Internal Server
error"
from
my Web Server.

My userid/password are the same on all 3 machines.

Any ideas?

Thanks,
Marc Miller
Commonwealth Telephone Enterprises
Wilkes Barre, PA




.









.
.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top