views:

408

answers:

2

So im working on a game in XNA and i need it to get a server list off our site.

so i just need to do a http request to http://play.feedthezombie.com/?want=servers&enc=xml and get the contest as either a string or xml object.

any clues?

+2  A: 

Use XmlDocument.Load method. It can load XML from an URL.

Franci Penov
A: 

You can call any .NET framework classes you like on Windows, including ones that do network access and XML handling. On Xbox you are limited to what XNA provides to you which is a subset of the .NET framework and the only network access is through the Xbox Live APIs.

Bill Reiss