Activities of "geoffro"

  • ABP Framework version: v4.2.0
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:

Hi, I have been trying to connect ot our azure blog storage but keep getting Could not found the requested BLOB 'xxxx.json' in the container 'xxx-xxxx'!.

I have followed both resources below with no success

https://docs.abp.io/en/abp/latest/Blob-Storing-Azure https://community.abp.io/articles/uploaddownload-files-to-azure-storage-with-the-abp-framework-sr7t3w4p

What am I missing? I am using the Secondary Connection String key for the Azure storage account which has the format below:

"DefaultEndpointsProtocol=https;AccountName=xxx;AccountKey=xxx;BlobEndpoint=xxx;QueueEndpoint=xxx/;TableEndpoint=xxx;FileEndpoint=xxx;"

I have also done the below

  • Installed 'Volo.Abp.BlobStoring.Azure' package to the Domain project
  • set the Blob Container to have public access
  • I can browse ok to the resource through the browser.
  • Can download the resource ok from Azure storage explorer
  • I Have setup code below within the Domain module:
Configure<AbpBlobStoringOptions>(options =>
            {
                options.Containers.ConfigureDefault(container =>
                {
                    container.UseAzure(azure =>
                    {
                        azure.ConnectionString = "xxx";
                        azure.ContainerName = "xxx-xxx";
                        azure.CreateContainerIfNotExists = false;
                    });
                });
            });

Thanks @alper that worked

Hi @liangshiwei we are on ABP Framework version: v4.0.2 Commerical and still experience all POST API calls returning a 400 Bad Request when calling via swagger? logs also reveal "The required antiforgery cookie ".AspNetCore.Antiforgery.ddttNScLARY" is not present."

What is it we need to do?

Showing 1 to 3 of 3 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11