Internal Connection fatal error

G

Guest

Hello,

We got this error (Internal connection fatal error) from our application and
at the same we got "server application unavailable" error on the browser. I
looked at the line that was provided by the stack trace and it appeared that
it happened when it tries to connect to the database to fill dataset. What
might cause the database connection to fail or cause this error?

System.Data

Internal connection fatal error.

ExecuteReader

at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior
cmdBehavior, RunBehavior runBehavior, Boolean returnStream)
at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior)
at
System.Data.SqlClient.SqlCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
at System.Data.Common.DbDataAdapter.FillFromCommand(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
at employee.PackingList.initData(Int32 StoreID, ArrayList PackingListIDs)
in J:\WMS_TEST\WMSDev\SSL\Employee\PackingList.aspx.vb:line 327
at employee.PackingList.DisplayPackingLists(Int32 StoreID, ArrayList
PackingListIDs) in J:\WMS_TEST\WMSDev\SSL\Employee\PackingList.aspx.vb:line
111
at employee.PackingList.Page_Load(Object sender, EventArgs e) in
J:\WMS_TEST\WMSDev\SSL\Employee\PackingList.aspx.vb:line 82
at System.Web.UI.Control.OnLoad(EventArgs e)
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Page.ProcessRequestMain()
 
A

AMDRIT

Is seems as though you are not able to connect to the SQL server. Are you
using SQL security or NTLM in your connection string? Is the web server
behind a filewall on a DMZ? Has this ever worked?

I am unsure of what the code looks like in your InitData method, but I
wonder if you are closing your connection after passing back the reader
object. If you close the connection prior to reading the data, you might
recieve this internal error as well.

HTH
 
G

Guest

Yes, it did work and still working after getting this error, it doesn't
happen on regular basis. It appears to me that it opened the database
connection but it could not execute the datareader. I am not sure about the
filewall, I have to ask the network admin.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top