Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to pull xml data from radio station website API's and play a channel in my website using c#.

Any idea how can i play this live radio channel in my web site.

share|improve this question
1  
take a look at bytes.com/topic/visual-basic-net/answers/… – pratap k Dec 20 '11 at 13:16
@pratapchandra thnx but not useful link – nohan Dec 20 '11 at 15:00

1 Answer

You may use Linq-XML.

XDocument doc=XDocument.Load(string uri);

Import the System.Xml.Linq and write following code:

 XDocument doc = XDocument.Load("http://api.sr.se/api/rightnowinfo/Rightnowinfo.aspx?unit=164");

 foreach (var t in doc.Root.Descendants())
  {
    Console.WriteLine(t);
  }
share|improve this answer
can you explain little bit more .. – nohan Dec 20 '11 at 15:01
Hi AVD. this code is not working for streaming radio. – nohan Dec 22 '11 at 18:53
@nohan - Well you have to post your not working code so I can see and suggest. – AVD Dec 23 '11 at 8:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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