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.

So I have a piece of code that works on the first call, and can tell me my most recent notification on Facebook via RSS. But, when I go to poll it the second time it freezes up right before\during the creation of the rssReader object.

private string getLatest()
    {
        var req = (HttpWebRequest)WebRequest.Create(rssFeedURL);
        req.Method = "GET";
        req.UserAgent = "Fiddler";

        var rep = req.GetResponse();
        var rssReader = XmlTextReader.Create(rep.GetResponseStream());

        if(rssReader.ReadToFollowing("item"))
        {                
            rssReader.ReadToFollowing("title");
            return rssReader.ReadElementContentAsString();   
        }
        return latest;
    }

Could anyone tell me why this is? (This code is nearly identical to other's code that works)

It is called in this function:

public string alertFeed()
{
    string re = getLatest();
    if (re.Equals(latest))
            return null;
            latest = re;
            return "Facebook Notification, " + re;
    }
}

EDIT:

Here's the fixed code, for anyone interested:

    private string getLatest()
    {

        var req = (HttpWebRequest)WebRequest.Create(rssFeedURL);
        req.KeepAlive = false;
        req.Method = "GET";
        req.UserAgent = "Fiddler";
  --->  using (WebResponse rep = req.GetResponse())
        {
            var rssReader = XmlTextReader.Create(rep.GetResponseStream());

            if (rssReader.ReadToFollowing("item"))
            {
                rssReader.ReadToFollowing("title");
                return rssReader.ReadElementContentAsString();
            }
  --->  }
        return latest;
    }

The parts pointed to are what I had to add, as pointed out by Gratz, I could also have used rep.Close();.

share|improve this question

1 Answer

up vote 0 down vote accepted

Maybe because you didn't close WebResponse "rep"

rep.Close();
share|improve this answer
Thanks, I actually ended up using the using keyword, but your solution worked as well. – nileshp87 Mar 4 at 18:20

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.