I want to post XML file to WPF Browser Control locally.

I mean don't directly feed this XML file to WPF Browser Control but read it and post it like byte[] array.

I guess to use NavigateToStream method for it...

I tried this but no success :( Browser doesn't show any data at all.

byte[] attachment = System.IO.File.ReadAllBytes("C:\CustomerData.xml");
MemoryStream mStream = new MemoryStream(attachment);
XMLBrowser.NavigateToStream((Stream)mStream);

Which is the best way to implement it in C#?

link|improve this question

The question is really hard to understand (even in quirks mode). What exactly are you trying to achieve (the problem, like "post a file to a server with HTTP Post", not the I-think-that's-the-solution,-now-how-can-I-do-this you may have come up with), what have you tried so far and what are you having problems with? – Nuffin Jan 30 at 13:49
Hi! I want to use NavigateToStream method of WPF WebBrowser to show up XML data. – Peretz Jan 30 at 13:53
feedback

1 Answer

The ideal solution what I need I found here "A Simple WPF XML Document Viewer Control" http://www.codeproject.com/Articles/71069/A-Simple-WPF-XML-Document-Viewer-Control

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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