私は RavenDB を学び始めています。サーバー マシンにサーバー バージョンをインストールし、単純なコンソール アプリケーションにクライアント dll を追加しました。アプリケーションを実行しようとすると、「要求が中止されました: 要求が取り消されました」という WebException が発生します。
コードは次のとおりです。
public class Article : AbstractIndexCreationTask<Article>
{
public string Id { get; set; }
public string Text { get; set; }
public string Title { get; set; }
public Article()
{
Map = articles => from article in articles select new { article.Text };
}
}
static void Main(string[] args)
{
var ravenIntroArticle = new Article()
{
Text = "RavenDB fits into a movement that is called ...",
Title = "RavenDB Introduction",
};
var csharpUsingArticle = new Article()
{
Text = "The full value of the C# using statement ...",
Title = "Your Friend the C# Using Statement",
};
var nutsAndProteinArticle = new Article()
{
Text = "Nuts are a great source of protein ...",
Title = "Nuts and Protein",
};
using (IDocumentStore documentStore = new DocumentStore() { Url = "http://rtest01:8081" })
{
documentStore.Initialize();
using (IDocumentSession session = documentStore.OpenSession())
{
session.Store(ravenIntroArticle); // the exception happens here
session.Store(csharpUsingArticle);
session.Store(nutsAndProteinArticle);
session.SaveChanges();
}
}
ローカル サーバー " http://localhost:8080 "で実行しようとすると、次のようになります。
私が欠けているものを教えてください。
ありがとう。