Re: Web app large uploads and downloads

2024-01-03 Thread Craig vN via ozdotnet
I haven't tried with hundreds of files uploaded in one batch, would need to start accounting for retry if they fail. But a few files of 100mb is no problem. On Wed, Jan 3, 2024 at 11:14 AM Greg Keogh via ozdotnet < ozdotnet@ozdotnet.com> wrote: > Folks (welcome to the distant future of 2024) > >

Re: Web app large uploads and downloads

2024-01-02 Thread Greg Keogh via ozdotnet
IAhZ1JbigKMrMPRCjs6AqW7h3=NsAibgiqfCxsyc8m2DBKogKQcs3OqE3mkyCjmpoYxTk=> > > > > *From:* DotNet Dude via ozdotnet > *Sent:* Wednesday, January 3, 2024 4:17 PM > *To:* ozDotNet > *Cc:* DotNet Dude > *Subject:* Re: Web app large uploads and downloads > > > >

Re: Web app large uploads and downloads

2024-01-02 Thread mike smith via ozdotnet
It's not a direct answer, but I'd feel happier uploading to OneDrive and passing the server a link to that. Mike On Sat, 30 Dec 2023, 08:29 Greg Keogh via ozdotnet, wrote: > Folks (anyone working?) > > I've been asked to add a feature to a Blazor Webassembly app to allow > uploads and

RE: Web app large uploads and downloads

2024-01-02 Thread Dr Greg Low via ozdotnet
pgnVfiiMM=2rgtwrXggQFZiZbisdwDooYFalucb-vLhjG0McaanBZKn0UVuognuHqfHnjp2AVc=I23jyX4AKIv9q2x7A3CQAer9PGCjq8R6DwW7BE1IAhZ1JbigKMrMPRCjs6AqW7h3=NsAibgiqfCxsyc8m2DBKogKQcs3OqE3mkyCjmpoYxTk=> From: DotNet Dude via ozdotnet Sent: Wednesday, January 3, 2024 4:17 PM To: ozDotNet Cc: DotNet Dude Subject: Re: W

Re: Web app large uploads and downloads

2024-01-02 Thread DotNet Dude via ozdotnet
Yep we usually do this sort of thing with a batch process, particularly if there are large files. I don’t see any web app being used just to upload a bunch of files. For fun try asking ChatGPT or one of the others to see where they go. On Wed, 3 Jan 2024 at 11:13, Greg Keogh via ozdotnet wrote:

Re: Web app large uploads and downloads

2024-01-02 Thread Greg Keogh via ozdotnet
Folks (welcome to the distant future of 2024) I'm pretty sure that there is no sensible way to provide a bulk Azure Blob upload facility in a web hosted app (Wasm, JS or whatever). There could be thousands of files with a total size up to hundreds of MB. Managers are currently using a WPF program

Re: Web app large uploads and downloads

2023-12-31 Thread Tom P via ozdotnet
I assume you have a client Blazor wasm app that uploads the file to a server app (ie web api) which would then upload to azure or wherever. Is this what you are asking? Thanks Tom On Sun, 31 Dec 2023 at 10:19, Craig vN via ozdotnet wrote: > I don't know Blazor, but there are a ton of pure Js

Re: Web app large uploads and downloads

2023-12-30 Thread Craig vN via ozdotnet
I don't know Blazor, but there are a ton of pure Js file uploaders. One I like is https://www.dropzone.dev/ which should be able to be configured to upload directly to blog storage, ie not have to send the files to your webserver first

Re: Web app large uploads and downloads

2023-12-29 Thread kirsten greed via ozdotnet
2DBKogKQcs3OqE3mkyCjmpoYxTk=> > > > > *From:* Greg Keogh via ozdotnet > *Sent:* Saturday, December 30, 2023 8:58 AM > *To:* ozDotNet > *Cc:* Greg Keogh > *Subject:* Web app large uploads and downloads > > > > Folks (anyone working?) > > > > I'v

RE: Web app large uploads and downloads

2023-12-29 Thread Dr Greg Low via ozdotnet
js6AqW7h3=NsAibgiqfCxsyc8m2DBKogKQcs3OqE3mkyCjmpoYxTk=> From: Greg Keogh via ozdotnet Sent: Saturday, December 30, 2023 8:58 AM To: ozDotNet Cc: Greg Keogh Subject: Web app large uploads and downloads Folks (anyone working?) I've been asked to add a feature to a Blazor Webassembly app to allow uploads a

Web app large uploads and downloads

2023-12-29 Thread Greg Keogh via ozdotnet
Folks (anyone working?) I've been asked to add a feature to a Blazor Webassembly app to allow uploads and downloads of possibly large numbers of files between the local file system and Blob storage. I'm not sure how to implement this feature in a browser hosted app. I wrote a WPF tool for