我是Azure存储的新手,在本地创建和使用队列时遇到了问题。 因此,首先,我无法使Azure存储模拟器运行,因此我将配置更改为如下所示:
<StorageEmulatorConfig>
<services>
<service name="Blob" url="http://localhost:10000/"/>
<service name="Queue" url="http://localhost:10001/"/>
<service name="Table" url="http://localhost:10002/"/>
</services>
(最初它的IP为127.0.0.1,而不是localhost)。所做的更改使Storage Emulator可以正确运行,但是当尝试释放队列(顺便说一下,还有Blob容器和表)时,我仍然只能得到一个不断加载的图标。
到目前为止,我已经尝试过:
你们有没有遇到过这种类型的错误,或者不知道我该如何解决?
编辑:我还从计算机中删除了.IdentityService文件夹。没有运气。