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

Re: a trappable error (c0000005)

Hi all,

I am getting the following error randomly, I cannot expalin the exact
scenario

Active Server Pages error 'ASP 0115'
Unexpected error
/wmweb/Save.Asp
A trappable error (C0000005) occurred in an external object. The
script cannot continue running.
Appreciated your help on this.

The Code :

<%@ CodePage=65001 Language=JavaScript %>

<%
var url = String(Request.ServerVariables("HTTP_REFERER"));
var orig_url = String(Request.ServerVariables("HTTP_REFERER"));

var session = "<session id='new'></session><errors></errors>";
var requator = Server.CreateObject("Requator.clsDoItAll");

if (requator.Init(session))
{
var retval = requator.OnStart();
if (retval == "OK")
{
if (url.indexOf("action=detail") 0)
{
url = url.replace(/requator.asp/i,"Detail.asp");
url = url.replace(/&action=detail/i,"");
}
if (url.indexOf("action=add") 0)
{
url = url.replace(/requator.asp/i,"Add.asp");
url = url.replace(/&action=add/i,"");
}
if (url.indexOf("action=copy") 0)
{
url = url.replace(/requator.asp/i,"Copy.asp");
url = url.replace(/&action=copy/i,"");
}
if ((url.indexOf("action=Maintenance") 0) ||
(url.indexOf("action=maintenance") 0))
{
url = url.replace(/requator.asp/i,"Maintenance.asp");
url = url.replace(/&action=maintenance/i,"");
}
url += "&save=true";
%>
<script type='text/javascript'>
var orig_url = "<%=orig_url%>";
var url = "<%=url%>";
top.fraBottom.fraRight.location.replace(url);
</script>
<%
}
}
%>
Thanks,San.

Jun 27 '08 #1
1 11422
Active Server Pages error 'ASP 0115'
Unexpected error
/wmweb/Save.Asp
A trappable error (C0000005) occurred in an external object. The
script cannot continue running.
Unfortunately, error number C0000005 is simply the catch-all "memory fault"
error. It means that the program tried to access non-existent or
non-accessible memory, most typically address 0, but any invalid memory
address will give the error.

For example, in C/C++ COM code, it will commonly arise because some pointer
didn't get initialized properly and so is stil zero.

The only clue you have there is the "in an EXTERNAL object" in the message.
So almost surely the error is in that "Requator.clsDoItAll" object. If you
don't have source code for that and/or don't know how to debug it, then I
don't think you are going to find this bug.

Maybe you can report it to the person from whom you got the object and they
can find it.
Jun 27 '08 #2

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

Similar topics

0
by: trode | last post by:
It seems that if my WSDL source goes offline SOAPClient() creates un-trappable fatal errors. I don't think this is right. Shouldn't this be, at very least, trappable exceptions? This is the...
0
by: TNGgroup | last post by:
Hi, Im trying to build some simple ASP Pages for our Intranet, I'm not a developer.. just try to do the best I can. for several days everything works great until this morning, on all my ASP...
1
by: Ryan | last post by:
I had an error crop up with a DTS package which I need some help with. Error Message : The application, , generated an application error The error occurred on 07/20/2004 @ 06:12:28.203 The...
0
by: AA | last post by:
This mail is regarding a trouble I'm facing with SQL Server 2000. I'm working with ASP .NET V 1.1 and SQL Server 2000. I have a reporting module that generates XML reports from the SQL Server 2000...
1
by: szudor | last post by:
Hi, When I start db2cc, the program hangs with memory access violation in javaw.exe. Strating with trace option, in java trace file I found the following information: 0SECTION TITLE...
7
by: Dave Mandy | last post by:
Hi All I have written a C# console based program. The first line of code simply writes to the event log and this works 99% of the time, whether being run manually or kicked off by Windows...
11
by: Howard Kaikow | last post by:
I'm using the code below, but an error is not getting trapped. Where can such errors occur? In another process? Try SomeCode Catch ex As Exception Dim strMsg() As String = Split(ex.ToString,...
1
by: zb | last post by:
I am writing a C# program that uses MySQL as database and MySQL ODBC 3.51 driver. It works fine all the way except this scenario that needs to be addressed. 1. Get a set of records to process...
1
by: jared424oken | last post by:
we are geting an error Active Server Pages error 'ASP 0115' Unexpected error /catin.asp A trappable error (E06D7363) occurred in an external object. The script cannot continue running.
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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?
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...

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.