51

我在我的应用程序中使用了 RavenDB-Embedded 2.0.2230,并在不同的程序集中与 ASP .Net Web API 交互。

当我UseEmbeddedHttpServer = true在文档存储上设置时,第一次向 RavenDB 发送请求时,它会正确执行,但是当我第二次尝试时,我的应用程序会显示 Raven Studio。

当我删除UseEmbeddedServer设置时,我的应用程序运行没有任何问题。

我的 RavenDB 在数据层配置了以下代码:

this.documentStore = new EmbeddableDocumentStore
{
    ConnectionStringName = "RavenDB",
    UseEmbeddedHttpServer = true
}.Initialize();

Web.config在服务层中实现这些设置:

<connectionStrings>
    <add name="RavenDB" connectionString="DataDir=~\App_Data\RavenDatabase" />
</connectionStrings>

有没有我错过的设置?

是否需要应用任何设置才能将 Raven Studio 指向不同的端口?

4

2 回答 2

12

我可以重现您描述的体验的唯一方法是故意制造端口冲突。默认情况下,RavenDB 的 Web 服务器托管在端口 8080 上,因此如果您不更改 raven 的端口,那么您必须将 WebApi 应用程序托管在端口 8080 上。如果不是这种情况,请在评论中告诉我,但我会假设原来如此。

更改 Raven 使用的端口所需要做的就是在调用Initialize方法之前修改端口值。

将此RavenConfig.cs文件添加到您的App_Startup文件夹:

using Raven.Client;
using Raven.Client.Embedded;

namespace <YourNamespace>
{
    public static class RavenConfig
    {
        public static IDocumentStore DocumentStore { get; private set; }

        public static void Register()
        {
            var store = new EmbeddableDocumentStore
                        {
                            UseEmbeddedHttpServer = true,

                            DataDirectory = @"~\App_Data\RavenDatabase", 
                            // or from connection string if you wish
                        };

            // set whatever port you want raven to use
            store.Configuration.Port = 8079;

            store.Initialize();
            this.DocumentStore = store;
        }

        public static void Cleanup()
        {
            if (DocumentStore == null)
                return;

            DocumentStore.Dispose();
            DocumentStore = null;
        }
    }
}

然后在您的Global.asax.cs文件中,执行以下操作:

protected void Application_Start()
{
    // with your other startup registrations
    RavenConfig.Register();
}

protected void Application_End()
{
    // for a clean shutdown
    RavenConfig.Cleanup();
}
于 2013-01-25T16:35:36.627 回答
2

当您在 EmbeddableDocumentStore 中启用 HttpServer 时,ravenDB 会“劫持”Web 应用程序并开始在应用程序正在运行的同一端口上侦听。

Oren Eini:当您从 IIS 内部使用 UseEmbeddedHttpServer 时,它会从 IIS 获取端口。您需要再次设置该值

https://groups.google.com/forum/?fromgroups=#!topic/ravendb/kYVglEoMncw

防止它的唯一方法是关闭 raven http-server 或将其分配给不同的端口

int ravenPort = 8181;
NonAdminHttp.EnsureCanListenToWhenInNonAdminContext(ravenPort);
var ds = new EmbeddableDocumentStore {
   DataDirectory = [DataFolder],    
   UseEmbeddedHttpServer = true,    
   Configuration = {Port = ravenPort}
};
于 2013-01-28T13:58:42.563 回答