RSS Feed sources weirdness...
#1
From my /UserData/sources.xml
Code:
<source>
    <name>queeup Video Feeds</name>
    <path pathversion="1">rss://ankara.baskent.edu.tr/~obaskin/rss/video.xml/</path>
</source>
<source>
   <name>deadelvis Video Feeds</name>
    <path pathversion="1">rss://www.specialdefects.com/xbmc/video.xml</path>
</source>

Xbox consistently throws a "Could not connect to network server" error with the second feed... while it works just fine with the first.

I can't for the life of me figure out why this is so, specially since both feeds are just basically the same.

Any help would be MUCH appreciated.
#2
Please read stickies on how to post in a useful manner.

In particular, the full debug log on pastebin please.
42.7% of all statistics are made up on the spot

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
#3
Sorry tslayer... my bad.

Platform: Xbox. Built on Jun 26 2009 (SVN:21142, compiler 1310)
skin:[Project Mayhem III]
Full debug log: http://pastebin.com/m6c186eb4
#4
Please upgrade, if possible, to a version after 21769. There was a recent change to rss source handling.

Please upgrade and report back.
42.7% of all statistics are made up on the spot

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
#5
Platform: Xbox. Built on Aug 4 2009 (SVN:21991, compiler 1310)
Skin: Project Mayhem III v2.11
Full debug log: http://pastebin.com/m6557500e

Previous was latest T3ch... this one from sshcs.com/xbmc

Error seems to be exactly the same Sad

Code:
14:18:05 M: 25944064    INFO: Initializing feed: http://www.specialdefects.com/xbmc/video.xml
14:18:05 M: 25944064   DEBUG: FileCurl::Open(D00A0458) http://www.specialdefects.com/xbmc/video.xml
14:18:05 M: 25907200    INFO: XCURL::DllLibCurlGlobal::easy_aquire - Created session to http://www.specialdefects.com
14:18:05 M: 25804800   DEBUG: kernel32.dll fake function GetFullPathNameA called
14:18:06 M: 25804800   DEBUG: FileCurl::Close(D00A0458) http://www.specialdefects.com/xbmc/video.xml
14:18:06 M: 25907200   ERROR: DIRECTORY::CDirectory::GetDirectory - Error getting rss://www.specialdefects.com/xbmc/video.xml/
14:18:06 M: 25907200   ERROR: CGUIMediaWindow::GetDirectory(rss://www.specialdefects.com/xbmc/video.xml/) failed
#6
I'm also having trouble to add an RSS feed as a source (using the GUI). Trying to add http://www.sr.se/rssfeed/rssfeed.aspx?Poddfeed=3966 as a Music source.

A trailing / is added by XBMC, maybe this cause the problem, since the path is not pointing to a directory?

Here is the debug log:
http://pastebin.com/ma390f8f
#7
nika Wrote:I'm also having trouble to add an RSS feed as a source (using the GUI). Trying to add http://www.sr.se/rssfeed/rssfeed.aspx?Poddfeed=3966 as a Music source.

A trailing / is added by XBMC, maybe this cause the problem, since the path is not pointing to a directory?

Here is the debug log:
http://pastebin.com/ma390f8f

This was resolved in r21293.
#8
I have r22072 and can confirm it is still a problem.

mpadilla2
#9
not merged to xbox probably
#10
To clarify, I am on windows xp and receiving the error.

Most rss feeds I attempt to add are useless as most receive the error reported by the original poster.

I cannot seem to locate r21293 anywhere. I've looked at zipped, kricker, ikons, and jester builds and cannot locate r21293.

Can someone point me in the direction of r21293?
#11
Provide your debug log then.
42.7% of all statistics are made up on the spot

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
#12
debug log again please
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not PM or e-mail Team-Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
#13
I used the same rss feeds as the original poster. I am now on build r22103. Debug log at http://pastebin.com/m1228be6f

Although I used the original posters rss feeds I get the same error with my other feeds.
#14
Please read the stickies. We specifically want a FULL DEBUG LOG. Do not CUT it.
42.7% of all statistics are made up on the spot

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
#15
rss file is borken. it needs rss:// in the links, not http://
Code:
else if(strcmp(item_child->Value(), "link") == 0) {
        if (item_child->GetText()) {
          string strLink = item_child->GetText();

          string strPrefix = strLink.substr(0, strLink.find_first_of(":"));
          if (strPrefix == "rss") {
            // If this is an rss item, we treat it as another level in the directory
            item->m_bIsFolder = true;
            item->m_strPath = strLink;
          }
          else if (item->m_strPath == "" && IsPathToMedia(strLink)) {
            item->m_strPath = strLink;
          }

Logout Mark Read Team Forum Stats Members Help
RSS Feed sources weirdness...0