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

stumped, server.execute issue on asp page

I have yet to understand or get a response on the issue I'm having.
I'm taking an asp web application and migrating it from Windows 2K to 2003.
I have the new website location (2003) settings correct, i.e. enable parent
paths, etc. and
still get these errors:

Server object error 'ASP 0228 : 80004005'
Server.Execute Error
/ASP_Procedures/PageHeader.asp, line 60
The call to Server.Execute failed while loading the page.

code:
Server.Execute("/ASP_Procedures/PageHeader.asp")

The path is correct, I've checked the executed page (i.e. rights, code, etc.)

The site and directory has execute rights, etc.
Why? Can Windows 2003 handle this use server.execute?

Any ideas, this ap runs fine on the Windows 2000 server
Jul 22 '05 #1
3 6845
Chris wrote:
I have yet to understand or get a response on the issue I'm having.
I'm taking an asp web application and migrating it from Windows 2K to
2003. I have the new website location (2003) settings correct, i.e.
enable parent paths, etc. and
still get these errors:

Server object error 'ASP 0228 : 80004005'
Server.Execute Error
/ASP_Procedures/PageHeader.asp, line 60
The call to Server.Execute failed while loading the page.

code:
Server.Execute("/ASP_Procedures/PageHeader.asp")

The path is correct, I've checked the executed page (i.e. rights,
code, etc.)

The site and directory has execute rights, etc.
Why? Can Windows 2003 handle this use server.execute?

Any ideas, this ap runs fine on the Windows 2000 server


Ah, I remember this.

Have you exhausted Google and the KB?

http://www.google.com/search?sourcei...ecute+Error%22

One of the links in the search resuts indicates that you can get this error
not only when the path to the page being executed is incorrect, but also
when the page being executed raises an error.

If nothing in these search results helps, you may be the victim of a bug in
IIS6. You should take a gamble and call MS Product Support to find out. If
it is a bug, you won't be charged for the call. If it is not a bug, at least
you will get somebody to take a first-hand look at your problem, which may
make the cost worth it.

Hopefully, if you get a resolution, you will share it with us.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 22 '05 #2
Thanx for your reply. Yes, I have spent a couple days researching the web and
postings for ideas, no luck. I've contacted MS, today, and to my
dis-satisifaction spent 20 minutes on hold to final be transferred to what I
believe was India. Two very nice, but extrememly limited support personal
specialists, could not help me very much as they were supposed to be
asp/asp.net developers but had no idea of what server.transfer was, etc. I
finally gave up.

I'll try your link. The app runs fine on Windows 2000 but once moved it
craps out. So I'm stumped. The obvoius issue would be allow parent paths.

thanx again, let me know if you run accross anything else.

"Bob Barrows [MVP]" wrote:
Chris wrote:
I have yet to understand or get a response on the issue I'm having.
I'm taking an asp web application and migrating it from Windows 2K to
2003. I have the new website location (2003) settings correct, i.e.
enable parent paths, etc. and
still get these errors:

Server object error 'ASP 0228 : 80004005'
Server.Execute Error
/ASP_Procedures/PageHeader.asp, line 60
The call to Server.Execute failed while loading the page.

code:
Server.Execute("/ASP_Procedures/PageHeader.asp")

The path is correct, I've checked the executed page (i.e. rights,
code, etc.)

The site and directory has execute rights, etc.
Why? Can Windows 2003 handle this use server.execute?

Any ideas, this ap runs fine on the Windows 2000 server


Ah, I remember this.

Have you exhausted Google and the KB?

http://www.google.com/search?sourcei...ecute+Error%22

One of the links in the search resuts indicates that you can get this error
not only when the path to the page being executed is incorrect, but also
when the page being executed raises an error.

If nothing in these search results helps, you may be the victim of a bug in
IIS6. You should take a gamble and call MS Product Support to find out. If
it is a bug, you won't be charged for the call. If it is not a bug, at least
you will get somebody to take a first-hand look at your problem, which may
make the cost worth it.

Hopefully, if you get a resolution, you will share it with us.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jul 22 '05 #3
Ok, I believe I've found the issue. Apparently this (server.execute) doesn't
work when the website (on IIS) is set up as a virtual directory under Default
websites. It must be a "stand-alone" website with its own IP (if other
website are running on that machine).
Learn something new everyday. Didn't see anything on that particular
requirement in any articles????
This kind of makes snese, but then again why can't it find the executed file
when set as a virtual directory?

Thanx.
"Bob Barrows [MVP]" wrote:
Chris wrote:
I have yet to understand or get a response on the issue I'm having.
I'm taking an asp web application and migrating it from Windows 2K to
2003. I have the new website location (2003) settings correct, i.e.
enable parent paths, etc. and
still get these errors:

Server object error 'ASP 0228 : 80004005'
Server.Execute Error
/ASP_Procedures/PageHeader.asp, line 60
The call to Server.Execute failed while loading the page.

code:
Server.Execute("/ASP_Procedures/PageHeader.asp")

The path is correct, I've checked the executed page (i.e. rights,
code, etc.)

The site and directory has execute rights, etc.
Why? Can Windows 2003 handle this use server.execute?

Any ideas, this ap runs fine on the Windows 2000 server


Ah, I remember this.

Have you exhausted Google and the KB?

http://www.google.com/search?sourcei...ecute+Error%22

One of the links in the search resuts indicates that you can get this error
not only when the path to the page being executed is incorrect, but also
when the page being executed raises an error.

If nothing in these search results helps, you may be the victim of a bug in
IIS6. You should take a gamble and call MS Product Support to find out. If
it is a bug, you won't be charged for the call. If it is not a bug, at least
you will get somebody to take a first-hand look at your problem, which may
make the cost worth it.

Hopefully, if you get a resolution, you will share it with us.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jul 22 '05 #4

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

Similar topics

10
by: Manny | last post by:
I have a web form "Page1.asp" and it reads data from a database, does some calculations, and displays the records in pages. Works fine. I have a button that displays on the page, defined as...
12
by: HarveyB | last post by:
I would like to generate non-modal popup windows from ASP.Net code-behind. I have tried using Client Side scripting like "function Test(){ window.open('test.htm',_blank,...
4
by: Prince Kumar | last post by:
I joined a company recently and they have a java program which hangs (does nothing) after a while. This is no way consistent. It could succeed quite a few times and can fail a few other times....
2
by: Chuck Haeberle | last post by:
We have a page which sends a copy of itself via email to customers. To enable this, the page calls Server.Execute on itself into a text stream and strips its own output down to HTML presentable to...
1
by: IronYuppie | last post by:
This seems to be so straightforward, but I keep having the following issue. I'm trying to make a login and create user page, but everytime i click through the CreateNewUser url, it brings me back...
6
by: Sam | last post by:
My problem is that when I am trying to use Server.Execute("Somehandler.ashx") I am getting HttpException. System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter writer,...
1
by: BethH | last post by:
Hello! I'm developing a webpage locally. I originally started it on PHP 5 and XP (where it was working). We've recently changed my machine to a dual boot with most of the important stuff on...
1
by: Sallana | last post by:
Hello guys. My name is Lynne and I am currently trying to build a website for a game that I play online called Exodus. This is the page --> http://exodus.mudmagic.com Immediately you can...
5
by: =?Utf-8?B?dXNmaW5lY2F0cw==?= | last post by:
I'm new to asp.net. I'm trying to follow the tutorial walkthroughs and have got a few done. Now I'm doing the one about validating input, and I've run into some problems. In particular, I am...
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: 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
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
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...

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.