I'm new to Azure Storage and I've been having a problem creating and working with queues locally. So, firstly I wasn't able to make the Azure Storage Emulator run, so I've changed the config to look like this:
<StorageEmulatorConfig>
<services>
<service name="Blob" url="http://localhost:10000/"/>
<service name="Queue" url="http://localhost:10001/"/>
<service name="Table" url="http://localhost:10002/"/>
</services>
(Originally it had a 127.0.0.1 IP instead of localhost). That change made the Storage Emulator run correctly, but I still only get an endless loading icon when trying to ellapse the Queues (and Blob containers and Tables too, by the way).
So far I've tried:
- Creating a new azure storage connection with the same connection string, but replacing the default IP with localhost. 2.Changing the number of the ports in the config file
- Restarting everything
- Reinstalling Azure Storage Explorer and Emulator
Have you guys ever encountered this type of error, or have any idea what could I try to fix it?
Edit: I have also deleted the .IdentityService folder from my machine. No luck.