Problem with iTunes xml code

I've been trying to change my feed url by adding the specified iTunes xml "new feed" tag at the channel level, but no matter where I put it, it invalidates the feed.
This is my current feed:
http://www.ultimathule.info/xml/UltimaThule_AmbientMusic.xml
This is the xml I'm trying to add:
<itunes:new-feed-url>http://www.ultimathule.info/xml/UltimaThule_AmbientRadio.xml</itunes:new-feed-url>
Where exactly in my feed is this code supposed to go?
George
www.ultimathule.info

You put this in your podcast's rss xml code right below the <channel> tag:
<itunes:new-feed-url>http://yourserver_here/your_new_feedhere</itunes:new-feed-url>
which I take to mean within the channel tag. If this is wrong, I hope to be corrected.

Similar Messages

  • Problem with generating xml and nested cursor (ora-600)

    I have a problem with generating xml (with dbms_xmlquery or xmlgen) and nested cursors.
    When I execute the following command, I get a ORA-600 error:
    select dbms_xmlquery.getxml('select mst_id
    , mst_source
    , cursor(select per.*
    , cursor(select ftm_fdf_number
    , ftm_value
    from t_feature_master
    where ftm_mstr_id = pers_master_id ) as features
    from t_person per
    where pers_master_id = mst_id ) as persons
    from f_master
    where mst_id = 3059435')
    from dual;
    <?xml version = '1.0'?>
    <ERROR>oracle.xml.sql.OracleXMLSQLException: ORA-00600: internal error code, arguments: [kokbnp2], [1731], [], [], [], [], [], []
    </ERROR>
    The problem is the second cursor (t_feature_master).
    I want to generate this:
    <master>
    <..>
    <persons>
    <..>
    <features>
    <..>
    </features>
    </persons>
    <persons>
    <..>
    <features>
    <..>
    </features>
    </persons>
    </master>
    If i execute the select-statement in sql-plus, then I get the next result.
    MST_ID MST_SOURCE PERSONS
    3059435 GG CURSOR STATEMENT : 3
    CURSOR STATEMENT : 3
    PERS_MASTER_ID PERS_TITLE PERS_INITI PERS_FIRSTNAME PERS_MIDDL PERS_LASTNAME
    3059435 W. Name
    CURSOR STATEMENT : 15
    FTM_FDF_NUMBER FTM_VALUE
    1 [email protected]
    10 ....
    I use Oracle 8.1.7.4 with Oracle XDK v9.2.0.5.0.
    Is this a bug and do somebody know a workaround?

    Very simple...Drop all type objects and nested tables and create them again. You will get no error. I'll explain the reason later.

  • I am experiencing two problems with iTunes on my iPhone 5s.

    I am experiencing two problems with iTunes on my iPhone 5s.
    Issue 1: iTunes Match
    Some song playback is merging songs. I select “Song A” to be played and midway through the song it begins playing “Song B” however when I look at my phone it indicates that “Song A” is still playing even though the actual music is not “Song A”. I searched the Apple Support Community as well as the internet and this seems to be an ongoing issue back to 2012 that has not been resolved. All of the “fixes” that are provided do not work. For example, update/sync iTunes Match, delete the song from your iPhone and re-download from the cloud or delete the song from your iTunes including the iCloud and re-download. None of which worked. I even tried to complete erase the song from my computer hard drive and restarted my computer and then re-downloaded the song and it was still not working.
    Issue 2: iTunes Preview Track
    I am unable to preview any music on iTunes through the iTunes app on my phone. I have signed out of my user ID and restarted my phone and then logged back in and it did not fix the problem. My iTunes Match and iTunes radio are allowing me to play music. My software is up-to-date.

    Same problem here, Im running the latest version of iOS 7 on my iphone 5S (ipod 5S) bricked lol. It was working fine and then a mates baby grabbed my phone and dropped it (not very high) then it went off so i turned it on and BAM i got the grey backround with the apple logo on it so, I waited, Then it went to BSOD and got stuck in that loop, I then done a manual reset I was able to turn it off thats all. I tried restore in recovery mode with the latest itunes it come up with Unknown Error, error code (14) (something to do with unreconizable USB) tried many diffrent USB ports but sadly nothing, I then tried DFU mode with itunes still not working. Im really stuck on this one I need some assitance PLEASE! HELP!
    No aftermarket apps on iphone 5s
    Latest iOS 7 on iphone 5s
    Latest itunes 11.1.5.5
    Running Windows 7 (good comp)

  • Problems with reading XML files with ISO-8859-1 encoding

    Hi!
    I try to read a RSS file. The script below works with XML files with UTF-8 encoding but not ISO-8859-1. How to fix so it work with booth?
    Here's the code:
    import java.io.File;
    import javax.xml.parsers.*;
    import org.w3c.dom.*;
    import java.net.*;
    * @author gustav
    public class RSSDocument {
        /** Creates a new instance of RSSDocument */
        public RSSDocument(String inurl) {
            String url = new String(inurl);
            try{
                DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
                Document doc = builder.parse(url);
                NodeList nodes = doc.getElementsByTagName("item");
                for (int i = 0; i < nodes.getLength(); i++) {
                    Element element = (Element) nodes.item(i);
                    NodeList title = element.getElementsByTagName("title");
                    Element line = (Element) title.item(0);
                    System.out.println("Title: " + getCharacterDataFromElement(line));
                    NodeList des = element.getElementsByTagName("description");
                    line = (Element) des.item(0);
                    System.out.println("Des: " + getCharacterDataFromElement(line));
            } catch (Exception e) {
                e.printStackTrace();
        public String getCharacterDataFromElement(Element e) {
            Node child = e.getFirstChild();
            if (child instanceof CharacterData) {
                CharacterData cd = (CharacterData) child;
                return cd.getData();
            return "?";
    }And here's the error message:
    org.xml.sax.SAXParseException: Teckenkonverteringsfel: "Malformed UTF-8 char -- is an XML encoding declaration missing?" (radnumret kan vara f�r l�gt).
        at org.apache.crimson.parser.InputEntity.fatal(InputEntity.java:1100)
        at org.apache.crimson.parser.InputEntity.fillbuf(InputEntity.java:1072)
        at org.apache.crimson.parser.InputEntity.isXmlDeclOrTextDeclPrefix(InputEntity.java:914)
        at org.apache.crimson.parser.Parser2.maybeXmlDecl(Parser2.java:1183)
        at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:653)
        at org.apache.crimson.parser.Parser2.parse(Parser2.java:337)
        at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:448)
        at org.apache.crimson.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:185)
        at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:124)
        at getrss.RSSDocument.<init>(RSSDocument.java:25)
        at getrss.Main.main(Main.java:25)

    I read files from the web, but there is a XML tag
    with the encoding attribute in the RSS file.If you are quite sure that you have an encoding attribute set to ISO-8859-1 then I expect that your RSS file has non-ISO-8859-1 character though I thought all bytes -128 to 127 were valid ISO-8859-1 characters!
    Many years ago I had a problem with an XML file with invalid characters. I wrote a simple filter (using FilterInputStream) that made sure that all the byes it processed were ASCII. My problem turned out to be characters with value zero which the Microsoft XML parser failed to process. It put the parser in an infinite loop!
    In the filter, as each byte is read you could write out the Hex value. That way you should be able to find the offending character(s).

  • Multiple Problems with itunes...PLEASE HELP

    i'm crossing posting this to try and get as much help as possible, so i'm sorry if you see this in a bunch of places.....
    i posted awhile back and didnt get much help and i'm still having problems with itunes
    first of all when i open itunes it attempts to do the gapless playback stuff....if i let it do it....it gets half way through and freezes....but if i stop it before it freezes, i am able to play music BUT not import any songs from cd, ipod, or downloading software....
    so, i deleted the library and imported "iTunes Music Library.xml"....then i went into my itunes folder and started dropping the songs into itunes...and i got about 3/4s of my music (about 25 gigs) and it starts to freezes when looking for album covers....if i force quit and reopen the song will be in there...just not the album work....which is fine....but if i have to force quit every time i import a song, its going to get rediculous....i have tried deleting the library and importing the "iTunes Music Library.xml" file about 6 times now, with the same results.....
    ALSO...when i connect my ipod to my computer (i have 80 gig 5G) it will freeze while syncing....
    i honestly have NO idea what to do....any suggestions would be welcomed...thanks....
    -Lisa

    modulatetome,
    See if these articles help to narrow down the issue:
    First: How to recreate your iTunes Library
    http://docs.info.apple.com/article.html?artnum=93313
    - You stated you had " deleted the library and imported "iTunes Music Library.xml", so verify steps in article are what you've done, or try them again.
    Second: How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    - You can use this to open iTunes with an empty Library, import one CD and test how iTunes works.
    Hope this helps,
    Generik
    Dual 2.3 GHz PowerPC G5   Mac OS X (10.4.8)  

  • ITunes has stopped working.  Problem with iTunes Helper Module

    After i installed the 7.3.1 iTUNES update for my windows VISTA, i keep getting iTunes has stopped working, and a message saying there is a problem with iTunes Helper Module.. I've tried to re-install and everything.. Can anyone help me out?

    here you go
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: iTunesHelper.exe
    Application Version: 7.3.1.3
    Application Timestamp: 468d67e8
    Fault Module Name: QuickTimeStreamingAuthoring.qtx
    Fault Module Version: 7.2.0.240
    Fault Module Timestamp: 4684a83a
    Exception Code: c0000005
    Exception Offset: 00016c09
    OS Version: 6.0.6000.2.0.0.768.3
    Locale ID: 1033
    Additional Information 1: 18fe
    Additional Information 2: f42ba5cd8b2ed31f18b99a5ea46137af
    Additional Information 3: 4735
    Additional Information 4: ae0a749503b699b3b75d581a3dbfd557
    Extra information about the problem
    Bucket ID: 466198587

  • Problems with iTunes Airplay after pausing the playback

    I have a problem with itunes airplay since I've updated my system to Windows 8.
    I'm able to stream music to my Yamaha receiver once, but when I pause the playback and resume to it after a short while, iTunes always freezes and it is shown as inactive in the Task Manager...
    I hadn't any problems with it on Windows 7.
    Any Solutions?
    btw: I tried installing iTunes 11.0.4 and iTunes 10.7..same issue on both versions.
    And I'm sorry for my bad english ;-)

    The following article(s) may help you.
    Credit card security code or postcode issues.

  • Problems with Itunes today...

    Anyone else having problems with Itunes today?  Only sidebar is showing up,  cannot connect to account Info, ping wont show up at all,  strange error messages saying cannot connect to a secure Itunes server...
    Just wondering if it's only me.

    To follow up, I re-sent the gift a third time late Friday (that's four attempts total), and it was successfully received and redeemed this morning (Saturday). I also received a response from iTunes Store support, whom I had contacted separately, which contained the gift code from the transaction and advice to send it directly to the recipient, but they did not acknowledge any problems with the Store.
    I did get a number of responses on Twitter and Facebook from others who had iTunes Store problems yesterday, however.

  • Is anybody else having problems with itunes (10.6.3.25) and ipod touch (5.1.1)?

    Lately I've been having a ton of problems with iTunes and my iPod Touch (4th generation). Lots of error messages such as can't connect to itunes store, incompatible application, ipod detected but not identifiable, invalid response received from device, unknown errors [mostly (0xE8000001)], problem with audio configuration, etc. I've done everything I could think of. Uninstalling iTunes (with all the components) then reinstalling with the newest version (10.6.3.25), running diagnostics and such. If it does appear (about 2% of the time) then iTunes freezes and/or it won't sync. I also try to change some info (song title, artist, artwork, etc)(when it DOES come up) and it shows up on itunes but not on my ipod. My ipod appears on my computer but not in iTunes under devices like its supposed to. I've been to all the support threads I can possibly find and NOTHING has helped. I also had the latest version for the ipod touch (5.1.1). And I've never had any issues with iTunes or my iPod touch before. I know I should probably try restoring my ipod but I absolutely do not want to do that unless I have to because i have a lot of music, apps, movies, etc I'm not able to back up. Also, I'm using a Windows 7 computer. Please Please help if you can, I am frustrated because I can't do anything.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If you've already tried a complete uninstall and reinstall try opening iTunes in safe mode (hold down CTRL+SHIFT as you start iTunes) then going to Edit > Preferences > Store and turning off Show iTunes in the Cloud purchases. You may find iTunes will now start normally.
    You could also try working through
    TS1717: iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    tt2

  • Problems with iTunes/ipad2  I'm trying to buy FREE apps and I'm being told my card is declined but I also have more then enough credit on my account! Anyone having this problem?

    Problems with iTunes/ipad2  I'm trying to buy FREE apps and I'm being told my card is declined but I also have more then enough credit on my account! Anyone having this problem?

    Part of the validation for credit cards is that they need to be registered to exactly the same name and address that you have on your iTunes account, which prepaid cards tend not to be. Do you have a proper credit card that you could use ? Or are iTunes gift cards available in your country so that you could try using them as your payment method ?
    Until you have a valid payment method on your account and what you owe iTunes has been paid off then you won't be able to download any item from the store, including free apps (and updates to apps).

  • Problems with Itunes New Version?

    Problems with Itunes New Version?
    Here is a copy of the error message. Every Time I listen to a song and it end and I go to listen to a new song the Itunes Freeze up. This is on the New Version of Itunes. I have a Windows 7 32bit 3GB Ram 1TB harddrrive Space
    <edited by host>
    Thanks,
    <edited by host>
    Fault bucket 1279649891, type 5
    Event Name: AppHangB1
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: iTunes.exe
    P2: 9.2.1.5
    P3: 4c47745b
    P4: e36b
    P5: 2048
    P6:
    P7:
    P8:
    P9:
    P10:
    Analysis symbol:
    Rechecking for solution: 1
    Report Id: 46dfdb3e-99a7-11df-8064-00038a000015
    Report Status: 0
    Fault bucket 1279649891, type 5
    Event Name: AppHangB1
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: iTunes.exe
    P2: 9.2.1.5
    P3: 4c47745b
    P4: e36b
    P5: 2048
    P6:
    P7:
    P8:
    P9:
    P10:
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 46dfdb3e-99a7-11df-8064-00038a000015
    Report Status: 0

    There certainly is a problem with itunes. I downloaded 9.2 and now it won't open. It won't recognize my iphone, either. I uninstalled it in the order recommended by the site, no joy. Deleted a configuration file, no joy. System Restore, no joy. All other software and hardware on the machine is working fine. I call AppleCare AND a local store, either they are completely clueless (which I doubt), or they have no idea how to fix it. I can't even back up my phone, or use the ipod. And since no one at Apple seems to care enough, I'll have to wait until the clamor is loud enough for them to even admit to a problem before I can use the ipod again.

  • Problems with itunes 8 and ipod shuffle gen 2.

    Problems with itunes 8 and ipod shuffle gen 2.
    I recently upgraded from itunes 7 to itunes 8 on my windows XP PC. That's when i had issues syncing my 2nd gen shuffle.
    When i try to drag songs directly on it, itunes says i can't
    I made a playlist and use auto fill. But when I remove it from the dock, it's either not updated, or the new songs are at the bottom of the playlist when they are supposed to be up higher. I end up having to hit auto fill twice to make it sync correctly.
    Computer Specs
    Windows XP SP3
    384MB of Ram (works really good)
    USB 1.1 connection
    Pentium 4 clocked at 1.285 GHZ
    IPOD Shuffle Specs
    2nd Generation
    1GB (964MB)
    Version 1.0.4
    unchecked options: open itunes when ipod is attached, Sync only checked songs, convert higher bit rate songs to 128kbps AAC, Enable sound check, Limit MAX volume, enable disk use
    All those are NOT checked. Sometimes i enable disk use for seeing the IPOD_Control folder, but either way it still messes up.
    Itunes Specs:
    Version 8.1.1.10

    This is a well-known issue. Apple changed the internal file names used with iTunes 8, which makes the ordering on 2nd generation Shuffles behave differently. There is no good workaround, apart from moving the files with a hand-crafted AppleScript program.
    Apple has been silent on the issue, so nobody knows if we'll ever have a fix for it or not.

  • Problem with itunes and iphoto after time machine restoration

    After an apocalyptic type meltdown in my hardrive the other night, I now have a new one. I have restored as much as I had backed up using time machine when I turned my computer back on for the first time. However in iphoto it lists all the different albums I have, but all the photos come up as grey squares. They are definitely on the computer as you can see them in the iphoto originals folder in the finder window.
    A similar problem with itunes. My itunes library is totally blank, with no songs whatsoever. However the songs are there in itunes music folder.
    How can I restore everything back to normal?
    Matt

    Look at Q15 here. http://pondini.org/TM/FAQ.html
    There are separate sections for iphoto and itunes.
    It has to be so complicated because Apple made TM to do too much and be too many things to too many people.. a horse designed by a committee. It has become flakey in later editions.
    If you still have the iMac you can move the files directly from the source.. you don't need to use TM backups at all.

  • Hey, im experiencing problems with itunes. i downloaded the recent itunes update yesterday and today i plugged my iphone in and my computer said there was a trojan horse and now itunes wont open. Help please??

    Hey guys, Im expierencing problems with itunes after the latest update yesterday(1/22) and the problem im having is when i plugged my iphone into my PC today a virus detection came up and said a trojan horse was present. I also cant open itunes at all. Im confused and dont know what to do. thanks in advance

    Place the device in DFU mode (google it) and restore.

  • Problems with iTunes

    I've recently started having a few problems with iTunes, and was wondering if anyone could offer advice on how to go about fixing them.
    First of all, iTunes opens up (it takes quite a long time) and then everything goes slow. It keeps automatically updating the podcasts, of I press Ctrl + Alt + Delete, it says (under CPU) that iTunes is using (anywhere between)65 - 99% of the cpu. So if i stop it from updating the podcasts, the CPU usage goes down. Is there any way of resolving this?
    Also, (whether CPU usage for iTunes in 99% or 0%) all my music is jumpy. It plays about a second, jumps, plays abother second, jumps... nothing willlay properly. This has only started happerning in the past few days.
    I'm not sure if this came about after upgrading (i don't remeber if i upgraded iTunes recently or not).
    One final problem that I've had for ages. (I think this might be more something wrong with my computer / windows) but iTunes wont always open straight away, If i double click on it, it will load for a few seconds then nothing will happern. So i forget about it, and start doing something else / leave the computer, then about 1/2 an hour later iTunes pops open. As I've said, I don't think that this is caused by iTunes, because if I restart my pc, it will (normally) open straight away.
    I am using iTunes 6.0.4.2
    Thanks for any help
    Welshy
    4.6.0.2   Windows XP Pro  

    I do not mean to be rude but considering the problem, What is your computers RAM Memory capacity if you are close to the maximum this could be part of your problem, also do you do disc clean up and defrag. regularly? there is also another facility that might help and that is a registry cleaner (do not start thinking massive outlay at this stage. The disc clean up and defrag should be part of your computers tools) The registry cleaner is available until later this year as a free item (Beta) from Microsoft. If you are fully clear there are all your 'cookies' clean out every day preferably 2-3 times per day they do mount up and take up disc space.

Maybe you are looking for