I'm working on a web app that passes data to a custom client app.
I'm getting exceptions when the data is over some "small" size. Since the end users will likely be using increasingly larger data sizes, I switched the return from the WCF function to be the ID of the data set.
Next, I converted the client to use the ID to retrieve the data from some simple ASPX page. This works fine, but means an inconsistency in the interface.
Edit: I'm not sure how I missed returning a Stream, but I did. Does anyone have problems with Streams over WCF?
Other than a dropped connection, are there any issues in reading files via HTTP streams from an ASPX page?
I would presume that I'm missing a capability of WCF (like oob data). But then, the C#/.NET on-line help is either pretty poor or else seriously broken as installed on my machine.
Thanks.
[Edit] By the way, in my case the "large amount of data" is user-input driven, but will need to be at least 20MiB.