Error message... operation has timed out

My new ipod for my daughter will not show up in itunes.  It says i need to download the latest version (10.5) of itunes. Every time I attempt to download itunes 10.5, I get the error message "the operation has timed out" itunes could not be downloaded. How do I download the latest version? I want to put songs on my daughters new ipod. Thanks

Temporarily turn off any virus protection and firewall.

Similar Messages

  • Firefox won't load any websites but other browsers connect with no problem. error message: connection has timed out. deleting browsing history did not work.

    I also tries removing firefox and reinstalling it - still did not work.
    I checked - the firewall wasn't blocking firefox , so it's not that.
    As far as I could find my antivirus (AVG) also was not causing the problem.
    I'm at a complete loss - any ideas what has gone wrong?

    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''Network.'''
    Look for '''Configure How Firefox Connects''' and press the '''Settings''' button.
    Check the settings.
    Some problems occurs when your Internet security program was set
    to trust the previous version of Firefox, but no longer recognizes your
    updated version as trusted. Now how to fix the problem: To allow
    Firefox to connect to the Internet again;
    * Make sure your Internet security software is up-to-date (i.e. you are running the latest version).
    * Remove Firefox from your program's list of trusted or recognized programs. For detailed instructions, see
    '''[https://support.mozilla.org/en-US/kb/configure-firewalls-so-firefox-can-access-internet Configure firewalls so that Firefox can access the Internet.]''' {web link}

  • The operation has timed out

    Hello Forum,
    I was running a report that was built on report builder at some point an error message of the operation has timed out will come up.
    I have set the time out to 0 values and more than 600 seconds too.
    On SQL the report ran within 6 minute.
    Will be glad for quick response.
    Thank you.
    Disu Ridwan

    Hi Disu,
    I assumed that you open the report builder from the report manager or you have connectted to the report server.
    As you have mentioned that set the timeout value of the dataset didn't work. Please reference to the similer thread below to set the other time out in the configuration file and so on:
    Report Builder 2.0 / 3.0 errors out with 'The operation
    has timed out' when previewing a report saved in Report Server takes more than 10 minutes
    Steps to Resolve SSRS Timeout Issues
    "The operation has timed out" when rendering a report
    If you problem still exists, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • The operation has timed out default value too low - c# windows application

    Hello,
    I get the message that the operation has timed out when certain operations take too long, which would be any on our development/test server.
    I either need to make an asychronous call which I will investigate or to find the code that sets this value to ten minutes.
    Anybody know how to reset the value to ten minutes?
    Thanks,
    Stephanie

    The timeout is occurring on the client so it not a particular error that's being returned by the server.
    The default timeout with the EWS Managed API is 90 seconds and is set on the ExchangeService Object. You can set this to a higher value eg to set it to 5 minutes
    server.timeout = 300000;
    Why it fails ? if its overnight then Backups can be the cause eg if they are snapshotting the server or some other backup mechanism could mean the server is very busy for a time. Or any other number of specific environmental factors. This is really
    a job for your Network admin to determine with server and network monitoring. I would suggest you check the EWS.Log on the Exchange server to see what happened at that time.
    What you should do at a code level is handle the exception, I would suggest wait for 60 seconds after the exception (this will cater for most throttling issues) and then try the same request again. If it fails again after a pause then
    you generally have a larger problem.
    Cheers
    Glen

  • ServiceRequestException : The request failed. The operation has timed out

    I wrote simple client using EWS Managed API. And let it run for one night. It was working fine. But when I checked it back in the morning, I found my application stopped. I checked logs I got following exception:
    2014-01-08 01:49:05.3649 | Error | Exception while fetching mails : The request failed. The operation has timed out | MyNamespace.MyClass.myMethod
    Immediate Stack Trace
    ===================================================================================
    Microsoft.Exchange.WebServices.Data.ServiceRequestException : The request failed. The operation has timed out
    at Microsoft.Exchange.WebServices.Data.ServiceRequestBase.GetEwsHttpWebResponse(IEwsHttpWebRequest request)
    at Microsoft.Exchange.WebServices.Data.ServiceRequestBase.ValidateAndEmitRequest(IEwsHttpWebRequest& request)
    at Microsoft.Exchange.WebServices.Data.SimpleServiceRequestBase.InternalExecute()
    at Microsoft.Exchange.WebServices.Data.MultiResponseServiceRequest`1.Execute()
    at Microsoft.Exchange.WebServices.Data.ExchangeService.InternalLoadPropertiesForItems(IEnumerable`1 items, PropertySet propertySet, ServiceErrorHandling errorHandling)
    at Microsoft.Exchange.WebServices.Data.ExchangeService.LoadPropertiesForItems(IEnumerable`1 items, PropertySet propertySet)
    at MyNamespace.MyClass.myMethod() in c:\MyProject\MyClass.cs:line 190
    Inner Exception 1 : Stack Trace
    The operation has timed out
    at System.Net.HttpWebRequest.GetResponse()
    at Microsoft.Exchange.WebServices.Data.EwsHttpWebRequest.Microsoft.Exchange.WebServices.Data.IEwsHttpWebRequest.GetResponse()
    at Microsoft.Exchange.WebServices.Data.ServiceRequestBase.GetEwsHttpWebResponse(IEwsHttpWebRequest request)
    Since the Exception message did not contain error code that Exchange server usually returns like (401) Unauthorized or (403) Forbidden, I am unable to pinpoint any reason for this to occur, since the functionality worked perfectly several times before
    this exception occurred as I can check in my logs. Also my diagnostic class which runs on the occurrences of any exception immediately tried to ping exchange server and re-initialize ExchangeService object. When I checked diagnostics logs after this exception
    time for the result of diagnostics, then it was able to ping the exchange server and the ExchageServer object also initialized successfully. So I am out of any reason now. 
    The exception occurred on the last line of the following code:
    ItemView itemView = new ItemView(100, 0);
    FindItemsResults<Item> itemResults = null;
    PropertySet psPropSet = new PropertySet(BasePropertySet.IdOnly);
    itemView.PropertySet = psPropSet;
    PropertySet itItemPropSet = new PropertySet(BasePropertySet.IdOnly)
    ItemSchema.Attachments,
    ItemSchema.Subject,
    ItemSchema.Importance,
    ItemSchema.DateTimeReceived,
    ItemSchema.DateTimeSent,
    ItemSchema.ItemClass,
    ItemSchema.Size,
    ItemSchema.Sensitivity,
    EmailMessageSchema.From,
    EmailMessageSchema.CcRecipients,
    EmailMessageSchema.ToRecipients,
    ItemSchema.MimeContent
    itemResults = service.FindItems(WellKnownFolderName.Inbox, itemView);
    if (itemResults.Items.Count != 0)
    service.LoadPropertiesForItems(itemResults.Items, itItemPropSet);
    Any guesses why this could have happened? Or just some random network congestion? Am I forgetting to log some more information. Should I also log Exception.Data or something else?

    The timeout is occurring on the client so it not a particular error that's being returned by the server.
    The default timeout with the EWS Managed API is 90 seconds and is set on the ExchangeService Object. You can set this to a higher value eg to set it to 5 minutes
    server.timeout = 300000;
    Why it fails ? if its overnight then Backups can be the cause eg if they are snapshotting the server or some other backup mechanism could mean the server is very busy for a time. Or any other number of specific environmental factors. This is really
    a job for your Network admin to determine with server and network monitoring. I would suggest you check the EWS.Log on the Exchange server to see what happened at that time.
    What you should do at a code level is handle the exception, I would suggest wait for 60 seconds after the exception (this will cater for most throttling issues) and then try the same request again. If it fails again after a pause then
    you generally have a larger problem.
    Cheers
    Glen

  • Collab CopyProjectMetaData - the operation has timed out

    For the life of me, I can't get the CopyProjectMetaData to run w/o timing out. It'll work about 1 in 10 trys if that. I'm using CopyProjectContent on the same two projects successfully everytime. But CopyProjectMetaData is basically useless. Anyone?

    Hi Disu,
    I assumed that you open the report builder from the report manager or you have connectted to the report server.
    As you have mentioned that set the timeout value of the dataset didn't work. Please reference to the similer thread below to set the other time out in the configuration file and so on:
    Report Builder 2.0 / 3.0 errors out with 'The operation
    has timed out' when previewing a report saved in Report Server takes more than 10 minutes
    Steps to Resolve SSRS Timeout Issues
    "The operation has timed out" when rendering a report
    If you problem still exists, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Question about EWS - The operation has timed out

    hi everyone,
    I'm developing a solution which uses public folder database in Exchange Server to store tasks:
    - We use 1 account to access to public folder database by using EWS.
    - Currently, this public folder database contains 60000 tasks and they are being accessed by 700 users, they always have the following exception: 
    04/23/2015 09:41:15:  - The request failed. The operation has timed out
    Message :The request failed. The operation has timed out
    Source :Microsoft.Exchange.WebServices
    Stack Trace :   at Microsoft.Exchange.WebServices.Data.ServiceRequestBase.GetEwsHttpWebResponse(IEwsHttpWebRequest request)
       at Microsoft.Exchange.WebServices.Data.ServiceRequestBase.ValidateAndEmitRequest(IEwsHttpWebRequest& request)
       at Microsoft.Exchange.WebServices.Data.MultiResponseServiceRequest`1.Execute()
       at Microsoft.Exchange.WebServices.Data.ExchangeService.FindItems[TItem](IEnumerable`1 parentFolderIds, SearchFilter searchFilter, String queryString, ViewBase view, Grouping groupBy, ServiceErrorHandling errorHandlingMode)
       at Microsoft.Exchange.WebServices.Data.ExchangeService.FindItems(FolderId parentFolderId, SearchFilter searchFilter, ViewBase view, Grouping groupBy)
    Please help.
    Thanks a lot.
    Phuc

    Thanks Glen for your reply.
    Here is a code block which retrieve the number of task of some groups
    foreach (var bu in request.BusinessUnits)
    SearchFilter businessUnitFilter = new SearchFilter.IsEqualTo(BusinessUnitAliasProp, bu);//, ContainmentMode.FullString, ComparisonMode.IgnoreCase);
    SearchFilter[] filters = new SearchFilter[] { actualOwnerFilter, statusFilter, businessUnitFilter };
    var filterCollection = new SearchFilter.SearchFilterCollection(LogicalOperator.And, filters);
    GroupedFindItemsResults<Item> taskResults = this.exchangeService.FindItems(_publicFolderId, filterCollection, itemView, groupByApplication);
    if (taskResults != null && taskResults.ItemGroups != null)
    foreach (var groupItem in taskResults.ItemGroups)
    if (!dict.ContainsKey(groupItem.GroupIndex))
    dict.Add(groupItem.GroupIndex, new Dictionary<string, int>());
    if (!dict[groupItem.GroupIndex].ContainsKey(bu))
    dict[groupItem.GroupIndex].Add(bu, groupItem.Items.Count);
    Please let me know if it's too complex and might affect to the performance of Exchange Server

  • Cannot send mails to mail server. (The operation has timed out.)

    I have configured database mail in sql server 2008 r2 on my local machine.
    While testing I have observed that some of mails are not getting triggered.
    Log file shows following message-
    The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 7 (2013-04-30T10:23:57).
    Exception Message: Cannot send mails to mail server. (The operation has timed out.)
    I have wriitten on SP for snding mails which sends 94 mail to different ail
    address  out of which only 35 are getting delivered.
    Plz Assist me.

    Hi Prashant Parit,
    Please apply the latest SQL Server 2008 R2 Service Pack. And try to stop and restart SQL Server Agent.
    See similar thread:
    http://social.msdn.microsoft.com/Forums/en-US/sqltools/thread/6d3cd4ca-0a4e-4c84-bf1e-b8565c963c38.
    Thanks.
    Maggie Luo
    TechNet Community Support

  • TMG 2010 report problem Operation has timed out

    Hello.
    I stuck and i'm really need assistance
    We has a TMG 2010 RTM version and i decide to update it to latest rollup and SP (dumb head)
    So at now we have TMG 2010 SP2 rollup 4.
    Before i update TMG reports work fine but at now reports not working at all.
    When i try execute a report ( or shedule daily or weekly report) i have same issue 
    Error 31289:
    The report "Daily" could not be generated. Report Server error information: The report Daily could not be generated. Report Server error information: The operation has timed out.
    The error occurred on object 'Reports' of class 'Reports Configuration' in the scope of array 'TMG`
    I read all guidliness( include this http://www.isaserver.org/tutorials/Microsoft-Forefront-TMG-How-to-use-SQL-Server-2008-Express-Reporting-Services.html) and not find something useful.
    Settings correct, and i not changed any settings.
    And at now my ideas end i ask your help.

    That would be expected as the RAT key does not exist by default on a TMG system. You will need to create it and the subkeys referenced along with the values.
    Create as described in the article. 
    Hth, Anders Janson Enfo Zipper

  • Secure Store The Operation has Timed Out

    Hi
    When clicking the managed service application for secure store in SP 2010, we get 'The operation has timed out' error
    Any ideas?

    Check ULS log against Secure Store events. At first look, it seems to be database access/connection problem. But logs will say more.

  • While updating my iphone 4 to 5 I'm getting an error message 'connection is timed out. please check your internet settings' whereas my connection is very much active. Any suggestions!

    While updating my iphone 4 to 5 I'm getting an error message 'connection is timed out. please check your internet settings' whereas my connection is very much active. Any suggestions!

    Check to see if you anti-virus software running, that will at times interfere with the connection with the Apple server.

  • I can't connect my ipad air to my computer. It comes up with the message  'connection has timed out'. I use windows vista. Please help, I want my music catalogue on my ipad. Thanks

    I can't connect my ipad air to my computer. It comes up with the message  'connection has timed out'. I use windows vista. Please help, I want my music catalogue on my ipad. Thanks

    Have you updated your iTunes? iOS7 requires at least iTunes 11.

  • I can't upgrade my iPhone 3GS to software version 5.0.1, I get an error saying 'Network has timed out'

    I can't upgrade my iPhone 3GS to software version 5.0.1, I get an error saying 'Network has timed out'

    If on Windows...
    Try temporarily disabling your firewall and antivirus software and try again...
    See here for Connection Issues
    http://support.apple.com/kb/TS1379
    From Here
    http://www.apple.com/support/itunes/troubleshooting/

  • I'm trying to sync my iPhone 5 and keep getting error message "Device is timed out", can anyone help me please?

    I'm trying to sync my iphone 5s with itunes and keep getting error message "Device is timed out", can anyone help me please?

    Try here first:
    iTunes: Error 13019 during sync
    Then here:
    Help Unknown Error 13019 (Updated)

  • Why I keep getting Error: "Connection attempt has timed out, please verify internet connectivity". I'm using Windows 8.

    Why I keep getting Error: "Connection attempt has timed out, please verify internet connectivity". I'm using Windows 8. 

    Check the time and date, updates with apple' time servers
    https://discussions.apple.com/docs/DOC-3046

Maybe you are looking for

  • Can not export data from form tracker

    Hi there,      I have set up a lovely form for collecting data. It all comes into the Adobe Tracker and the Responses file fine.      What i wish to do is export data from the responses file into another format. I should be able to do it from the Exp

  • Exchange 2010 accepted domain and email address policy

     So I need some help as to which accepted domain is right for us. We are a single forest single domain that is subbed to a parent domain. sub.domain.com We run our own exchange 2010 separate from domain.com.  We want all mail to show up as @domain.co

  • 848P Neo (SM Bus Controller) is not there?

    Can anyone help me, I am on an MSI 848P using realtek ethernet. I have tried using driver utility cd but cant find anything on SM bus controller. Tried My os xp cd and it couldnt find the drivers. My comp is a p4 2.6 ghz 512 ddram ATI 128 9600 graph

  • Problem with Adobe Audition

    I would like to ask for help. I downloaded Adobe Audition. I instaled it without problems but than, when I wanted to open the program, it gave me this: "Please sign in with your Adobe ID to use your trial of Adobe.." bud when I give "Sign in" it will

  • How to use technical names in ecatt's

    Hi All I am functional MM consultant, right now i am working on ecatts'. In ecatts in pattern tab in all commands in command there are various technical names. Now i want to use these technical names in ecatt's, how do i use them or where do i find t