问题标签 [azure-storage-emulator]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
azure - 无法从 Java 进程向 Azure 模拟器添加消息
我有一个需要通过存储队列与 Azure C# 应用程序通信的 java 进程。
在Azure Web中运行时,java 进程能够读取消息并将消息写入存储队列。
但是,当我在本地运行 java 进程并尝试与 Azure 的模拟器通信时,我可以从队列中读取消息,但无法写入队列。
下面是我使用的代码,它挂在最后一行,然后在几分钟后超时。
任何建议将不胜感激。
azure - Azure 存储模拟器无法连接到 LocalDB
我的 Azure 存储模拟器有问题,它拒绝连接到 LocalDb。在我使用命名管道创建到它的 ODBC 连接之前,它曾经工作得很好。发生了什么:
- 我需要从 Mathematica 访问我的数据库中的数据,所以我生成了一个 ODBC 连接。
- ODBC 无法连接到 (localdb)\v11.0,所以我改用了命名管道。
从那时起,Azure 就停止了工作。我升级到SDK2.0,但没有帮助。我试图运行 DSInit.exe,但我得到:
你知道我该怎么做才能让它再次工作吗?
azure - Windows Azure 存储模拟器 - CORS 支持
我在本地机器上运行了存储模拟器 - 127.0.0.1:10000。我有一个在 localhost 上运行的网站。但是,当我尝试从网站向模拟器执行 XMLHttpRequest 时,出现以下错误:
如果我使用 --disable-web-security 选项启动 Chrome,它工作正常。
现在,我读到 Azure 支持 CORS,并且有一个选项可以打开它。但是,我一生都无法弄清楚存储模拟器中的选项在哪里。
任何帮助,将不胜感激!
azure - Getting a StorageException (403: Forbidden) on CloudStorageContainer GetContainerReference method
I'm running the following code in a unit test against Azure's Storage Emulator and receiving a StorageException when I attempt to create the container:
The Storage Emulator is running and the Blob service is supposedly running at:
The exception is:
Microsoft.WindowsAzure.Storage.StorageException : The remote server returned an error: (403) Forbidden.
Any thoughts? Is this possible from a unit test?
azure - Calling RestAPI against storage emulator from ConsoleApp, Request not showing up in fiddler
As a sandbox application i wrote a console app which will call RestApi for storage services.The app is running as expected and i can see calls made by application in Fiddler.I wrote this sandbox so that i could specifically use Rest API calls.
The point i am stuck is how to see REST calls made by my application against storage emulator in Fiddler. I know if i am using storage client library (azure SDK) then could have used following
I tried setting the Proxy on the HttpWebRequest
but that is also not helping me.Following i the excerpt from my code.
or
or
also tried setting up this in app.config like
but none seems to be working for me. Again just to be clear about my question, app is running fine for me both for storage emulator and My subscription. Only issue is that i cant see call in Fiddler if executed against storage emulator.
Thanks.
c# - 如何将 HDInsight 的输入/输出路径设置为指向本地存储模拟器中的 Azure Storage Vault (ASV)?
我正在尝试为 hdinsight 创建一个简单的 map/reducer 作业,但我无法通过ASV://将本地 hdinsight hadoop 集群中的作业连接到本地 azure 存储模拟器
示例代码如下:
或者
其中testcontainer是本地模拟器的 blob 存储中的现有容器。运行此代码时,我得到一个StreamingException “进程失败('流式作业失败!')”
并在控制台输出中看到以下错误:
有什么提示吗?
azure - Azure CloudBlobClient.ListContainers() 为 DevelopmentStorage 返回 400
我只是使用开发存储帐户对 CloudBlobStorage 进行了一些实验,虽然 VS2013 Server Explorer 可以很好地枚举 Blob 容器,但我的代码返回 400 错误。
不知道我在这里做错了什么,我已经搜索了高低。
注意:如果我调用GetContainerReference()
一个已知存在的容器,它会正确返回。
azure - Azure 模拟器存储安装错误
我已经安装了 Windows Azure SDK v2.2,一切都很好。
但是当我尝试启动 Windows Azure Emulator v.2.2 时,它要求我浏览emulator.6492.fre.rd_dk_stable_v2r2.130926-0939-x64.msi
包。
我的机器上没有它,我不知道从哪里得到它。
谁也遇到过这个问题?
c# - 如何从代码启动 Windows Azure Storage Emulator V3.0
由于我安装了新的 Windows Azure SDK 2.3,我收到了来自 csrun 的警告:
“通过 CSRun 进行 DevStore 交互已被弃用。请改用 WAStorageEmulator.exe。”
所以有两个问题:1)如何从代码中正确启动新的存储模拟器?2)如何从代码中确定存储模拟器是否已经在运行?
azure - 您可以为计算和存储模拟器设置根存储路径吗?
有人知道如何为计算和存储模拟器指定根路径吗?
这是我的问题:我的笔记本电脑有一个 256GB SSD (C:) 作为引导盘和一个用于数据的辅助 1TD HDD (D:)。默认情况下,模拟器将其数据存储在我的 AppData 文件夹中,该文件夹位于 C: 驱动器上。这会占用我启动驱动器上的宝贵空间,所以我想将它的根路径移动到 D: 驱动器上的某个位置。
有人知道这是硬连接到模拟器还是某处有设置?