T
Turbo
Greetings to all
I have a set of web services that create reports upon request. These
reports can take the form of XML Spreadsheets or dynamically generated .pdf
files. I call the create report methods async to give the user the
opportunity to cancel a long running report. However, any create report
method that opens a stream reader (in order to import some XML for a
spreadsheet) or writer (in order to generate the XML spreadsheet file) cannot
be run async. They run fine synchronously, but for some reason, opening an
IO.Stream causes a "there was an error during async processing" error. The
interesting thing is, this error is given in a message box, not a typical
ASP.NET error page. Any thoughts?
I have a set of web services that create reports upon request. These
reports can take the form of XML Spreadsheets or dynamically generated .pdf
files. I call the create report methods async to give the user the
opportunity to cancel a long running report. However, any create report
method that opens a stream reader (in order to import some XML for a
spreadsheet) or writer (in order to generate the XML spreadsheet file) cannot
be run async. They run fine synchronously, but for some reason, opening an
IO.Stream causes a "there was an error during async processing" error. The
interesting thing is, this error is given in a message box, not a typical
ASP.NET error page. Any thoughts?