Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Sorry, this exception was easily reproducable and we already have a fix. I will send you a PM with a link to download the Business assembly. This is the only thing that changed.
|
|
|
ChanKK
|
|
Group: Forum Members
Posts: 190,
Visits: 1.3K
|
Hi,
I have tested with the fix you sent, but when refresh the page, it hit error as below, which didn't happen before this fix.
System.NullReferenceException was unhandled by user code
Message="Object reference not set to an instance of an object."
Source="MicroFour StrataFrame Business"
StackTrace:
at MicroFour.StrataFrame.Business.BusinessBindingSource.BusinessObject_CurrentDataTableRefilled()
at MicroFour.StrataFrame.Business.BusinessLayer.raise_CurrentDataTableRefilled()
at MicroFour.StrataFrame.Business.BusinessLayer.OnCurrentDataTableRefilled()
at MicroFour.StrataFrame.Business.BusinessLayer.ChangeCurrentDataTable(DataTable NewTable, Boolean AcceptChanges, Boolean IsSharedTable)
at MicroFour.StrataFrame.Business.BusinessLayer.FillDataTable(String SelectStatement)
at WebApplication8._Default.Page_Load(Object sender, EventArgs e) in C:\Documents and Settings\KKCHAN\My Documents\Visual Studio 2008\Projects\WebApplication8\Default.aspx.cs:line 20
at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e)
at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
at System.Web.UI.Control.OnLoad(EventArgs e)
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
InnerException:
Shall you please test using the attachment I posted in previous post and DevExpress 8.2 to ensure the issue could be fixed? It has taken too long time for this, and also because of our timezone, we might not response immediately cause some unnecessary delay.
Thank you
|
|
|
Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
That particular method doesn't play into this. However, we have made a change to the enumerator which could have a potential leak in this scenario. We created a situation with an enumerator that would force a leak and with the change, it resolved the issue. So I think that this will resolve your problem altogether. I will send you a PM with the link for the download.
|
|
|
ChanKK
|
|
Group: Forum Members
Posts: 190,
Visits: 1.3K
|
Trent L. Taylor (03/18/2009)
Finally, the WBBS is entirely different than the WinForms BBS. The Web BBS does not create a unique BO instance for each row. There is only ever a single BO instance ever used or created. So the same issue that existed within the WinForms version is not possible on the web. After looking over the code, we cannot even see where a potential memory leak may occur.
Hi, I used to debug my web app, and found that the code below is called for every row populated by ASPxGridView. If referring to the code below, it create new instance BO for each call and stored it into _BusinessObjectList. Therefore, I feel a bit curious about what you mentioned as above. Please advice. Thank you Private Function CreateShareAndAddBusinessObject(ByVal index As Integer) As BusinessLayer
'-- Create a new object
Dim loReturn As BusinessLayer = CType(Activator.CreateInstance(Me._BusinessObject.GetType()), BusinessLayer)
'-- Share the table
Me._BusinessObject.ShareCurrentDataTable(loReturn)
'-- Set the parent business object of the instance object
loReturn.ParentBusinessObject = _BusinessObject.ParentBusinessObject
'-- Add the object to the list
Me._BusinessObjectList.Add(index, loReturn)
'-- Return the new object
Return loReturn
End Function
|
|
|
ChanKK
|
|
Group: Forum Members
Posts: 190,
Visits: 1.3K
|
Hi,
Shall you please test using DevExpress 8.2?
I will ask DevEx team to test as well. However, it might takes another day for response which I am not afford to wait anymore.
Thank you for help.
|
|
|
Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Sorry that this has taken so long, but in this instance, there is no memory leak and nothing wrong within the SF code or WBBS class. We do not have DevExpress 8.2 downloaded and tested this using version 8.1.1.0. When bringing in all 20,000 records, which is unrealistic, it was very slow but there was not a memory leak. DevExpress is re-evaluating all rows with each navigation forward. We reduced the query to the top 200 records for a control to look for any type of memory leak, and we actually noticed the memory being cleaned up and getting smaller. As expected, the memory grew the first few page navigations, but after about the 5th navigation, the memory consumption reduced and began to keep a more level memory base. I believe that your issue is one of two things: - A possible issue with the DevExpress 8.2 grid not cleaning up after itself.
- Your application is loading too much data and not cleaning up BOs which could cause a memory bloat before there is ever a chance to clean up.
Finally, the WBBS is entirely different than the WinForms BBS. The Web BBS does not create a unique BO instance for each row. There is only ever a single BO instance ever used or created. So the same issue that existed within the WinForms version is not possible on the web. After looking over the code, we cannot even see where a potential memory leak may occur. Hope this helps give some direction. Thanks.
|
|
|
ChanKK
|
|
Group: Forum Members
Posts: 190,
Visits: 1.3K
|
Hi,
I have attached the missing project.
Beside, I spent some time to trace the root cause of this issue and found that, BusinessBindingSource.Dispose() is not called at all. Do you think it is the cause?
Thank you
|
|
|
Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Just FYI, your sample is missing the BusinessobjectLibrary6 project. So we are having to recreate this on our own. If you can provide that project as part of your sample it may speed things up.
|
|
|
Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
We are looking at this right now and trying to reproduce. Should know something later today. If not, I will let you know.
|
|
|
ChanKK
|
|
Group: Forum Members
Posts: 190,
Visits: 1.3K
|
Hi,
May I know any update? Do you think it could be solved in this week?
Sorry for keep approaching you, as we need to deliver in this end of month, without this solved we are not going to release; meanwhile we need to inform customer earlier instead of the of delivery.
Thank you for understanding.
|
|
|