I get this error (-1  ) when uploading my podcast to itunes

Hey everybody...I made my podcast in garageband and have exported it to my iweb page here
http://web.mac.com/questpoetics/QuestPoeticsSite/Podcast/Podcast.html
It's up and running...When I made that page in iweb, I then selected the option (in iweb) to send podcast to itunes...When it goes to the screen to "submit podcast url" I give it and press continue...After doing that I then get this message...."We had difficulty reading this feed. Bad http code -1"
What the? If yo u have and answer please help...
thanks and here's screenshot of what I'm talking about....
http://web.mac.com/questpoetics/QuestPoeticsSite/checking.......html
Also when I hit the "suscribe" button on my iweb page I get this error on the page "Not enough Memory" Here's a pic of that
http://web.mac.com/questpoetics/QuestPoetics_Site/..html
I have 2 gigs of memory on my mac?

Go through all the threads here
and post back whether that helps in solving your problem.
Mathan 

Similar Messages

  • I get this error message when i try to install iTunes on windows 7.PLEASE HELP...

    there is a problem with this windows installer package.a program required for this install to complete could not be run.contact your support personnel or package vendor
    can't seem to find an answer for this anywhere.

    id just like to add to this again.after spending the last 5 hours trying to solve this and getting no acurate help from either the apple website or microsoft website i was given the answer not by one of the many computer geeks on the internet who tell you to delete this,delete that,download this or that etc etc but by someone in the same boat as me who stumbled on it by chance.
    Solution...simply click START - ALL PROGRAMES - APPLE SOFTWARE UPDATE
    this will prompt you to update a file that makes your installer more compatible.click yes.once this is done a list will appear with a number of apple programes available for download.iTunes is on the list click that and it will install the latest version for you,job done.It really is that easy at last!!!

  • I am getting this error while file uploading

    Hi!
    I am getting this error while file uploading,I can't find any solution.
    SRVE0026E: [Servlet Error]-[org.apache.commons.fileupload.FileUpload: method setSizeMax(I)V not found]: javax.servlet.ServletException: org.apache.commons.fileupload.FileUpload: method setSizeMax(I)V not found
    at com.honeywell.sdm.base.controller.SDMActionServlet.service(SDMActionServlet.java:75)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
    at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
    at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:116)
    at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:186)
    at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
    at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:618)
    at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:439)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)
    Please help me.I have attached the bean,action ,jsp pages
    uploadInfo.jsp
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <html:html>
    <HEAD>
    <script>
    function submitting(){
    document.uploadForm.operation.value = "uploadOrgAdj";
    document.uploadForm.action = "/uploadRecAction.do";
    document.uploadForm.submit();
    </script>
    </HEAD>
    <body>
    <html:form action="/uploadRecAction" method="post" enctype="multipart/form-data">
    Select the .xls File to upload data
    <html:file property="fileName"></html:file>
    <html:hidden property="operation" value=""/>
    <html:button property="btn" value="Submit" onclick="submitting()"></html:button>
    </html:form>
    </body>
    </html:html>
    uploadAdjForm :
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.upload.FormFile;
    public class uploadAdjForm extends ActionForm{
    private FormFile fileName;
    * @return
    public FormFile getFileName() {
    System.out.println("getFileName"+fileName);
    return fileName;
    * @param string
    public void setFileName(FormFile string) {
    System.out.println("setileNmame"+string);
    fileName = string;
    Action:
    public class uploadFinancialAdjAction extends DispatchAction{
    public org.apache.struts.action.ActionForward uploadOrgAdj(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws Exception {
    String sForward = "UploadInfo";
    HttpSession session = request.getSession();
    String sStartIndex = null;
    String sEndIndex = null;
    try
    uploadFinancialAdjForm UploadForm=(uploadFinancialAdjForm)form;
    System.out.println(UploadForm.getFileName().getContentType().toString());
    String file=UploadForm.getFileName().toString();
    uploadFinancialAdjManager businessManager = new uploadFinancialAdjManager();
    ArrayList fileName = new ArrayList(); fileName = businessManager.getOrgAdjDetails(file);
    boolean isMultipart = FileUpload.isMultipartContent(request);
    if(isMultipart){
    // Create a new file upload handler
    DiskFileUpload upload = new DiskFileUpload();
    // Parse the request
    List items = upload.parseRequest(request);
    //Process the uploaded items
    Iterator iter = items.iterator();
    while (iter.hasNext()) {
    FileItem item = (FileItem) iter.next();
    if (item.isFormField()) {
    //processFormField(item);
    if(item.getFieldName().equalsIgnoreCase("txtStartIndex")){
    sStartIndex = item.getString();
    else if(item.getFieldName().equalsIgnoreCase("txtEndIndex")){
    sEndIndex = item.getString();
    uploadFinancialAdjForm UploadForm=(uploadFinancialAdjForm)form;
    String file=UploadForm.getFileName().toString();
    uploadFinancialAdjManager businessManager = new uploadFinancialAdjManager();
    ArrayList fileName = new ArrayList();
    fileName = businessManager.getOrgAdjDetails(file);
    }else{
    if(item.getName()!=null && !item.getName().toUpperCase().endsWith(".XLS")){
    throw new Exception("Please browse an excel file and Upload");
    session.setAttribute("fileItem",item);
    }//end of while
    session.setAttribute("startIndex",sStartIndex);
    session.setAttribute("endIndex",sEndIndex);
    request.setAttribute("FileUploadStatus","true");
    else{
    throw new Exception("Error:Form is not multipart");
    catch(Exception e)
    System.out.println(e);
    return mapping.findForward(sForward);
    }

    Plz answer for my question

  • I am getting this error message when trying to download itunes on windows 7 32 bit:  microsoft.vc80.crt.type="win32".version="8.0.907276195".publickeytoken="1p86369 ale18e36" Hresult: 0x800736fd

    I am getting this error message when trying to download itunes on windows 7 32 bit:  microsoft.vc80.crt.type="win32".version="8.0.907276195".publickeytoken="1p86369 ale18e36" Hresult: 0x800736fd
    Can someone please Help?

    I found htis other post https://discussions.apple.com/thread/3401328?start=0&tstart=0
    I also found this in another post
    These ones are typically caused by underlying problems on the PC that also often cause Windows Updates to fail to install. If we can fix the Windows Update trouble, we can usually get the iTunes trouble cleaned up en passant.
    Go into your Windows update and try to check for new updates. If updates install, stock up on the ones you're behind on, restarting the PC if requested to do so. After the restart, try installing iTunes again. Does it go through this time for you?
    If windows updates fail to install, go into your Update History and doubleclick the failures. What alphanumeric codes appear for you? (For example, 8007000B.)

  • I get this error message when I try to back up my laptop:  Time machine could not complete the backup.  The backup disc image "/Volumes/Data/Lou Ann Buesing's Mac Book Pro. sparse bundle is already in use.  Anyone know how to fix it?

    I get this error message when I try to back up my laptop:
    ' Time machine could not complete the backup.  The backup disc image "/Volumes/Data/Lou Ann Buesing's Mac Book Pro. sparse bundle' is already in use. "
    Anyone know how to fix it?

    Reboot the TC.. Sometimes you need to reboot the whole network.
    This is what comes of Lion and then made worse in Mountain Lion of Apple not spending enough time to fix the bugs.
    Read C12 in pondini.
    http://pondini.org/TM/Troubleshooting.html
    C17 can be related I think.

  • Why do I get this error message when I open Organizer in Photoshop Elements 11 "Elements Organizer has stopped working"? My only option is to Close Program so I am effectively locked out of my photo catalogue.  I have reinstalled the program to no avail.

    Why do I get this error message when I open Organizer in Photoshop Elements 11 "Elements Organizer has stopped working"? My only option is to Close Program so I am effectively locked out of my photo catalogue. I have tried reinstalling the program but it made no difference to the error message.
    Could someone help please?  Steph

    Hi,
    Please give a try to Photoshop Elements (PSE) knowledge base. steps mentioned on this and see if it works.
    Regards
    Kishan

  • I get this error message when trying to open a catalog.

    I get this error message when trying to open a catalog. "error message: unexpected error opening catalog"

    Hi Ian.
    Thank you for answering. But I find no such file in Preferences. I think Lightroom freezes before making the preference file. Other solutions?
    Best wishes,
    Magne
    6. okt. 2012 kl. 11:43 skrev Ian Lyons <[email protected]>:
    Re: Help! Lightroom freezes after installing.
    created by Ian Lyons in Photoshop Lightroom - View the full discussion
    Have you tried trashing the Lr preference file? More details of location at http://forums.adobe.com/thread/358041?tstart=0
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4753899#4753899
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4753899#4753899
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4753899#4753899. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Lightroom by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I am getting this error message when trying to install free version of photoshop..."This application

    I am getting this error message when trying to install free version of photoshop..."This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance. What am I doing wrong?

    From the error message it appears that you are facing difficulties with the Adobe Download Assistant.  The error message is related to Adobe AIR which the Adobe Download Assistant utilizes.  Please remove your current installation of Adobe Download Assistant and reinstall.  You can find more details under the known issues section of Troubleshoot Adobe Download Assistant - http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html#main_Known_i ssues.

  • I am getting this error code when trying to open an mpeg4 "OSStatus error -12909" anyone know why. Thanks

    I am getting this error code when trying to open an mpeg4 file "OSStatus error -12909"
    Has anyone had this happen to them.
    I am new to the support community.
    Thanks

    Is this coming from a link, or from something you are trying to type in the address bar?
    Try replacing the "html" at the start with "http",
    so if you have html://somesite.edu,
    change it to http://somesite.edu.

  • Error Message regarding Facetime: I am getting this error message when I try to open Facetime on my iMac desktop "This beta version of FaceTime has expired." What does it mean? How do I get it to work again?

    I am getting this error message when I try to open Facetime on my iMac desktop "This beta version of FaceTime has expired." What does it mean? How do I get it to work again?

    The Beta version of Facetime is a free test/trial version that Apple placed on some computers in the past.  It has expired -- to get a working Facetime version back you must go to the App store and purchase "Facetime for Mac" which will cost you 99 cents. 

  • I get this error message when trying to upgrade software "The Iphone update software server could not be contacted"  Can anyone help?

    I get this error message when trying to upgrade software "The Iphone update software server could not be contacted"  Can anyone help?

    I'd start with the following document:
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server

  • Why am I getting this error message when I try to import? "The following files were not imported because they could not be read. (645)" I can see them :(

    Why am I getting this error message when I try to import? "The following files were not imported because they could not be read. (645)" I can see them
    Is was working this morning!

    Depends on your operating system
    Go to google, try typing in
    Change permissions Windows
    or
    Change permissions Mac

  • I get this error message when I try to email photos using iPhoto: Your email did not go through because the server did not reply.

    I get this error message when I try to email photos using iPhoto: Your email did not go through because the server did not reply. How can I get this to work when my internet is connected?

    Are you able to email from Mail with those two accounts?  If so:
    1 - go to iPhoto's Accounts preference pane and delete both accounts. Now add them back and try again.
    2 - a better solution IMO is to set Mail as the email client for iPhoto is iPhoto's General preference pane.  This gives you better access to your contacts, a sent copy of all emails and, if you want a layout similar to iPhoto's, photo layouts located in Mail's stationary.

  • GetLastError: 1392 - why do I get this error message when I try to uninstall Acrobat XI Pro?

    GetLastError: 1392 - why do I get this error message when I try to uninstall Acrobat XI Pro?

    Hi uckldag,
    Please try uninstalling using Acrobat Cleaner tool ( Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs ) and check.
    Regards,
    Rave

  • I keep getting this error message when I (right-click) on a photo file on my desktop to burn to a CD. I don't understand this code...does anyone?  Thanks  Ariel**:The disc can't be burned because an unexpected error occurred (error code 0x80020000).

    I keep getting this error message when I (right-click) on a photo file on my desktop to burn to a CD. I don't understand this code...does anyone?  Thanks  Ariel**:    The disc can’t be burned because an unexpected error occurred (error code 0x80020000).

    I tried every obvious solution to this problem with different types of disc (-R; +R; -RW and +RW) and the problem persisted.  Then I read about removing a hyphen in picture filenames.  I renamed all the images and bingo there were no further problems.  Apple should have solved this by now.  This error code has been reported for several years and my MacBook Pro is quite new.  Anyway, I hope this helps.  It does work.
    Piggywiggle

Maybe you are looking for

  • Got stuck at import abap phase during system installation from system copy

    hi, we have ECC6 ehp4 sp5 level system (linux + db2), due to some reasons our quality system was crashed, we took homogeneous  system copy of Production server through sapinst and now  we are restoring in Quality server through sapinst. during import

  • Sound Blaster Live 24bit External - No B

    I am hoping that someone can help me here. I am running Windows Vista Ultimate and have my PC setup purely as a Media Center machine. It has an onboard Intel 5. Sound Card that was producing average sound, but works 00%?I have since installed my Li'v

  • Performance Point Dashboard Designer filter and SSRS parameter problem

    I've created reports in SSRS, with parameters, but can't get the filter in Performancepoint to have any affect on the SSRS parameter/reports. My SSRS reports are using shared datasets I've created, with no cubes. My SSRS parameter is text data type.

  • Trendline equation from line

    I'm having more a mathematical problem than just Labview related issue. In fact it can be regarded as both. I want to predict results of a temperature rise as a logaritmic function. I can do it in Excel and there i get an formula that i can calculate

  • Auto 2 sided printing

    How do i get back the auto 2 sided printing feature in my properties setting?