18
Views
5
Comments
[Azure Blob Storage] 60MB以上のファイルをアップロードするときに413ステータスコードエラー: Request Entity Too Largeが発生する
azure-blob-storage
Web icon
Forge component by Barduino
Application Type
Reactive
Service Studio Version
11.54.17 (Build 62610)


OutSystemsの水谷様。

100MBのファイルをアップロード試したところ以下のエラーになりました。


サーバーアクション側の中にはForge :Azure Blob Storageを使用して添付したファイルをBlobに アップロードする形です。

よろしくお願いします。


can you please post your question in english

hello.
I know that the default maximum file size for file upload is 250MB.
However, in my application, a 413 error occurs when uploading a file larger than 60MB.
I am saving the uploaded file to blob with file upload. 

Hi , can you check this value SingleBlobUploadThresholdInBytes in your extention .

you can update it like below value

 BlobRequestOptions options = new BlobRequestOptions();        options.SingleBlobUploadThresholdInBytes = 67108860;

https://learn.microsoft.com/en-us/dotnet/api/microsoft.windowsazure.storage.blob.blobrequestoptions.singleblobuploadthresholdinbytes?view=azure-dotnet&redirectedfrom=MSDN#Microsoft_WindowsAzure_Storage_Blob_BlobRequestOptions_SingleBlobUploadThresholdInBytes

Hello thank you for your reply.

How can I check SingleBlobUploadThresholdInBytes in outsystems?
The blob is using the one in the picture. 


no you should need to customize this plugin .
please open it in integration studio . then update the code please

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.