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 6752399
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:02:24+00:00 2026-05-26T13:02:24+00:00

i need to save a xml file from a server.. i found a code

  • 0

i need to save a xml file from a server.. i found a code to make the download but i don’t understand how to save the file into memory.. How can i do that? I search in google and i have this:

    public MainPage()
    {
        InitializeComponent();
        WebClient downloader = new WebClient();
        Uri xmlUri = new Uri("http://dl.dropbox.com/13258/file.xml", UriKind.Absolute);
        downloader.DownloadStringCompleted += new DownloadStringCompletedEventHandler(Downloaded);
        downloader.DownloadStringAsync(xmlUri);




    }

    void Downloaded(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Result == null || e.Error != null)
        {
            MessageBox.Show("There was an error downloading the xml-file");
        }
        else
        {

            MessageBox.Show("Download succeed");
        }
    }

I want to make the download and save it into the memory.

  • 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-26T13:02:25+00:00Added an answer on May 26, 2026 at 1:02 pm

    The code you have will download a file from a server. In Downloaded() you will need to add some code to save the file you have just downloaded.

    On WP7 You save files to isolated storage. This is a application specific file system you can use to save any files you want your application to use. The following link describes how isolated storage can be used:

    http://www.windowsphonegeek.com/tips/all-about-wp7-isolated-storage-read-and-save-text-files

    In your case add this to the Else in Downloaded()

    IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication();
    using (StreamWriter writeFile = new StreamWriter(new IsolatedStorageFileStream("File.Xml", FileMode.OpenOrCreate, FileAccess.Write, myIsolatedStorage)))
    {
        writeFile.WriteLine(e.Result);
        writeFile.Close();
    }
    

    Take care with the FileMode Enumeration Type, the example above uses OpenOrCreate which will open an existing or Create a new file, i.e. overwrite any existing file with that name in the root folder of isolated storage. Details on this enumeration are here:

    http://msdn.microsoft.com/en-us/library/system.io.filemode.aspx

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

Sidebar

Related Questions

I need help in creating a xml file from my php code. I created
I need to download xml file from a secure link, and store the content
I need to save a xml file from sdcard to my android app, in
I need to save all .xml file names in a directory to a vector.
I need to periodically download, extract and save the contents of http://data.dot.state.mn.us/dds/det_sample.xml.gz to disk.
The task is to convert the CSV file into XML. var x = from
I need to save a big file, sometime it takes a very long time
I need to save some classes and data structures to a file. My first
I need to save an camera image from my application to the desktop so
I need to save WPF FlowDocuments to SQL Server. What is the best format

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.