Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7496593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T18:41:16+00:00 2026-05-29T18:41:16+00:00

I have successfully issued a Start-Backup request to my local RavenDB using an asynchronous

  • 0

I have successfully issued a Start-Backup request to my local RavenDB using an asynchronous HTTP WebRequest (C#). I can see the the backup files are being created in the backup-location I specified. This is good.

The Start-Backup call is asynchronous so I need some way to determine when the backup process is complete. Fortunately the RavenDB docs state:

You can check the status of the backup by querying the document with
the key: “Raven/Backup/Status”. The backup is completed when the
IsRunning field in the document is set to false.

RavenDB Documentation

Can somebody please show me how to do this check?

I have tried issuing another HTTP request but it always returns with an status [400-Bad Request]. I would be happy to actually query the database using code for this doc but I do not know the type of the ‘status document’ so cannot call any generic db.Query<>() method and honestly, I am not sure how to query using a ‘key’.

Here is the code I am using so far.

private void StartBackup(string backupLocation)
{
    var requestUri = new UriBuilder(Default.RavenUri){Path ="/admin/backup"};
    var formData = "{ 'BackupLocation': '" + backupLocation + "' }";
    var request = GetRequest(requestUri.Uri, formData);
    request.BeginGetResponse(asynchResult => CheckStatus(), null);

}

private void CheckStatus()
{
    var requestUri = new UriBuilder(Default.RavenUri){Path = "/Raven/Backup/Status"};
    var request = GetRequest(requestUri.Uri);
    var response = request.GetResponse();

}

private WebRequest GetRequest(Uri uri, string formData = null)
{
    var request = WebRequest.Create(uri);
    request.UseDefaultCredentials = true;
    request.PreAuthenticate = true;
    request.Credentials = CredentialCache.DefaultCredentials;

    if (formData == null)
    {
        request.Method = "GET";
        request.ContentLength = 0;
        return request;

    }

    request.Method = "POST";
    var data = Encoding.UTF8.GetBytes(formData);
    request.ContentLength = data.Length;
    request.ContentType = "application/x-www-form-urlencoded";
    using (var dataStream = request.GetRequestStream())
    {
        dataStream.Write(data, 0, data.Length);
    }
    return request;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T18:41:25+00:00Added an answer on May 29, 2026 at 6:41 pm

    The Raven/Backup/Status is a document, not an endpoint, if you want to just grab the data over the wire, use:

     GET docs/Raven/Backup/Status
    

    And it will work.

    But you can also just use Raven.Backup.exe to do so.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have successfully connected to an Oracle database (10g) from C# (Visual Studio 2008)
I have successfully managed to get System.Speech.Synthesis to read English text in arbitrary voices
I have successfully implemented interop beftween Win32 application and managed .Net dll as described
I have successfully upgraded an MFC application which was compiled with an old version
I have successfully used the Excel and Word addin templates in Visual studio 2008
I have successfully set up FILESTREAM on my SQL 2008 server; however I've noticed
I have successfully compiled lua in my mac. It works. It runs. Now, I
I have successfully implemented Forms Authentication in SSRS, so it now uses both Roles
I have successfully created an app that reads from a bundled .plist file and
I have successfully set up an HgWebDir instance over CGI with Apache, and I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.