Quantcast
Channel: Classic ASP
Viewing all articles
Browse latest Browse all 488

A trappable error (C0000005) in various asp pages on occasions happening

$
0
0

Hello,

I got this error in various asp pages on occasions(even in the page nothing to do except for "Response.Write") from a long time ago.

[Event log]
- <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
- <System>
<Provider Name="Active Server Pages" /> 
<EventID Qualifiers="49152">5</EventID> 
<Level>2</Level> 
<Task>0</Task> 
<Keywords>0x80000000000000</Keywords> 
<TimeCreated SystemTime="2015-12-09T03:26:41.000000000Z" /> 
<EventRecordID>161862</EventRecordID> 
<Channel>Application</Channel> 
<Computer>[SERVER_NAME]</Computer> 
<Security /> 
</System>
- <EventData>
<Data>File /index.asp Unexpected error. A trappable error (C0000005) occurred in an external object. The script cannot continue running.</Data> 
</EventData>
</Event>

[ASP Error]
Active Server Pages , ASP 0115 (0x80004005)
A trappable error (C0000005) occurred in an external object. The script cannot continue running.

[Server Information]
Windows Server 2008 R2 x64 Standard / Classic ASP

For example, the error happens in this simple page as well.

<%@ Language = "VBScript" CODEPAGE="65001" %>
<% Option Explicit %>
<%
Response.AddHeader "Pragma", "no-cache"
Response.AddHeader "cache-control", "no-store"
Response.Expires = -1

Response.Write("ok")
Response.End

%>

On the web site, some external DLL components are being used but it has been also happening in pages that don't use them.

I've tried googling to know what's wrong on it but there were no any exact answers.
And besides, there's no problem with the external DLL components working.
This error is very rarely happening, but, our users are seeing an error page sometimes!

Is there  anyone who has encountered this error? Please help me out!!

-Hyun


Viewing all articles
Browse latest Browse all 488

Trending Articles