Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 360voice.com
 XML/APIs
 Using the XML feed on a website:
 New Topic  Reply to Topic
Previous Page
Author Previous Topic Topic Next Topic
Page: of 2

RoelLive

9,563

Zone: Pro

Total games played:

Current Streak: 0

Longest Streak: 13

Comments Made: 1,337

New Gamer

Netherlands
23 Posts

Posted - Jan 29 2007 :  4:58:19 PM  Show Profile  Visit roellive's Homepage  Reply with Quote
@award123: I was talking to BoonKo, because his questions are not specific :)

Here's an VB.NET example

'declare variables
Dim gamerTag as string = "RoelLive"
Dim myWebRequest As WebRequest
Dim myWebResponse As WebResponse
Dim myXml As New XmlDocument

'create webrequest
myWebRequest = WebRequest.Create(String.Concat("http://www.360voice.com/api/games-listfav.asp?tag=", gamerTag))
myWebRequest.Method = "GET"

'get response
myWebResponse = myWebRequest.GetResponse()

'load response into xmlobject
myXml.Load(myWebResponse.GetResponseStream())


After the myXml.Load action checkout myXml.outerxml it will contain the XML from 360voice.com

I'm not using XSL at the moment, so that's not in the example right now.

When using this code, make sure you also use the following imports

Imports System.Xml
Imports System.Net

Go to Top of Page

Da Bajan King

94,951

Zone: Underground

Total games played:

Current Streak: 0

Longest Streak: 420

Comments Made: 1,337

Advanced Gamer

USA
1346 Posts

Posted - Feb 12 2007 :  6:00:01 PM  Show Profile  Reply with Quote
thass cool it is amazing wat can be done on the pc

Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Previous Page
 New Topic  Reply to Topic
Jump To:
360voice Community © 2006 360voice.com Go To Top Of Page
Snitz Forums 2000