Redirect tag

I have recently redirected my podcast URL using the Tags:
"<itunes:new-feed-url>http://www.creativesweettv.com/MDG/Creative%20Sweet%20TV/rss.xml</itunes:new-feed-url>"
The redirect works when I test it directly into itunes however the iTunes store seem to be failing.
It tell me the feed URL cannot be found on the server. It seems to have picked up the new URL but cant find it. Its there; and it works. Could someone please take a look?
The Video podcast link is on
http://www.creativesweettv.com/sweet.html ( new feed )
On the itunes store seach for : Creative Sweet TV this fails.
I fear I am losing many subscribers.

A few guesses-
Is your old feed still able to be accessed by iTunes? If it has been taken down, the store will not be able to see the new feed tag in the first place, and nothing will work - put it back up if you have taken it down.
Here's what Feed Validator has to say about it. You need to add a "type" portion to each of your enclosure tags, for one thing. Try type="video/mp4" or type="video/quicktime". Fix your category tag (new category listings are found in the podcasting tech spec).
Also, when I subscribed to your feed, iTunes told me that it couldn't find a URL (which ends in "/Creative Sweet TV/rss.xml"). Spaces! If none of the things above fix your issue, maybe you should check to make sure that iTunes can deal with the format of your URLs.
Peach

Similar Messages

  • ORACLE tags in Templates vs Dynamic Pages

    Hello all,
    I have a procedure that prints the Portal version:
    Create or Replace PROCEDURE MATSTESTSCHEMA.SHOW_PORTAL_VERSION
    as
    l_ver varchar2(20);
    BEGIN
    l_ver := portal30.wwctx_api.get_product_version();
    htp.print(l_ver);
    END;
    I can call this procedure successfully from a Dynamic Page with
    the following embedded syntax in the HTML code:
    <ORACLE>
    BEGIN
    MATSTESTSCHEMA.SHOW_PORTAL_VERSION;
    END;
    </ORACLE>
    I want to use some procedure calls in my templates as well.
    Tried to use the same syntax as above but it does NOT work.
    The whole code block between the <ORACLE>-tags seems to be
    ignored as soon as a procedure call is included.
    A simple syntax like this DOES work in a template:
    <ORACLE>
    BEGIN
    htp.p('hello');
    END;
    </ORACLE>
    Why doesn't it work to call procedures from the templates???
    Has anyone alse run into this?
    PS! I'm using Portal version 3.0.7.6.2
    Will soon upgrade to the latest version...

    What I'm trying to do is to do a redirect of a page depending on
    some conditions which my PL/SQL procedure can determine. So I
    hoped that I could call my procedure from the page template
    header and the procedure would print a redirect tag, if
    appropriate. Something like this:
    Page template (part of..)
    <HTML>
    <HEAD>
    <ORACLE>
    BEGIN
    MYSCHEMA.DO_REDIRECT;
    END;
    </HEAD>
    The DO_REDIRECT procedure prints the META tag for a redirect of
    the browser if it finds it necessary. otherwise it would do
    nothing..
    <META     HTTP-EQUIV="Refresh"
         Content     = "30;
         URL=http://www.oracle.com">
    But calling procedures from templates as described above does
    not seem to work, at least in version 3.0.7.6.2.
    (We're in the process of upgrading to the latest version)
    Does this work in 3.0.9 ?
    ...or does anyone know a better way to do this?
    Any advice is really apreciated.

  • c:redirect not working?

    Hi folk,
    I'm new to JSP. We use JSTL to parse XML file at work.
    We use WebSphere and Java 1.4.x.
    It seem the <c:redirect> tag is not working. Someone point out somewhere, that this is a know bug using WebSphere. But I still have doubt.
    I'm more use to PHP and I was wondering if <c:redirect> tag work like the header() function in the sense that NO output should be send before using <c:redirect>?
    Those <c:redirect> work using a HTML header to make the redirection?
    Thank you!

    Most likely no output should be sent AFTER using <c:redirect/>
    This tag is equivalent of sendRedirect(java.lang.String location) method of javax.servlet.http.HttpServletResponse
    http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/http/HttpServletResponse.html#sendRedirect(java.lang.String) :
    Sends a temporary redirect response to the client using the specified redirect location URL. This method can accept relative URLs; the servlet container will convert the relative URL to an absolute URL before sending the response to the client.
    If the response has already been committed, this method throws an IllegalStateException. After using this method, the response should be considered to be committed and should not be written to.

  • JSF URL redirection

    I want the user to type in the browser
    http://my.website.com
    which would be forwarded to this.
    http://my.website.com/CTOpsProd/faces/frames.jsp
    It would be great if someone could tell me a simple way to do this using JSF or websphere setup
    thanks

    Just add JavaScript code like location = 'CTOpsProd/faces/frames.jsp'; to Your index.jsp
    or use <jsp:redirect> tag.
    I want the user to type in the browser
    ttp://my.website.com
    hich would be forwarded to this.
    http://my.website.com/CTOpsProd/faces/frames.jsp
    t would be great if someone could tell me a simple
    way to do this using JSF or websphere setup
    thanks

  • Redirect & parameter passing

    Hi,
    I have two different pages personList and personDetail and two managed beans PersonList and PersonDetail. I have a problem to pass a personId parameter to PersonDetail bean when moving from personList to personDetail page. It works fine when I don't use <redirect/> tag in my faces-config.xml file. I suppose that the problem is that first request is created by clicking on commandLink and usage of <redirect/> tag causes creating of new request but I need to use redirect otherwise url don't change. Any ideas how to solve this problem???
    I can't use outputLink for passing parameters because there are two different detail pages and I resolve where to go in PersonList.personDetail method
    personList.jspx code example
    <h:commandLink action="#{PersonList.personDetail}"> 
         <f:param name="personId" value="#{person.id}"/> 
         <f:param name="type" value="#{person.personType.personType}"/> 
    </h:commandLink> 
    ... PersonList.personDetail()
    public String personDetail() { 
         FacesContext context = FacesContext.getCurrentInstance(); 
         Map requestParams = context.getExternalContext().getRequestParameterMap(); 
         String type = (String) requestParams.get("type"); 
         if (PersonType.NATURAL.getPersonType().equals(type)) { 
            return "detailNatural"; 
         } else { 
             return "detailLegal"; 
    }  navigation rules
    <navigation-rule> 
         <from-view-id>/personList.jspx</from-view-id> 
          <navigation-case> 
             <from-outcome>detailNatural</from-outcome> 
             <to-view-id>/person/naturalPersonDetail.jspx</to-view-id> 
             <redirect/> 
         </navigation-case> 
        <navigation-case> 
             <from-outcome>detailLegal</from-outcome> 
             <to-view-id>/person/legalPersonDetail.jspx</to-view-id> 
             <redirect/> 
         </navigation-case> 
    </navigation-rule> 
    <managed-bean> 
         <managed-bean-name>PersonDetail</managed-bean-name> 
         <managed-bean-class>cz.kiv.jet.managedbean.PersonDetail</managed-bean-class> 
         <managed-bean-scope>request</managed-bean-scope> 
         <managed-property> 
             <property-name>personId</property-name> 
             <value>#{param.personId}</value> 
         </managed-property> 
    </managed-bean> 
    ...

    A redirect indeed creates a new request. So you need to store it in something broader than the request scope, like session scope (which may have much more impact on the user experience), or just stick using forward.

  • Redirecting feed from Garageband/Gcast

    cannot for the life of me figure out how to put the iTunes <itunes:new-feed-url> tag into my xml at Garageband/Gcast. How do you access and change the xml code? Websites like these only allow a person to change their podcast through forms, and they don't have an option to add a redirect.
    I have tried to contact them and researched this issue extensively to no avail.
    Any help would be greatly appreciated!!
    Thanks!
    Jamie

    There is no way to download the feed from my old host. That is the problem I am having. I made the huge mistake of hosting the original feed through a free service, and I have no access to the xml code. Therefore I cannot add the necessary redirect tag. It just isn't possible.
    I am beginning to think I am just screwed here. This really ***** as it will hurt to lose my rank in iTunes that I have worked so hard for. I guess my only option is to broadcast the new feed via a new podcast episode. Hopefully people will be willing to take the extra steps to subscribe to the new feed.
    Bummer. : (
    Thanks so much for at least trying to help me out. If anyone has any more ideas, I would be most appreciative.
    Thanks,
    Jamie

  • Redirecting feed from Garageband

    I cannot for the life of me figure out how to put the iTunes <itunes:new-feed-url> tag into my xml at Garageband. How do you access and change the xml code?
    Any help would be greatly appreciated!!
    Thanks!
    Jamie

    There is no way to download the feed from my old host. That is the problem I am having. I made the huge mistake of hosting the original feed through a free service, and I have no access to the xml code. Therefore I cannot add the necessary redirect tag. It just isn't possible.
    I am beginning to think I am just screwed here. This really ***** as it will hurt to lose my rank in iTunes that I have worked so hard for. I guess my only option is to broadcast the new feed via a new podcast episode. Hopefully people will be willing to take the extra steps to subscribe to the new feed.
    Bummer. : (
    Thanks so much for at least trying to help me out. If anyone has any more ideas, I would be most appreciative.
    Thanks,
    Jamie

  • Error(1): java.lang.ClassNotFoundException: oracle.cabo.ui.jsps.tags.ListOf

    Iam getting the following errors when I try to compile my jsp. But when I compile it om another pc it works fine
    Error(1): java.lang.ClassNotFoundException: oracle.cabo.ui.jsps.tags.ListOfValuesTEI
    Error(1): Unable to load taghandler class: http://java.sun.com/jstl/core
    Iam using jdev IDE 9.0.3.10.35
    below is the code Iam trying to compile. Is it a bug Iam experiencing or faulty code??????
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <HTML>
    <HEAD>
    <TITLE>  </TITLE>
    <LINK rel="stylesheet" type="text/css" href="../style/sheet.css">
    <script language="JavaScript">
    function confirmDelete(id) {
      var ans = confirm("Weet U zeker dat U deze allocatie wilt verwijderen?");
      if (!ans) return;
      window.document.SelectionForm.action="../servlet/colossus.servlets.DeleteAllocation";
      window.document.SelectionForm.selectedID.value=id;
      window.document.SelectionForm.url.value=document.location;
      window.document.SelectionForm.submit();
    function modify(id) {
      url = escape(window.document.location);
      window.document.location="../servlet/colossus.servlets.ModifyAllocation?allocID="+escape(id)+"&url="+url;
    </script>
    </HEAD>
    <BODY topmargin=10 leftmargin=15 >
    <table border="0" cellPadding="5" cellSpacing="0" width="472">
      <tr>
        <td bgcolor="#ffffff">     
          <table border="0" cellPadding="2" cellSpacing="0" width="462">
            <tr>
              <td class="kopbalk" width="440"><P class="kop"> <b>Allocaties bekijken</b></P></td>
              <td width="22"></td>
            </tr>
            <tr>
              <td width="440" height="10"></td>
              <td width="102" height="10"></td>
            </tr>
            <tr>
              <td width="440">
                <table width="440" cellpadding="2" cellspacing="0" border="0">
             <form name="SelectionForm" action="../servlet/colossus.servlets.ShowAllocations" method="get">
               <input type="hidden" name="selectedID" value="" />
               <input type="hidden" name="url" value="" />
               <c:if test="${!(empty errorMsg)}">
               <tr>
                 <td colspan="2" class="error"><p><c:out value="${errorMsg}" /></p></td>
                  </tr>
                  </c:if>
                  <tr>
                    <td width="130"><P>Van <FONT size="1">(dd-mm-jjjj)</FONT></P></td>
                    <td width="310"><P>
              <INPUT type="text" name="startDay" size="2" maxlength="2" value="<c:out value='${param.startDay}'/>"> -
              <INPUT type="text" name="startMonth" size="2" maxlength="2" value="<c:out value='${param.startMonth}'/>"> -
              <INPUT type="text" name="startYear" size="4" maxlength="4" value="<c:out value='${param.startYear}'/>"> om
              <INPUT type="text" name="startHour" size="2" maxlength="2" value="<c:out value='${param.startHour}'/>"> :
              <INPUT type="text" name="startMinute" size="2" maxlength="2" value="<c:out value='${param.startMinute}'/>">
              </P></td>
                  </tr>
                  <tr>
                    <td width="130"><P>Tot <FONT size="1">(dd-mm-jjjj)</FONT></P></td>
                    <td width="310"><P>
              <INPUT type="text" name="endDay" size="2" maxlength="2" value="<c:out value='${param.endDay}'/>" > -
              <INPUT type="text" name="endMonth" size="2" maxlength="2" value="<c:out value='${param.endMonth}'/>"> -
              <INPUT type="text" name="endYear" size="4" maxlength="4" value="<c:out value='${param.endYear}'/>"> om
              <INPUT type="text" name="endHour" size="2" maxlength="2" value="<c:out value='${param.endHour}'/>"> :
              <INPUT type="text" name="endMinute" size="2" maxlength="2" value="<c:out value='${param.endMinute}'/>">
              </P></td>
                  </tr>
                  <tr>
                    <td width="130"><P>Vestiging</P></td>
                    <td width="310"><P>
                      <SELECT name="vestigingID">
                  <c:forEach items="${offices}" var="office">
                          <option value="<c:out value='${office.ID}'/>" <c:out value="${office.selected}" /> >
                            <c:out value="${office.name}"/>
                          </option>
                  </c:forEach> 
                      </SELECT>
                    </P></td>
                  </tr>
               <tr>
                 <td colspan="2" width="440">
                <div align="center"><input type="submit" value="- Ok -"></div>
              </td>
               </tr>
             </form>
                </table>
              </td>
              <td width="102"> </td>
            </tr>
            <tr>
              <td width="440"> </td>
              <td width="102"> </td>
            </tr>
            <tr>
              <td colspan="2">
                <table width="542" cellpadding="0" cellspacing="0" border="0">
    <!--// begin van de tabel //-->
    <c:if test="${!(empty allocs)&&(empty errorMsg)}">
    <TABLE border="0" cellpadding="1" cellspacing="1" bgcolor="#000000" width="572">
      <TR>
        <TD bgcolor="#ffffff" width="30"><P> </P></TD>
        <TD bgcolor="#ffffff" width="80" align="center"><P><B>Verdieping</B></P></TD>
        <TD bgcolor="#ffffff" width="80" align="center"><P><B>Ruimte</B></P></TD>
        <TD bgcolor="#ffffff" width="80" align="center"><P><B>Van</B></P></TD>
        <TD bgcolor="#ffffff" width="80" align="center"><P><B>Tot</B></P></TD>
        <TD bgcolor="#ffffff" width="200" align="center"><P><B>Omschrijving</B></P></TD>
      </TR>
      <c:forEach items="${allocs}" var="alloc">
        <TR>
          <TD bgcolor="#ffffff" width="30" align="center">
            <a href="javascript:modify('<c:out value="${alloc.ID}" />')"><IMG src="../images/edit.gif" border="0" alt="Allocatie wijzigen"></a><a href="javascript:confirmDelete('<c:out value="${alloc.ID}" />')"><IMG src="../images/delete.gif" border="0" alt="Allocatie verwijderen"></a>
          </TD>
          <TD bgcolor="#ffffff" width="80" align="center"><P><c:out value="${alloc.floorNumber}" /></P></TD>
          <TD bgcolor="#ffffff" width="80" align="center"><P><c:out value="${alloc.roomNumber}" /></P></TD>
          <TD bgcolor="#ffffff" width="80" align="center"><c:out value="${alloc.shortStartDate}" /><br>
                                                          <c:out value="${alloc.startTime}" /></TD>
          <TD bgcolor="#ffffff" width="80" align="center"><c:out value="${alloc.shortEndDate}" /><br>
                                                          <c:out value="${alloc.endTime}" /></TD>
          <TD bgcolor="#ffffff" width="200" align="left"><P><c:out value="${alloc.description}" /></P></TD>
        </TR>
      </c:forEach>
    </TABLE>
    </c:if>
    <!--// einde van de tabel //-->
                </table>          
              </td>
            </tr>
                       </TABLE>
        </td>
      </tr>
    </table>
    </BODY>
    </HTML>

    Olival,
    Is your application using UIX ? Seems like it from the error. The class you are getting the error on
    Erro: java.lang.ClassNotFoundException: oracle.cabo.ui.jsps.tags.RenderingContextTEI"
    is part of uix2.jar, which is available in JDev environment, but not under standalone
    OC4J. Hence the error.
    -Prasad
    Hi,
    I'm getting this error when trying to run my struts app:
    "500 Internal Server Error
    OracleJSP: oracle.jsp.parse.JspParseException: Nzmero da Linha 1, <%@ taglib uri="/WEB-INF/struts-logic.tld"
    prefix="logic" %>
    Erro: java.lang.ClassNotFoundException: oracle.cabo.ui.jsps.tags.RenderingContextTEI"
    The error msg is localized to my country (Brazil), so "Nzmero da Linha" translates to "Line Number", and "Erro" means "Error".
    The error comes from the 1st page called by the application (index.jsp), wich uses the struts redirect tag.
    Strange enough, this error only shows on OC4J 9.0.3 stand-alone (got the latest version today from OTN), but when calling from JDeveloper 9.0.3 (production), using the embedded OC4J, everything's ok.
    Has anybody experienced the same error ?
    Tnxs,
    Olival Jr.

  • Javascript Disabled Redirect?

    Background:
    I am using IIS 5 with Microsoft Access DB. Im coding
    ASP/Javascript.
    I currently have a login.asp page which handles Username and
    Password Authentication. No Javascript functions are on this page.
    I do have a script that detects if their browser has javascript
    disabled.
    i.e.
    <noscript><p><span style="color:#FFFFFF;
    font-weight:bold; padding:2px; background-color:#FF0000">This
    site requires javascript to be enabled.<br />If you do not
    enable javascript in your browser settings, some functions will not
    work properly.</span></p></noscript>
    </div>
    This is all fine and dandy but it doest affect the user from
    proceeding once they put in their username and password. Once they
    are authenticated, the user is redirected to a index.asp page.
    After my login.asp page, I have several pages within my site
    which I do use javascript for some of my functions.
    So, how do I prevent my user from proceeding past my
    login.asp page if their browser has javascript disabled.
    I thought of changing my login.asp to have the NOSCRIPT tag
    to have a redirect to another login1.asp page, but if a malicious
    attacker looked at the source page of login.asp, it would no how to
    bypass my NOSCRIPT redirect tage and go straight into my login1.asp
    page thus still enable them to login in with javascript disabled.
    Should I recode my login page to use a javascript function
    before continuing? if so what would you suggest?
    Thanks in advance.

    >And that's my whole point: JS yes - for additional
    features or to
    >improve the usability, but not a requirement to make the
    site work.
    Yes, I agree 100%. The problem is that in most cases by
    providing the extra
    functionality, you automatically make the site reliant on it.
    Either that or
    the user experience is crap because the site appears to be
    broken. I think
    you really have to decide to go with JS or not go with JS and
    adhere to your
    choice throughout the entire site.
    "Michael Fesser" <[email protected]> wrote in message
    news:[email protected]...
    > .oO(Pat Shaw)
    >
    >>Sometimes, for certain functionality, there is no
    alternative but to use
    >>Javascript Michael.
    >
    > IMHO most really important things can also be done with
    server-side
    > scripts if JS is not available. It will often be much
    slower and more
    > complex, but it's possible. I'm not talking about such
    stuff like "Spry"
    > effects, scrolling or fading images and such - these are
    only eye candy.
    > If they are not there, the site can still work. It's the
    most basic
    > functionality of a site that shouldn't entirely rely on
    JS, because
    > there's always a non-JS alternative (at least I haven't
    seen anything
    > yet that would not have been possible in a similar way
    without JS).
    >
    >>If you need that sort of functionality then you MUST
    use
    >>Javascript. Besides, there are plenty of very large
    and established sites
    >>that make good use of Javascript. If you write off
    Javascript then you
    >>also
    >>write off related technologies such as AJAX.
    >
    > No question, AJAX can make many things much more
    convenient and easier
    > to use, but after all it just sends another request to
    the server and
    > fetches some data. Nothing special. Server-side scripts
    could often do
    > the same work and already deliver the final page.
    >
    > Take for example some map services like Google Maps
    (even if this is a
    > rather bad example). It's quite common to use AJAX
    techniques, so the
    > user is able to seamlessly drag the whole map around,
    while the script
    > automatically loads the next required tiles in the
    background. Quite
    > nice of course. But this is nothing that would really
    require JS. The
    > better services also provide a non-JS alternative - you
    just have to
    > click a link to move the map one or more tiles in any
    direction. Then
    > the server sends the new page back. Not as nice and
    convenient as the
    > JS-version, but still completely usable.
    >
    > And that's my whole point: JS yes - for additional
    features or to
    > improve the usability, but not a requirement to make the
    site work.
    >
    > YMMV.
    >
    > Micha

  • Using redirect /

    Hi,
    I tried using the <redirect />-Tag in the faces-config.xml. The result is,
    that a page, which was the result of an post request, is "changed"
    to a page, which was the result of an get request.
    I also understand the post/redirect/get-Pattern, which was used
    behind that. But what exactly happens in jsf, when I use the <redirect />-Tag?
    Thanks,
    Andy

    Hi Andy
    as i understand, JSF performs an HTTP redirect and calls
    responseComplete() on the FacesContext instance for the current request.
    Cheers,
    Matthias

  • Redirecting, But Not Redirecting

    Hello I have redirected my podcast for good two months now to my new webhost with the
    <itunes:new-feed-url>http://www.myfeedurl.com/rss.xml</itunes:new-feed-url> tag
    but the itunes page is not being redirected BUT, my new podcast is being downloaded in iTunes itself.  As not sure how to go about fixing this I thought I ask here if anybody can give their insight. Also I have one more questiob about the tag above. Will iTunes switch the RSS Feed from the old one feed to the new feed permanently after some time and the I don't have access to the old host anymore? This was never really answer in anything I have readed.

    If you have entered the redirection tag correctly everyone who subscribes will be automatically and permanently redirected to the new feed as soon as they check the feed, and the Store will redirect the next time it checks the feed, which can take a couple of days.
    I can't comment any further than that without being able to examine the evidence: would you like to post the URLs of both feed and of the Store page (you can find the latter by right-clicking on the podcast image and choosing 'Copy URL').

  • ITunes/Podcast not responding

    So, every time I've tried bringing up iTunes for the last 2 hours, the program comes up, starts to download some podcast updates, and immediately stops responding -- leaving me no option but to close it. I tried deleting it and reinstalling, but the problem still persists, freezing before I can even try to do anything about it. I can usually get it to start playing one song, but the second it starts downloading podcast updates, it freezes.
    Anyone know of any kind of solution?

    The iTunes Store caches feeds; when a feed goes dead the Store continues to display the episodes in the feed as it last saw it and will do so until the feed is restored or the podcast is taken down.
    I don't know how you've managed to do it, but as you say iTunes is now looking for a feed at the URL of your web page - there is a page there but as it's not a feed iTunes can't make any sense of it. The actual feed doesn't contain the redirection tag which could have caused this.
    Your best bet - and I can't promise it will work - is to email them at [email protected] - give them the URL of your podcast:
    http://itunes.apple.com/gb/podcast/bournemouth-vineyard-church/id361822953
    and ask them to direct it to the feed URL.

  • How can I promote my book in the ibook store?

    Hello, I recently submitted an Ibook for review which got accepted but would like to know what would the requirements be to promote the book in the iBook Store and what assets would I need?
    Thanks
    Basil

    You must add the itunes redirect tag within the <channel> element of your feed. Its doubtful that a 3rd party app would support this tag, but its possible. If you have access to the actual xml file, you can add the redirect feed manually using any text editor.
    <itunes:new-feed-url>http://yournewdomain.com/podcast.xml</itunes:new-feed-url>
    The itunes redirect tag simply tells iTunes users where your podcast has been moved to, and updates their local settings accordingly. The next time they visit your podcast, they will go directly to your new feed specified in the redirect tag.
    For non-iTunes users, the itunes redirect tag doesn't help. Thats where the 301 redirect comes in, however it is a bit complicated depending on the type of host your podcast is on. If you don't want to tackle the 301 redirect, keep reading.
    One method of updating non-iTunes users...if you can still post an episode to your old feed, then one option is to post a text file that directs people to your new feed. You could also post a brief audio clip stating the same thing. Leave this episode up for a couple of weeks and then kill your old feed.
    <item>
    <title>PODCAST UPDATE: Please Read!</title>
    <link>http://yournewdomain.com/newfeed.txt</link>
    <enclosure url='http://yournewdomain.com/newfeed.txt' type='text/plain' />
    </item>

  • How can I change my URL in the iTunes store

    I recently got approved by iTunes but have since changed the URL. How can I notify iTunes of this and get it changed as quickly as possible...thanx

    You must add the itunes redirect tag within the <channel> element of your feed. Its doubtful that a 3rd party app would support this tag, but its possible. If you have access to the actual xml file, you can add the redirect feed manually using any text editor.
    <itunes:new-feed-url>http://yournewdomain.com/podcast.xml</itunes:new-feed-url>
    The itunes redirect tag simply tells iTunes users where your podcast has been moved to, and updates their local settings accordingly. The next time they visit your podcast, they will go directly to your new feed specified in the redirect tag.
    For non-iTunes users, the itunes redirect tag doesn't help. Thats where the 301 redirect comes in, however it is a bit complicated depending on the type of host your podcast is on. If you don't want to tackle the 301 redirect, keep reading.
    One method of updating non-iTunes users...if you can still post an episode to your old feed, then one option is to post a text file that directs people to your new feed. You could also post a brief audio clip stating the same thing. Leave this episode up for a couple of weeks and then kill your old feed.
    <item>
    <title>PODCAST UPDATE: Please Read!</title>
    <link>http://yournewdomain.com/newfeed.txt</link>
    <enclosure url='http://yournewdomain.com/newfeed.txt' type='text/plain' />
    </item>

  • Can't figure out URL's

    I am having difficulty understanding something...
    I set up a small application using Spring MVC.
    Here is what's in web.xml:
          <servlet>
                <servlet-name>MySpringServlet</servlet-name>
                <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>MySpringServlet</servlet-name>
              <url-pattern>/*.php</url-pattern>
         </servlet-mapping>I am using the Resin server and mapped the application URL to localhost:8080/MyApp
    I have a welcome file: index.jsp and all it does is redirect the request to a new URL, because I am serving the rest of my JSP's from under WEB-INF.
    By the way, is there value in having the JSP under WEB-INF?
    Back to my issue, in index.jsp I redirect like this:
         <body>
              <c:redirect url="/HomePage.php" />
         </body>The Spring controller grabs the "*HomePage.php*" part of the redirect even though when I print the requestURI it comes out as MyApp/HomePage.php
    It then takes me to HomePage.jsp, and this page has a form, but for some reason, in the action attribute of the form, I can't put */processForm.php* - then the container cannot find it.
    Instead, I have to say action="/MyApp/processForm.php".
    Why is it possible to just say /HomePage.php in the redirect from index.jsp, but in the form I must put the MyApp in front?
    Thanks.

    Why is it possible to just say /HomePage.php in the redirect from index.jsp, but in the form I must put the MyApp in front?The tricky bit to get your head around is that "/" can mean different things at the server end and client end.
    At the server end (for RequestDispatcher purposes) "/" refers to your context root - ie: http://localhost:8080/MyApp/
    At the client end, / refers to http://localhost:8080/. The client knows nothing about the "context root" at all.
    So any urls that you generate to your page that use absolute references have to take the context path into account.
    This affects links, redirects, form actions etc - anything that will be executed by the client.
    To answer your question, the difference is the tags you are using.
    The <c:redirect> tag will automagically ADD the application name onto the front of a url.
    So <c:redirect url="/HomePage.php"> will ACTUALLY generate a redirect to /MyApp/HomePage.php. Its part of the tags functionality to do this.
    I am presuming you have
    <form action="/processForm.php">
    Because this is just template text, it won't take the context root into account. So possible solutions to the issue are:
    // hard code it
    <form action="/MyApp/processForm.php">
    // add it onto every url dynamically:
    <form action="<%= request.getContextPath() %>/processForm.php">
    or
    <form action="${pageContext.request.contextPath}/processForm.php">
    // use a tag library to do it for you
    <form action="<c:url value='/processForm.php'/>">
    // use a framework to generate a form tag
    <stripes:form .... >Hopefully that helps you understand the issue a bit more
    cheers,
    evnafets

Maybe you are looking for

  • Posting error in doing goods receipt

    Hi,, I'm getting an error when try to do a goods receipt for 21.01.2010 "Posting only possible in periods 2009/03 and 0000/00 in company code 1000" I would need to change the posting date?but i'm not sure how to do and where ?please detailed me... Th

  • Shopping cart edit in SRM 5.5

    Hi, I am not able to edit a shopping cart in SAP SRM 5.5 Shopping cart is not yet approved. its in the approval stage. Regarding security settings the in BBP_WFL_SECURITY its at LOW level. Also the BADI is BBP_WFL_SECUR_BADI is active and to deactiva

  • Table of contents not linking correctly

    Hi, I created a table of contents using a header I created called Chapter Titles. It formatted everything correctly and lists the correct page numbers next to it. The only problem is that when I click on the numbers it sends me to the previous chapte

  • Why do we see "Course Image" on Public Sites?

    Whenever we fail to provide an image for a channel/collection, iTunes U comes up with a placeholder image instead.  That's the good part.  The bad and confusing (to Contributors) part is that this placeholder image says, "Course Image" which I assume

  • UCES - 6.0

    Experts, We have UCES 6.0 installed and done successful the Connection TEST successfully. When I try to access the url http://<hostname>:51000/bdisu it does prompt me the user name and password. When I enter a valid user name and password - it prompt