• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

I got this error a couple of times

episodic

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

General network error. Check your network documentation.
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.Data.SqlClient.SqlException: General network error. Check your network documentation.

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:


[SqlException: General network error. Check your network documentation.]
System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction) +474
System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction) +372
System.Data.SqlClient.SqlConnection.Open() +384
System.Data.Common.DbDataAdapter.QuietOpen(IDbConnection connection, ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(Object data, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable) +36
FuseTalk.database.RunQuery(String QueryName) +152
FuseTalk.API.InitialiseKeys() +156
FuseTalk.API.DoNew(String c) +45




--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
 
And that'd be the .NET version of the JRun errors. I have also seen this a few times.

<-- Java developer leaps for joy inside, gratified that .NET isn't necessarily better than java 😀
 
Originally posted by: kamper
And that'd be the .NET version of the JRun errors. I have also seen this a few times.

<-- Java developer leaps for joy inside, gratified that .NET isn't necessarily better than java 😀

Wrong, better read up on your errors.....

That's a SQL error and has absolutely nothing to do with .NET. It's database related. So, I guess you can stop jumping for joy now 🙂.

L8r.
 
I've never used .NET or JRun so I'm no expert in tracing errors from minimal error reports. That stack trace and the error message suggests to me that the error was that the driver couldn't get a connection to the database because of a network problem (or was it just too much traffic?). What was the JRun error? I thought it was the same deal. Was it java's fault?
 
The JRUN error, was the jrun connector that connects to IIS was going down. That is the core of JRUN/ColdFusion, the db network issues could happen to any app language.

Cheers.
 
Yep. I'm getting this too:

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

Object reference not set to an instance of an object.
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.NullReferenceException: Object reference not set to an instance of an object.

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:


[NullReferenceException: Object reference not set to an instance of an object.]
FuseTalk.API.GetSettingFromStruct(Settings[] Sets, String SettingName) +37
FuseTalk.API.GetComSetting(String SettingName) +34
FuseTalkNet.Forum.SetUserDefault() +591
FuseTalkNet.Forum.Initialize() +431
FuseTalkNet.Forum.Page_Load(Object sender, EventArgs e) +1231
System.EventHandler.Invoke(Object sender, EventArgs e) +0
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
 
Originally posted by: Jason Clark
The JRUN error, was the jrun connector that connects to IIS was going down. That is the core of JRUN/ColdFusion, the db network issues could happen to any app language.

Cheers.

Ah, thanks for the explanation.
 
Back
Top