Error 7 (net::ERR_TIMED_OUT): The operation timed out

Hi,
I changed from HP to Mac and I am having problems opening specific websites:
https://elearning.uol.ohecampus.com/webapps/bbgs-SSO-bb_bb60/execute/login?aid=G WGdfsQZLwUD3COgrDFFbGN0TCFY9HyHlLr3ruugp%2fDzrjxUUUqph8JuKgPvdazbmO0lvlptietNgME YslS%2b5MBmUlDPfcqyVvvcgYTkKmAwL1J6etAHBg%3d%3d
https://meine.deutsche-bank.de/
I downloaded all the latest software, but the error remains. All other pages work and my other computer opens the pages without any problems.
Any clue what (browser)system settings prevent from opening?
Thank you

Hi,
I didn't have any problems loading those sites, v10.6.7 and Safari 5.0.4.
Go to Safari / Preferences - Advanced. Click the Change Settings button next to: Proxies
That will prompt the System Preferences / Network - Proxies pane.
If any of the boxes are selected on the left, deselect, then click OK. Restart Safari. See if that makes a difference.
If Proxies aren't the issue, check Safari / Preferences - Extensions. If you have any installed, turn that off, then try Safari.
Carolyn

Similar Messages

  • Please HELP! Error: -2147012894 (80072ee2) the operation timed out on WinHttpRequest.5.1

    Hello
    I REALLY NEED SOME GUIDANCE ON THIS ERROR.
    Does anyone know why this could be happening.  I am getting the error:  -2147012894 (80072ee2) the operation timed out.  I have this code in an Excel macro.  I am sending the URL an XML string and am expecting a response
    but I am getting the time out error on the SEND.  I have tried using the SetTimeouts method, but I still get the error.    
    Could it be my machine settings?  Does WinHTTPRequest work with Excel VBA?  I am just lost at this point.  I have researched, and have seen examples of Excel VBA using WinHTTPRequest.  I do not know why I am getting
    the error.
    Your help is very much appreciated.  I really need some direction on how to resolve this issue. 
    smsemail
    Private Sub CmdGetData_Click()
    colLabel = 1
    colStreetAddress = 23
    colCity = 24
    colState = 25
    colZipCode = 26
    colZipFour = 27
    lastRow = ActiveSheet.Range("A" & Rows.Count).End(xlUp).Row
    For rw = 4 To lastRow
    If Worksheets("Sheet1").Cells(rw, colStreetAddress).Value = "" Then GoTo nextLabel:
    If Worksheets("Sheet1").Cells(rw, colCity).Value = "" And _
    Worksheets("Sheet1").Cells(rw, colState).Value = "" And _
    Worksheets("Sheet1").Cells(rw, colZipCode).Value = "" Then GoTo nextLabel:
    If (Worksheets("Sheet1").Cells(rw, colCity).Value = "" And _
    Worksheets("Sheet1").Cells(rw, colState).Value = "") Or _
    Worksheets("Sheet1").Cells(rw, colZipCode).Value = "" Then GoTo nextLabel:
    strStreetAddress = Worksheets("Sheet1").Cells(rw, colStreetAddress).Value
    strCity = Worksheets("Sheet1").Cells(rw, colCity).Value
    strState = Worksheets("Sheet1").Cells(rw, colState).Value
    strZipCode = Worksheets("Sheet1").Cells(rw, colZipCode).Value
    'Initialize variables
    strXML = ""
    Label = Worksheets("Sheet1").Cells(rw, colLabel).Value
    'Write XML header information
    Call WriteXMLHeader
    'Write address information to XML file
    strXML = strXML & "<p3:AddressCriteria>"
    strXML = strXML & "<p3:CanadianProvince></p3:CanadianProvince>"
    strXML = strXML & "<p4:LocationCityName>" & strCity & "</p4:LocationCityName>"
    strXML = strXML & "<p4:LocationCountyName></p4:LocationCountyName>"
    strXML = strXML & "<p4:LocationPostalCode></p4:LocationPostalCode>"
    strXML = strXML & "<p4:LocationStateUSPostalServiceCode>" & strState & "</p4:LocationStateUSPostalServiceCode>"
    strXML = strXML & "<p4:StreetFullText>" & strStreetAddress & "</p4:StreetFullText>"
    strXML = strXML & "</p3:AddressCriteria>"
    'Write XML footer information
    Call WriteXMLFooter
    'URI
    strURI = "https://a325.wgs.thomson.com/api/v1/person/searchResults"
    strUserID = "xxxxxxx"
    strUserPassword = "yyyyyyyy"
    Set httpRequest = CreateObject("WinHttp.WinHttpRequest.5.1")
    httpRequest.SetTimeouts 80000, 80000, 90000, 90000
    With httpRequest
    .Open "POST", strURI, False
    .SetRequestHeader "Content-type", "application/xml"
    .SetRequestHeader "Content-Length", Len(strXML)
    .SetRequestHeader "Authorization", "Basic " & EncodeBase64(strUserID & ":" & strUserPassword)
    ''.SetClientCertificate ("LOCAL_MACHINE\Personal\Certificates\WGS CA\kchin tmp dev cert")
    .SetClientCertificate ("LOCAL_MACHINE\Personal\kchin tmp dev cert")
    .Send (strXML)
    End With
    If httpRequest.Status = 200 Then
    MsgBox httpRequest.GetAllResponseHeaders
    Else
    MsgBox httpRequest.Status & ": " & httpRequest.StatusText
    End If
    MsgBox httpRequest.ResponseText
    nextLabel:
    Next rw
    MsgBox "PROCESSING HAS COMPLETED", vbOKOnly, "E-Interdiction Clear Update"
    End Sub
    Public Sub WriteXMLHeader()
    strXML = "<?xml version=" & Chr(34) & "1.0" & Chr(34) & "?>"
    strXML = strXML & "<psr1:PersonSearchRequest " & "xmlns:psr1=" & Chr(34) & "http://wgs.thomsonreuters.com/clear/api/search/1.0 " & Chr(34) & " xmlns:xsi=" & Chr(34) & "http://www.w3.org/2001/XMLSchema-instance" & Chr(34) & ">"
    strXML = strXML & "<PermissiblePurpose>"
    strXML = strXML & "<GLB>L</GLB>"
    strXML = strXML & "<DPPA>1</DPPA>"
    strXML = strXML & "<VOTER>2</VOTER>"
    strXML = strXML & "</PermissiblePurpose>"
    strXML = strXML & "<Reference>S2S Test</Reference>"
    strXML = strXML & "<Criteria>"
    strXML = strXML & "<p1:PersonCriteria"
    strXML = strXML & "xmlns:p1=" & Chr(34) & "http://wgs.thomsonreuters.com/clear/api/search/person-search/niem/1.0" & Chr(34) & ""
    strXML = strXML & "xmlns:p2=" & Chr(34) & "http://niem.gov/niem/structures/2.0" & Chr(34) & ""
    strXML = strXML & "xmlns:p3=" & Chr(34) & "http://wgs.thomsonreuters.com/clear/api/search/person-search-extension/niem/1.0" & Chr(34) & ""
    strXML = strXML & "xmlns:p4=" & Chr(34) & "http://niem.gov/niem/niem-core/2.0" & Chr(34) & ">"
    End Sub
    Public Sub WriteXMLFooter()
    strXML = strXML & "</p1:PersonCriteria>"
    strXML = strXML & "</Criteria>"
    strXML = strXML & "<Datasources>"
    strXML = strXML & "<PublicRecordCriminalAndInfractions>false</PublicRecordCriminalAndInfractions>"
    strXML = strXML & "<PublicRecordPeople>true</PublicRecordPeople>"
    strXML = strXML & "<NPIRecord>false</NPIRecord>"
    strXML = strXML & "<WorkAffiliations>false</WorkAffiliations>"
    strXML = strXML & "<RealTimeIncarcerationAndArrests>false</RealTimeIncarcerationAndArrests>"
    strXML = strXML & "</Datasources>"
    strXML = strXML & "</psr1:PersonSearchRequest>"
    End Sub
    Public Function EncodeBase64(text As String) As String
    Dim arrData() As Byte
    arrData = StrConv(text, vbFromUnicode)
    Dim objXML As MSXML2.DOMDocument
    Dim objNode As MSXML2.IXMLDOMElement
    Set objXML = New MSXML2.DOMDocument
    Set objNode = objXML.createElement("b64")
    objNode.DataType = "bin.base64"
    objNode.nodeTypedValue = arrData
    EncodeBase64 = objNode.text
    Debug.Print EncodeBase64
    Set objNode = Nothing
    Set objXML = Nothing
    End Function

    Kristin --- the C# forum may not be the place for web service questions, but the ASP.NET forums is not a correct suggestion for Karthik's question either. ASP.NET really has absolutely nothing to do with a web service. The WCF forum may have been
    a better suggestion (although you don't necessarily have to have a WCF service for RESTful web services) ... So, could you move this thread here:
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=wcf
    Karthik --- sorry I couldn't help you more, but I've seriously run out of ideas. If Kristen can't move your thread out of this Off-Topic forum, then perhaps you could re-post it to the WCF forums from the link I provided above. Perhaps I should have
    moved the thread to begin with (I can do that from the C# forum, but I cannot do it from this Off-Topic forum, sorry)
    ~~Bonnie DeWitt [C# MVP]
    http://geek-goddess-bonnie.blogspot.com

  • Unexpected error during HTTP request to voucher server The operation timed out

    I read books from my library through a system called READS. I have successfully used DE 1.0 without any problems, however, when I tried to use it recently it required me to upgrade to 1.5. Well I did so and now the books won't authorize. Here is the error message I am getting:
    Adobe DRM Error System: 5 State: 4 Class: 600 Code: 106 Message: Error on request or response from server. Please check your network connection and try again. Scroll below or view error.log for more details.
    Adobe DRM client Error: 706 Unexpected error during HTTP request to voucher server The operation timed out
    Requested URL: http://207.54.136.76/fulfill/ebx.etd?action=lend&orderid=939605378082105&bookid=ContentRe serveID:B91CC494-23AF-4C6A-9B0C-7DA050C05722-50
    Requested URL: http://207.54.136.76/fulfill/ebx.etd ?action=lend &orderid=939605378082105 &bookid=ContentReserveID:B91CC494-23AF-4C6A-9B0C-7DA050C05722-50
    --- end ---
    I have tried this multiple times with more than one book. Again, they worked just fine before I did the upgrade. I am running Vista SP1.

    Never mind, they obviously post the message on the ticket, but it doesn't send an e-mail. I will try what they indicated. Here is their response...
    Thank you for contacting Adobe Technical Support.
    I understand that you are getting "Adobe DRM Error" in Digital Editions.
    We have documented the steps to resolve this error message. Please do
    refer to this TechNote:
    Error: "Adobe DRM Error" when you activate Digital Editions or access an
    eBook
    http://www.adobe.com/go/kb402747

  • When I try to download the latest update for my ipad, I get an error message saying that the internet timed out.

    When  I try to update my ipad with the latest software, I get an error message saying that the internet timed out.  What can I do?

    The update file is around 700 megs so if you're on a slow connection it does time out. You can also look into your anti virus software or firewall, it might be blocking the file. Also if you're trying to download it over 3G it won't work. There's a 20 meg cap on all 3G downloads.

  • "An Error has Occurred. The request timed out." - OS X 10.8.2

    I have Mountain Lion OS X 10.8.2 installed on my 15" Macbook Pro (Mid-2010).
    Upon initiating Software Update, the App Store window appears > 'Checking for Updates'  > results in: "An Error has Occurred.  The request timed out." (after approximately of 30 seconds).
    This is an on-going issue.  The OS Firewall is disabled and no third party anti-virus/security software has been installed. 
    I have contacted Apple Technical Support and they advised the installation of Combo/Supplementary (10.8.2) software. 
    This was updated as advised; yet the same problem still exists!
    Can anyone assist with a 'fix' for this issue and the reason why it is occurring please?

    Will something like this work on an iPhone and where would I locate it?  My App Store was working just fine and this last week it's been slower and slower, plus difficulties with downloading and updates. Both my downloads and updates start and then pop up a 'can't install at this time'. I thought it might b my storage space so I started deleting. Well I have plenty of space now and still get same problem.
    Now over the last two days I will type in a search to reinstall the apps that I removed and the App Store tells me request timed out.
    Help please

  • The operation timed out while writing (kCFStreamStatusOpening)

    iMessage cant send files. This is what it says in the file transfer window. "the operation timed out while writing (kCFStreamStatusOpening)" Help

    Hi,
    In the past in the Mountain Lion (Messages 7.x.x) I have sent quite large photos via the iMessages account of several GBs of data.
    I have yet to do the same in Messages 8 (Mavericks) but don't expect for this to have changed.
    I do know that the Messages 8 app tends to zip some files before sending when dragged from other apps such as a Browser or iPhoto.
    I have sent a Keynote file to my iPhone in Messages 7.x.x  but this was only 334 kb
    What sort of files are you trying to send ?
    If not zipped already it may pay to try this first.
    7:21 pm      Sunday; November 3, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • When I try to dowwnload Firefox on my ASUS netbook, I get message "The operation timed out." and it doesn't load

    ASUS model Eee PC 1015 PEB
    Kaspersky
    Windows 7

    Hello,
    What have you tried so far?
    Can you try reinstalling Firefox? Uninstall it from your Control Panel > Programs and Features/Add or Remove Programs (if you want to keep your bookmarks and other information, do '''not''' delete personal information). After uninstalling, delete the Mozilla Firefox folder to remove any damaged files leftover from the uninstall (your profile is in a different location so will be unaffected by this):
    * (32 bit installation) C:\Program Files\Mozilla Firefox
    * (64 bit installation) C:\Program Files (x86)\Mozilla Firefox
    Download and reinstall the latest copy:
    * https://www.mozilla.org/en-US/firefox/all/
    For more information, see
    * http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Unable to update on macbook pro.  Error message: An error occurred.  The request timed out. (102)

    I am unable to update on MacBook Pro.  Error message" An error has occured.  The request timed out. (102)

    Try a different DNS server ..
    Quit the App Store.
    Open System Preferences > Network > Advanced > DNS
    Click + and type:
    208.67.222.222
    Click + again and do the same.
    208.67.220.220
    Click Ok.
    Relaunch the App Store and try updating your software.

  • The Opration timed out occurred on calling REST Service in Addin in windows 7 ultimate 64 bit

    Hi,
    I have created VSTO solution for Outlook Addin in Visual studio 2010.
    In that on button it will call Java REST webservice and validating the username and password.
    Evrything working fine in few systems.But it showing "The operation timed out" in WIndows 7 64 bit office 2013.
    In other windows 7 machine with office 2010 and 2007 its working perfectly.
    Below is the code :
    var responseMessage = (String)null;
                var request = WebRequest.Create(string.Concat(serviceUrl, resourceUrl)) as HttpWebRequest;
                if (request != null)
                    request.ContentType = "application/xml";
                    request.MediaType = "text/xml";
                    request.Method = method;
    request.keepalive=false;
                   request.ContentLength = xmlRequestBody.Length;                
                ServicePointManager.Expect100Continue = false;            
                //var objContent = HttpContentExtensions.CreateDataContract(requestBody);
                if (method == "POST" && xmlRequestBody != null)
                    byte[] requestBodyBytes = ASCIIEncoding.UTF8.GetBytes(xmlRequestBody.ToString());
                    request.ContentLength = requestBodyBytes.Length;
                    using (Stream postStream = request.GetRequestStream())
                        postStream.Write(requestBodyBytes, 0, requestBodyBytes.Length);
                if (request != null)
                    request.Credentials = new NetworkCredential("Username", "password");
                    //request.ProtocolVersion = HttpVersion.Version11;
                    var response = request.GetResponse() as HttpWebResponse;
                    if (response.StatusCode == HttpStatusCode.OK)
                        Stream responseStream = response.GetResponseStream();
                        if (responseStream != null)
                            var reader = new StreamReader(responseStream);
                            responseMessage = reader.ReadToEnd();
                    else
                        responseMessage = response.StatusDescription;
                return responseMessage;
    Could you please help what could be the reason.Any firewall issue or any serviced related issue.Kidly suggest.

    Hi,
    I have created the windows application using REST Service and tested the application on
    windows 7 64 bit Ultimate edition but I'm getting the same error "The
    operation timed out" attached the screen shot for your reference.
    http://www.screencast.com/t/YeIJxl383a
    I developed the application on Windows 7 Ultimate 64 bit version it is working on my machine. while the executing exe on another windows 7 64 bit Ultimate
    edition which is on the virutal machine Im getting the error.
    There is no visual studio installed on the Virtual machine , i have installed the Dot Net frame work 4.0 client profile on the virtual machine.
    Could you please suggest is there any issues related to opearating system or related to framework.
    Kindly help with some suggestions.

  • TNS-12535 TNS Operation Timed Out....Pls HELP!!!

    Hi All
    I have created a oracle 9i database on my local machine and when I try to connect to it from same machine via sqlplus or OEM, I am getting this error message:
    TNS-12535: TNS Operation Timed Out.
    I have tried to create a new listener but still I cannot connect to database.
    Does anyone has any clue what's happening.
    Thank you
    Amit

    Hi,
    You could try something, like :
    If your System is a Windows system, check if the listener service is active.
    Then, from DOS window :
    - LSNRCTL stat, to see the status of the listener
    - TNSPING <your tnsnames alias>, if you have one.
    For local connections :
    - set ORACLE_SID = <your SID> as environment variable, then connect as user/password without connection string.
    You can also try to stop and start the listener (from dos) :
    - LSNRCTL stop
    - LSNRCTL start
    hth
    Paolo

  • Operation timed out when starting application server

    Hello experts, I recently installed the Netweaver ABAP preview edition on my pc. So when I try to start the application server after a while it says that the operation timed out so I cant log on using SAPlogon. Any help on this would be greatly appreciated. Thanks a lot guys!

    Hi,
    Check if SAP is up and running in the SAP MMC.
    If SAP is not running
    Please check/paste the dev_w0 file in /usr/sap/NSP/DVEBMGS00/work directory.
    Regards,
    Siddhesh

  • ALC-PDG-001-000-ALC-PDG-010-015-The conversion operation timed out before it could be completed. Please report this error to the system administrator.

    I am getting the error when trying to convert a word file to pdf.
    My Adobe Lifecycle ES is  installed on 2GM RAM . Is this the issue for the below error.
    ALC-PDG-001-000-ALC-PDG-010-015-The conversion operation timed out before it could be completed. Please report this error to the system administrator.
    Please provide me a valuable solution. I am new to Adobe ls es.

    This is a forum for Acrobat desktop product. For LiveCycle, try this forum
    http://forums.adobe.com/community/livecycle/livecycle_es/pdf_generator_es

  • I'm using Entourage 2008 v 12.3.5 and lost ability to SEND.  Tried many small email tests.  Server continues to leave time out message.  "An operation on the server timed out. The server may be down, overloaded, or there may be too much net traffic.

    I'm using Entourage 2008 v 12.3.5 and lost ability to SEND.  Tried many small email tests.  Server continues to leave time out message.  "An operation on the server timed out. The server may be down, overloaded, or there may be too much net traffic."  Comcast tells me server is not down all other network activity is fine.  WHat's up with this?

    Starting earlier today, this also became my problem - can receive but not send in Entourage. The account settings are correct in Entourage - I even created a new account.  My Mac running 10.7.5 won't read the original Office : MAC 2008 disk, so I can't do a fix or reinstall from the disk.
    This is not an issue if I log onto the Comcast site.
    And so, I started using Mail but, unlike Entourage, Mail won't import my Entourage info.
    Argh...  :-(

  • Disk Erase failed with the error- Operation timed out

    I've checked my computer- Mac Book White in Apple store, everything is fine just the hard disk has been corrupted. Needed to erase and reinstall. By the time I wanted to erase it, I can't erase and appears "Disk Erase failed with the error- Operation timed out".
    Anyone knows how to solve this question would be nice.
    Thanks

    Well give this a try:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger, Leopard or Snow Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    Now download a utility like TinkerTool System or Leopard Cache Cleaner - VersionTracker or MacUpdate - and use it to clear out your system, user, and font caches.
    And, try this for the software update issue:
    Fix for Software Update
    See Troubleshooting Automatic Software Update in Mac OS X.
    Delete the following files:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    /Home/Library/Preferences/com.apple.SoftwareUpdate.plist
    /Home/Library/Preferences/ByHost/com.apple.SoftwareUpdate.xxx.plist
    "xxx" is a number.
    /Home/Library/Caches/com.apple.SoftwareUpdate/ (delete entire folder)

  • Fatal NI connect error 12170 and TNS-12535: TNS:operation timed out

    We are getting intermittently following error.
    TNS for Solaris: Version 10.2.0.3.0 - Production
    Oracle Bequeath NT Protocol Adapter for Solaris: Version 10.2.0.3.0 - Production
    TCP/IP NT Protocol Adapter for Solaris: Version 10.2.0.3.0 - Production
    Time: 26-FEB-2008 07:17:25
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNS:operation timed out
    ns secondary err code: 12606
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    sql net ora file
    NAMES.DIRECTORY_PATH= (TNSNAMES)
    # NAMES.DEFAULT_DOMAIN = world
    SQLNET.EXPIRE_TIME = 10
    Out of 10,000 sucessful connections, some 10 connections are getting the 12170 and 12535 error. It is due to firewall connection time out ?
    Appreciate advanced help
    Prasad

    Hi ,
    Even I am facing similar issue. Please let me know if you have any resolutions for this

Maybe you are looking for

  • The ipod cannot be synced. The disk could not be read from or written to.

    i get that error when trying to sync songs to the ipod, someone know how to fix it? my ipod is running 3.0 , im using itunes 9, and im running Vista Home Basic

  • Maximum Data file size in 10g,11g

    DB Versions:10g, 11g OS & versions: Aix 6.1, Sun OS 5.9, Solaris 10 This is what Oracle 11g Documentation http://download.oracle.com/docs/cd/B28359_01/server.111/b28320/limits002.htm says about the Maximum Data file size Operating system dependent. L

  • In-process server not coming up.

    We Installed weblogic 10.3.6 and Oracle forms and reports 11.1.2 on top of it on windows 64 bit and configured for HA. In process server not coming up. Getting following error REP-52266: The in-process Reports Server rep_reports_1539_i_frw_q39 failed

  • How to draw circle if I have two points info and radius of the circle?

    Hi, I am trying to draw circle. Inputs I have is 1. Two points of the circle and 2. Radius of the circle. Please let me know if u have solution using Shape, Graphics2D apis. Thanks in advance.. Cheers, Somasekhar

  • Incomplete FTP read

    Hi, In my File to Idoc scenario, when I am testing with big file, it gets failed sometimes. The reason being the file is read by the adapter even before it is completely ftped. I have checked with "Msecs to wait before modification check" but it is n