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

How do I diagnose an error?

I have an aspx page that is generating the error below. I want to solve this
problem but in general I would like to know how I might best approach
problems like this. Any suggestions?

Thank you.

Kevin

Server encountered an internal error. For more information, turn on
customErrors in the server's .config file.
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.Runtime.Remoting.RemotingException: Server
encountered an internal error. For more information, turn on customErrors in
the server's .config file.

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:
[RemotingException: Server encountered an internal error. For more
information, turn on customErrors in the server's .config file.]
System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage
reqMsg, IMessage retMsg) +264
System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData&
msgData, Int32 type) +877
visa.dps.ppc.RemoteClsConversion.GetHTML(String strXMLFile, String
strXSLTFile, String strUserInput, String strSessionID)
visa.dps.ppc.frmVisaPPC.CreateScreen(String strScreen)
visa.dps.ppc.frmVisaPPC.Page_Load(Object sender, EventArgs e)
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET
Version:1.1.4322.573
Nov 19 '05 #1
2 4840
In your web.config file, locate the following nodes,

<customErrors mode="Off" />
^

Check if it's On, turn it off and you will see the error message in a yellow
page.

Hope it helps,

weichung
"Kevin Burton" <Ke*********@discussions.microsoft.com> wrote in message
news:E1**********************************@microsof t.com...
I have an aspx page that is generating the error below. I want to solve
this
problem but in general I would like to know how I might best approach
problems like this. Any suggestions?

Thank you.

Kevin

Server encountered an internal error. For more information, turn on
customErrors in the server's .config file.
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.Runtime.Remoting.RemotingException: Server
encountered an internal error. For more information, turn on customErrors
in
the server's .config file.

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:
[RemotingException: Server encountered an internal error. For more
information, turn on customErrors in the server's .config file.]
System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage
reqMsg, IMessage retMsg) +264
System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData&
msgData, Int32 type) +877
visa.dps.ppc.RemoteClsConversion.GetHTML(String strXMLFile, String
strXSLTFile, String strUserInput, String strSessionID)
visa.dps.ppc.frmVisaPPC.CreateScreen(String strScreen)
visa.dps.ppc.frmVisaPPC.Page_Load(Object sender, EventArgs e)
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731


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

Nov 19 '05 #2
For this error the message seems to be hard-coded. If I receive this error
(as opposed to the general system error page) then I get this as part of the
exception message string. Changing or toggling the <customErrors> does not
give further information as the error would lead one to believe.

"weichung[MCSD,MCDBA]" wrote:
In your web.config file, locate the following nodes,

<customErrors mode="Off" />
^

Check if it's On, turn it off and you will see the error message in a yellow
page.

Hope it helps,

weichung
"Kevin Burton" <Ke*********@discussions.microsoft.com> wrote in message
news:E1**********************************@microsof t.com...
I have an aspx page that is generating the error below. I want to solve
this
problem but in general I would like to know how I might best approach
problems like this. Any suggestions?

Thank you.

Kevin

Server encountered an internal error. For more information, turn on
customErrors in the server's .config file.
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.Runtime.Remoting.RemotingException: Server
encountered an internal error. For more information, turn on customErrors
in
the server's .config file.

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:
[RemotingException: Server encountered an internal error. For more
information, turn on customErrors in the server's .config file.]
System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage
reqMsg, IMessage retMsg) +264
System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData&
msgData, Int32 type) +877
visa.dps.ppc.RemoteClsConversion.GetHTML(String strXMLFile, String
strXSLTFile, String strUserInput, String strSessionID)
visa.dps.ppc.frmVisaPPC.CreateScreen(String strScreen)
visa.dps.ppc.frmVisaPPC.Page_Load(Object sender, EventArgs e)
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731


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


Nov 19 '05 #3

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

Similar topics

1
by: Martin | last post by:
I use dbx and i got the following error: Reading GL_CliConnMgr core file header read successfully Reading ld.so.1 dbx: core file read error: address 0xff3e6000 not available dbx: core file...
13
by: deko | last post by:
I use this convention frequently: Exit_Here: Exit Sub HandleErr: Select Case Err.Number Case 3163 Resume Next Case 3376 Resume Next
7
by: p | last post by:
WE had a Crystal 8 WebApp using vs 2002 which we upgraded to VS2003. I also have Crystal 9 pro on my development machine. The web app runs fine on my dev machine but am having problems deploying....
1
by: caesarchen | last post by:
Dear all: The following is the situation,can any one share me idea to solve it? Windows 2000 + IIS6.0 + .NET Framework 1.1 6 projects, about 800 webforms and 300 .asmx programs Project cowork...
2
by: Joginder | last post by:
I have developed an Add-In for VS2005 in Basic. It works fine on a couple of machines but fails witht the following error on one: ----Start of Message There was a problem loading the Add-in file...
8
by: Philip Colmer | last post by:
I'm rewriting some existing VBScript into VB.Net code. It was all going well until I hit the following error when testing the code: System.Runtime.InteropServices.COMException (0x80041003) at...
6
by: Bob Kline | last post by:
We have run into a problem trying to build a client which works with a web service implemented against the WSDL at . We have successfully created clients using other tools than the DotNet...
2
by: Brad Wood | last post by:
<environment> Consuming a web service from a VS2005 beta 2 test harness on WinXP. Web service built with VS2003 running on my machine with IIS 5X set to use ASP.NET 1.1 </environment> I have...
1
by: gnewsgroup | last post by:
We are using IIS 6.0 on a Windows Server 2003 Standard Edition with Service Pack 2. This is not a clean install of Windows Server 2003, but it was upgraded to from Windows Server 2000. We are...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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
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...
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...

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.