I'm playing with Raven DB and am wondering if it's possible to connect to an embedded DB with Raven Management Studio. Has anyone ever done this?

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

If I understood you correct and you mean the Web UI, you simply have to enable the embedded web server.

var documentStore = new EmbeddableDocumentStore
{
  DataDirectory = "Data",
  UseEmbeddedHttpServer = true
};

See http://ravendb.net/docs/server/deployment/embedded

Also make sure to include Raven.Studio.xap in the root of your web application

link|improve this answer
1  
This kind of works, but now I get this error message: Missing file Could not find file Raven.Server.xap, which contains the RavenDB Studio functionality. Please copy the Raven.Server.xap file to the base directory of RavenDB and try again. – Ken Sykora Aug 4 '11 at 20:09
1  
And once you have included the Raven.Studio.xap file, it should just work. – Ayende Rahien Aug 5 '11 at 4:58
Great answer! I was also wondering how to do that! – Daniel Lang Aug 5 '11 at 13:58
1  
If you have RunInMemory=true and you're in a web application, copy the Raven.Studio.xap into the root of your web application! I missed this for a while! – Pete Montgomery Oct 28 '11 at 10:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.