Time to work on your ABS, Azure Blob Storage that is!

Поделиться
HTML-код
  • Опубликовано: 9 ноя 2024
  • НаукаНаука

Комментарии • 25

  • @susanboeve391
    @susanboeve391 2 года назад

    Thanks so much Erik! As usual the perfect solution at the perfect time! This will replace my previous blob storage code that used azure functions. It's so much easier and less code too!

  • @ant1d0te
    @ant1d0te 2 года назад

    exactly what I need nowadays to simplify my old blob storage module that used headers preparing like 'x-ms-blob-content-disposition', etc :D
    Thank you, Erik!

  • @ankurwani9098
    @ankurwani9098 10 месяцев назад

    Hello @Erik, Thanks for this ABS stuff which is very helpfull..
    Can you make this video little bit further for SFTP. Read and upload file on SFTP folder in BC saas. and SFTP has been setup from azure blob storage.

    • @Hougaard
      @Hougaard  9 месяцев назад

      SFTP content is coming, but not with ABS :)

  • @niccoweb9628
    @niccoweb9628 Год назад

    Hi Erik, as always excellent content :) , i´m trying to filter "ABS Container Content" using "ABS Optional Parameters"´s function SourceIfModifiedSince but it does not filter, also i´m using prefix function and that function does work, if am not wrong SourceIfModifiedSince filter "Last Modified" field in "ABS Container Content", right?

  • @affilimusic320
    @affilimusic320 Год назад

    Hey Erik,
    I'm doing everything like you did. When I am in the Container where i want to implement the feature, the connection does not work and i cant create containers nor upload files. When I try it in an "naked", new container, it works like a charm. Maybe you have an Idea what I am doing wrong. Keep up with your content!

    • @Hougaard
      @Hougaard  Год назад

      No idea... permissions on the Azure side?

  • @ankurwani9098
    @ankurwani9098 9 месяцев назад

    Hey @Erik,
    With ABS functions, i want to read files from ABS but using XMLport object. Can we use XMLport object to read or write files to azure blob storage?

    • @Hougaard
      @Hougaard  9 месяцев назад

      No, then you gonna insert temp blobs in the middle.

  • @nmichalo
    @nmichalo 9 месяцев назад

    Hi Erik, thank you for the valuable information. My problem is that everything is working perferctly in a Sandbox environment, but when upload the app in Production environment then it refuses to work, without any error. Permissonset for the codeunit has been set properly. Tried with 2 different azure storage accounts in sandbox eveything works, in Production doesn't. Do you have any idea where/what to check?

    • @Hougaard
      @Hougaard  8 месяцев назад

      is "Allow Http Request" turned on for System App and your app in production (Extension Management) ?

  •  2 года назад

    Great Erik
    A question. Are these Azure Blob Storage free with your Azure Account, or are they as Azure Functions, that you have to pay for using them.
    Thank yu ever so much

    • @Hougaard
      @Hougaard  2 года назад +1

      No, they're not free, but cheap.

  • @wues001
    @wues001 2 года назад

    Hi Erik! I implemented ABS interface in my App, but I got suggestion from our IT department, that from security point of view, is better to use Shared access signature autentication. I found that there is method CreateAccountSAS in Codeunit Storage Service Authorization. Did you try this option? To be honest I have failed on this task :)

    • @Hougaard
      @Hougaard  2 года назад

      Haven't tried it, but that should work just fine also.

    • @frantic5679
      @frantic5679 Год назад

      I'm going in circles trying to do exactly that. Hoping it's one of the myriad settings on the ABS end.

  • @TayfurDuman
    @TayfurDuman Год назад

    Thanks so much but when i test this code, it is not working for me. Do you have any idea what the problem is ? Here is the error I get: 403 Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.

    • @Hougaard
      @Hougaard  Год назад

      403 is an authentication issue... are your credentials correct?

    • @TayfurDuman
      @TayfurDuman Год назад

      @@Hougaard Credentials are correct because in Azure Blob Storage application it's work with the sames credentials

    • @diegoarmandoprachadona
      @diegoarmandoprachadona Год назад

      @@TayfurDuman I have the same error message. Have you found a solution ? I have try to generate new access keys but no effect.

  • @avinashb9148
    @avinashb9148 2 года назад

    Hello Erik,
    Thanks for the video. It helped us to achieve what we were looking for.
    Now I have concern in reading the data when there is a folder structure inside the containers. For Ex., in your video "youtube" is the container. And if we create a folder by name "TestFolder" and want to get the list of all the content of the folder. How it can be done? We tried by initializing container as "youtube/TestFolder" but we are not getting any response. Please help.
    BlobClient.Initialize(storageAccount, 'youtube/TestFolder', Authorization);
    Response below:
    Response Code: 400 The requested URI does not represent any resource on the server.
    Thanks in advance.

    • @Hougaard
      @Hougaard  2 года назад

      The folder is not part of the container name..

    • @avinashb9148
      @avinashb9148 2 года назад

      @@Hougaard Thanks for the reply Erik. Then is there any way to achieve this?

    • @Hougaard
      @Hougaard  2 года назад +1

      Check with twitter.com/SimonOfHH I believe he created the ABS stuff to begin with.