I'm having serious problems trying to create a blob file in an existing storage account/container.
To even narrow down the problem I forced the content of the blob to a fixed string (I have another sample where it works with a fixed string). I can't see what could be wrong with my connection since the access policy is "Container" (open doors for everyone and everything) and i'm pretty sure I'm using the right key (already tried both keys azure provides).
I even tested using a c# console application and the Microsoft Azure Storage Explorer and both worked.
Simple schematic of my logic app
NOTE: the steps with are the ones that get run, others are skipped
答案 0 :(得分:3)
blob名称不能包含'<' chars请使用不带特殊字符(大于,小于)的文件名。
你可以使用这个
@substring('blobname with<>',1,sub(length('blobname with<>'),2))
或者只是使用guid函数获取唯一的文件名,内容可以是AS2MessageId
@guid()
来自LogicApp WDL的功能来实现这一目标。