gpt4 book ai didi

http-status-code-404 - Windows Azure 远程服务器返回错误 : (404) Not Found

转载 作者:行者123 更新时间:2023-12-04 08:22:04 26 4
gpt4 key购买 nike

我正在关注 this教程是关于Table Storage Service .我正在使用本教程的模拟器版本,您可以在“使用云服务时配置连接字符串”段落的第 5 点找到该版本。

这是我粘贴在“关于”中的代码 ActionResult :

public ActionResult About()
{

// Retrieve the storage account from the connection string.
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
CloudConfigurationManager.GetSetting("StorageConnectionString"));

// Create the table client.
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

// Create the CloudTable object that represents the "people" table.
CloudTable table = tableClient.GetTableReference("people");

// Create a new customer entity.
CustomerEntity customer1 = new CustomerEntity("Harp", "Walter");
customer1.Email = "Walter@contoso.com";
customer1.PhoneNumber = "425-555-0101";

// Create the TableOperation that inserts the customer entity.
TableOperation insertOperation = TableOperation.Insert(customer1);

// Execute the insert operation.
table.Execute(insertOperation);

return View();
}

在此行 table.Execute(insertOperation);我收到以下错误消息:

StorageException was unhandled by user code The remote server returned an error: (404) Not Found.



我使用的项目模板是“Windows Azure 云服务”。在弹出的下一个窗口中,我只添加了“ASP.NET MVC 4 Web 角色”。

任何人都知道是什么导致了这个错误?

最佳答案

存储区中是否存在人员表? (您可以从 Azure 管理门户查看)

关于http-status-code-404 - Windows Azure 远程服务器返回错误 : (404) Not Found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18204144/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com