-
I've been doing a little digging around on this issue, and the issue is somewhat broader than what you are seeing. Not only does the current implementation complicate using background threads, but it causes issues in a mixed-mode app where you have both web UI elements and smart client elements ...
-
We are experimenting CSLA 4.0 RC0. In our web application (ASP.Net 4.0),on click of a button we create a Thread to do some lengthy calculations in the background . In the thread we found that all DataPortal operations are failing because GetPrincipal() is trying to retreive HttpContext.Current.User instead...
-
Well, the short answer is that you can't have events flow through the dataportal like that. The long answer is, to get what you want, you'd need to record progress somewhere (likely in the database), and have a seperate background task which periodically fires another command object who's...