Ticket Q494002
Visible to All Users

Enabling async tasks in XAF Web page

created 12 years ago

I need to be able to run the following code in my XAF controller:

private async void simpleActionLoadData_Execute(object sender, SimpleActionExecuteEventArgs e) {
var loadTask = Task<bool>.Factory.StartNew(() => LoadData()); await loadTask; //var connectTask = Task<bool>.Factory.StartNew(() => ConnectDevicesToApplications()); //await connectTask; View.Refresh(); }

private bool LoadData() { bool status=true;
SecuritySystemUser user; user = (SecuritySystemUser)SecuritySystem.CurrentUser;
string timeStamp = string.Format("{0:yyyy-MM-dd_hh-mm-ss-tt}", DateTime.Now);
string fn = string.Format(user.UserName + "-" + timeStamp + "-" + dl.InputFile.FileName); string targetFilePath = @"C:\AccountView\DataInput" + fn; dl.ImportFileName = targetFilePath; FileStream myStream = new FileStream(targetFilePath, FileMode.OpenOrCreate);
dl.InputFile.SaveToStream(myStream);
myStream.Close();

ExcelEngine excelEngine = new ExcelEngine(); IApplication application = excelEngine.Excel; IWorkbook workbook = excelEngine.Excel.Workbooks.Open(dl.ImportFileName, ExcelOpenType.Automatic);
IWorksheet appsheet = workbook.Worksheets["Application"];
IWorksheet serversheet = workbook.Worksheets["Device"];
IWorksheet workloadsheet = workbook.Worksheets["Workload"];
IWorksheet storagesheet = workbook.Worksheets["Storage"];
IWorksheet networksheet = workbook.Worksheets["Network"];
IWorksheet softwaresheet = workbook.Worksheets["Software"];
IWorksheet devicesoftwaresheet = workbook.Worksheets["DeviceSoftware"];
DataTable applicationsTable; applicationsTable = appsheet.ExportDataTable(appsheet.UsedRange, ExcelExportDataTableOptions.ColumnNames);
var appsrowsArray = new DataRow[applicationsTable.Rows.Count]; applicationsTable.Rows.CopyTo(appsrowsArray, 0); var rowsList = appsrowsArray.ToList();
foreach (var record in rowsList) { AccountView2.Module.BusinessObjects.Application app = new Module.BusinessObjects.Application(((XPObjectSpace)ObjectSpace).Session);
app.AppId = Convert.ToInt32(record[0]); app.AppName = record[1].ToString();
}
ObjectSpace.CommitChanges();

return status; }

When I try this, I get the following error:

Asynchronous operations are not allowed in this context. Page starting an asynchronous operation has to have the Async attribute set to true and an asynchronous operation can only be started on a page prior to PreRenderComplete event.

How do I fix this?

-Eugene

Answers approved by DevExpress Support

created 12 years ago (modified 9 years ago)

Hello Eugene,
You cannot execute UI-specific functions in the background thread. This is a standard ASP.NET error or platform limitation unrelated to DevExpress, because XAF application is a standard ASP.NET Web Forms application.
To learn more about it as well as about possible solutions, please check out MSDN or look for the error message on the Web.
This may be a good start:
https://www.google.com/search?q=Asynchronous+operations+are+not+allowed+in+this+context.+Page+starting+an+asynchronous+operation
Just in case you need it, XAF web page templates (*.ASPX) are located in your web site directory. See also eXpressApp Framework > Task-Based Help > How to: Customize an ASP.NET Template

    Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

    Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.