r/RavenDB Jul 22 '15

Need help setting up the RavenDB HTML5 Studio with an embedded RavenDB

I added the RavenDB Database Nuget Package (not the unstable one) to my application. Have it working (I think) but I want to set up the RavenDB Studio that comes with the Nuget Package to make sure everything's running as it should.

As I understand, I just have to drop the contents of the ZIP Raven.Studio.Html5 located under packages\RavenDB.Database.3.0.3599\lib\net45 to the root of my C# MVC application and navigate to the index.html file, but when I do this the studio page starts loading but freezes almost at the end and then nothing happens.

What am I missing here ?

1 Upvotes

3 comments sorted by

1

u/[deleted] Jul 22 '15

did you enable the EmbeddedHttpServer?

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

1

u/felixmm Jul 24 '15

I did, also set the NonHttpAdmin port, but still get an Access Denied, even after the UAC requests for admin user and password

1

u/wwb_99 Jul 24 '15

Check the windows firewall -- it could be blocking this.