Pulling RSS Feeds

I am trying to pull a RSS feed and place that on a wall of a scene i am working on - for some reason the RSS feed keeps coming back empty, and i dont know why

var url = "//"http://rss.cnn.com/rss/cnn_topstories.rss";
var dat;
var www: WWW;


function Start(){
	www = new WWW(url);	
	yield;
	if([url]www.isDone[/url]){
	dat = [url]www.data;[/url]
	Debug.Log("RSS Data: " + dat);
	  
	}	
}

ive been testing it with the CNN website RSS feed to no avail - what am i doing wrong?

Well, your URL string seems…odd to me.

"//"http://rss.cnn.com/rss/cnn_topstories.rss"

Should it not just be this?

 "http://rss.cnn.com/rss/cnn_topstories.rss"

yeah that was just a typing error - ive been testing the data pull using different websites…im not sure if it just doesnt like the format of RSS feeds or what but it comes back empty no matter what