BIPCatalogUtil extraction always fails with "Connection timed out"

BIPCatalogUtil extraction always fails with "Connection timed out".
Any suggestions on what could be the issue?

One thought was that perhaps it was timing out going out some unused port (e.g., the Airport port), but a list shows only the Ethernet port is enabled:
admin$ sudo networksetup -listallnetworkservices
An asterisk (*) denotes that a network service is disabled.
Built-in Ethernet
*AirPort
*Built-in FireWire
*Bluetooth

Similar Messages

  • DeskI Job Server Hangs with Connection timed out error in trace file

    Hi, in these days I have a problem with Desktop Intelligence Job Server. After some hours after its starting (it's restarted every day in the morning to allow db backup) in the trace file I can see errors like this:
    [Wed Apr  8 09:58:40 2009]      28116   1457753008      (../iinfoprocessing_implmixedproc.cpp:607): trace message: Failed to send message to child: 28527, err 0, PipeListener: timed out reading from pipe: Connection timed out
    [Wed Apr  8 09:58:43 2009]      28116   1457753008      (csipipe.cpp:242): trace message: PipeListener: ReadString(1) timed out: Connection timed out
    [Wed Apr  8 09:58:43 2009]      28116   1457753008      (../iinfoprocessing_implmixedproc.cpp:607): trace message: Failed to send message to child: 28529, err 0, PipeListener: timed out reading from pipe: Connection timed out
    [Wed Apr  8 09:58:46 2009]      28116   1457753008      (csipipe.cpp:242): trace message: PipeListener: ReadString(1) timed out: Connection timed out
    [Wed Apr  8 09:58:46 2009]      28116   1457753008      (../iinfoprocessing_implmixedproc.cpp:607): trace message: Failed to send message to child: 28553, err 0, PipeListener: timed out reading from pipe: Connection timed out
    [Wed Apr  8 09:58:49 2009]      28116   1457753008      (csipipe.cpp:242): trace message: PipeListener: ReadString(1) timed out: Connection timed out
    [Wed Apr  8 09:58:49 2009]      28116   1457753008      (../iinfoprocessing_implmixedproc.cpp:607): trace message: Failed to send message to child: 28555, err 0, PipeListener: timed out reading from pipe: Connection timed out
    [Wed Apr  8 09:58:52 2009]      28116   1457753008      (csipipe.cpp:242): trace message: PipeListener: ReadString(1) timed out: Connection timed out
    [Wed Apr  8 09:58:52 2009]      28116   1457753008      (../iinfoprocessing_implmixedproc.cpp:607): trace message: Failed to send message to child: 28591, err 0, PipeListener: timed out reading from pipe: Connection timed out
    All job submitted remains in "Suspend" mode and never pass in "Executing".
    To solve the problem I've to manually stop and restart the DeskIjob server, but after some hours the problem reappear.
    How to solve it?
    I've installed Business Objects XI R2 SP5 on Linux SLES 10
    Thanks

    Checking the jobcd trace of child process in connection timeout, I can see, at the time in which in jobsd process the error occurs, the following error:
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      (../ijob_implmixedproc.cpp:143): trace message: MixedProcMgr: msg = GetLoad
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      (../ijob_implmixedproc.cpp:128): trace message: MixedProcMgr: timed out wating for new jobs, shutting down.
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      (pp_procFC.cpp:3716): trace message: IJobDllUnInitialize
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      (pp_procFC.cpp:951): trace message: ReleaseStaticSubsystem()
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      (pp_procFC.cpp:168): trace message: t_shutdown_ptr::reset()
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      (pp_procFC.cpp:172): trace message: Shutting down INTERFACE
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      trace message: TraceLog: [ENTER] BOLApp::ExitInstance
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      trace message: TraceLog: [ENTER] ~_BOUserUniverseManager
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      trace message: TraceLog: [ENTER] ReleaseUniverseCache
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      trace message: TraceLog: [EXIT]  ReleaseUniverseCache: 0
    [Thu Apr  9 09:14:08 2009]      8940    1452690272      trace message: TraceLog: [EXIT]  ~_BOUserUniverseManager: 0
    The error occurs exaclty 2 hours after the starting of the child ... I don't think it's a coincidence ....
    Edited by: David Loreto on Apr 9, 2009 11:41 AM

  • Get "connect timed out" with twitter4j api

    modified HelloWorldAdapter.java to call " unauthenticatedTwitter.getPublicTimeline();".
    add following code before calling twitter api
    System.setProperty("twitter4j.http.proxyHost", "www-proxy.us.oracle.com"); System.setProperty("twitter4j.http.proxyPort", "80");
    the CEP HelloWorld CEP fails with "connect timed out"
    If I use similar code (testwitter.java) outside CEP. works fine.
    I am using eclipse to test the code.
    --- here is part of the testtwitter.java
    Twitter unauthenticatedTwitter = new TwitterFactory().getInstance();
         System.out.println("Showing public timeline.");
         System.setProperty("twitter4j.http.proxyHost", "www-proxy.us.oracle.com");
         System.setProperty("twitter4j.http.proxyPort", "80");
         try {
         List<Status> statuses = unauthenticatedTwitter.getPublicTimeline();
         for (Status status : statuses) {
         System.out.println(status.getUser().getName() + ":" +
         status.getText());
    --- here is the part of the generateTwitterMessage() at HelloWorld CEP
         Twitter unauthenticatedTwitter = new TwitterFactory().getInstance();
         System.setProperty("twitter4j.http.proxyHost", "www-proxy.us.oracle.com");
         System.setProperty("twitter4j.http.proxyPort", "80");
         System.out.println("---- after seting proxyhost, call generateTwitterMessage");
         System.out.println("---Showing public timeline.");
    try {
         List<Status> statuses = unauthenticatedTwitter.getPublicTimeline();
    for (Status status : statuses) {
         String twitterMsg = status.getUser().getName() + ":" +status.getText();
    System.out.println("msg--"+twitterMsg);
    String message = this.message + dateFormat.format(new Date()) + twitterMsg ;
    HelloWorldEvent event = new HelloWorldEvent();
    event.setMessage(message);
    eventSender.sendInsertEvent(event);
    }catch ....
    Please help me on proxy host/port setup inside CEP

    yatin002 wrote:
    Any ideas/suggestions to solve this issue ???Catch the Exception?
    static boolean checkURL(URL url){
        HttpURLConnection httpCon = null;
        try {
            httpCon = (HttpURLConnection)url.openConnection();
            return httpCon.getResponseCode() == HttpURLConnection.HTTP_OK;
        catch(Exception ex){
            ex.printStackTrace();
            return false;
        finally {
            if( httpCon != null ){
                httpCon.disconnect();
        }

  • Connection timed out when running snpsftp (Odisftp) jython procedure

    Hi All,
    Let me know the solution if any one of you have come across the "Connection Timed Out" error when running a jython snpsftp (Odisftp) procedure to exchange/import the files on a FTP server to the local system (Target Server).
    This procedure was working fine until the IP Address of the Target Server was changed due to change to physical location of the Target server itself.
    Since we are moving office to a different building the Target server which hosts the ODI Agent running as windows service are moved and since then the FTP Jython procedure is not working.
    I can successfully ping the IP Address of the FTP server from the Target server that has got the new IP, but when running the FTP procedure from ODI tool ends up with Connection Timed Out error.
    Thanks for providing some tips/ideas for resolving this urgent issue.
    Thanks,
    Raghu

    Please check the hosts file for the new IP,
    Also cehck the Agnet service login for wheter the user has the privledges to do a FTP access to the server or also connect to the server
    Reshma

  • TCP active open: Failed connect()    Error: Connection timed out SMTP

    Hi,
    Messaging server version is,
    ./imsimta version
    Sun Java(tm) System Messaging Server 6.2-6.01 (built Apr 3 2006)
    libimta.so 6.2-6.01 (built 11:20:35, Apr 3 2006)
    SunOS bglbbmr1-a-fixed 5.9 Generic_118558-28 sun4u sparc SUNW,Sun-Fire-V440
    17-Dec-2008 10:47:40.08 1730.8e.741
    tcp_local Q 4 [email protected] rfc822;[email protected] [email protected] /mta/queue/queue/tcp_local/013/ZUg0i1t9I0ZG~.00 <[email protected]>; TCP active open: Failed connect() Error: Connection timed out SMTP/xyz.my-domain.in
    I have been getting this above error on my mail server from last
    4-5 days. I am getting complaints from end users that the users can't
    send any mails using Outlook but I did check with my test user I can
    send mail by using webmail.
    The Failed MX lookup Errors also getting in my logs the error detail given bellow.
    17-Dec-2008 10:47:39.65 1730.91.737
    tcp_local - Y TCP|0.0.0.0||209.85.143.114|25 SMTP/airtelmail.in/aspmx.l.google.com
    17-Dec-2008 10:47:39.92 1754.41.255
    tcp_notify - Y SMTP/infomedia18.in/infomedia18.in
    17-Dec-2008 10:47:39.92 1754.41.256
    tcp_notify Q 7 rfc822;[email protected] [email protected] /mta/queue/queue/tcp_notify/017/ZXg0i1t3U_ZoD.00 <[email protected]>; Failed MX lookup; try again later
    17-Dec-2008 10:47:39.94 1754.41.257
    tcp_notify Q 6 rfc822;[email protected] [email protected] /mta/queue/queue/tcp_notify/010/ZXg0i1t3U_ZoF.00 <0KBZ003MRGU7MQ30@my-domain> Failed MX lookup; try again later
    I tried stopping and starting msg service using stop-msg and start-msg to sort out this above problem but no result. :(
    When I do check the tcp_local queue it has been growing every day as well the tcp_notification queue also.
    /opt/SUNWmsgsr/sbin/imsimta qm su
    Messages
    Channel Queued Size (Kb) Oldest
    tcp_notify 10741 1080610.61 16 Dec, 00:59:24
    tcp_local 8334 733849.31 15 Dec, 00:19:00
    tcp_lmtpcn 0 0.00
    tcp_be 0 0.00
    reprocess 0 0.00
    process 0 0.00
    conversion 0 0.00
    Totals 19075 1814459.92
    This queues are increasing day by day.
    One more thing is that I cant see a service/channel called CONVERSION running on my server when i do use this command.
    ps -aef | grep conversion
    root 6144 6000 0 11:14:28 pts/1 0:00 grep conversion
    When i try to start it using imsimta qm utility, output shows as
    qm.maint>; start conversion
    QM-I-STARTED, channel was not stopped
    qm.maint>;
    Later I stopped and started conversion channel
    qm.maint>; stop conversion
    QM-I-STOPPED, channel stopped
    qm.maint>; start conversion
    QM-I-STARTED, channel started
    qm.maint>;
    I can see that on other servers the conversion channel is running and few msges are in queue. I do have other servers which running the same messaging server. But I am not getting why don't on this server. Where both servers having the same configuration.
    Please, help me to sort out this issue.
    Thanks in advance....
    BSK

    Thanks Mr. Shane,
    The server which is running conversion channel.
    ps -eaf|grep conversion
    mailserv 16824 8472 3 17:08:11 ? 0:48 /opt/SUNWmsgsr/lib/conversion
    mailserv 28728 8472 0 17:17:30 ? 0:00 /opt/SUNWmsgsr/lib/conversion
    root 1057 26387 0 17:18:12 pts/1 0:00 grep conversion
    more /opt/SUNWmsgsr/config/conversions
    in-channel=*; in-type=application; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=x-zip-compressed; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=image; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=audio; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=video; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    Following entry from /opt/SUNWmsgsr/lib/config-templates/imta_tailor
    IMTA_CONVERSION_FILE=<msg.RootPathUNIX>/config/conversions
    The server which doesnt show running conversion channel
    #more /opt/SUNWmsgsr/config/conversions
    !in-channel=*; in-type=*; in-subtype=*; in-disposition=*;
    ! parameter-symbol-0=NAME; parameter-copy-0=*;
    ! dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    ! message-header-file=2; original-header-file=1;
    ! override-header-file=1; override-option-file=1;
    ! command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=application; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=x-zip-compressed; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=image; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=audio; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=video; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    Following entry from /opt/SUNWmsgsr/lib/config-templates/imta_tailor
    IMTA_CONVERSION_FILE=<msg.RootPathUNIX>/config/conversions
    Is this above information u r asking?
    As u wrote erlier, the conversion channel works some times and some times doesn't work.
    Thanks lot...
    BSKADAM

  • I am having alot of problems with itunes, including a "connection timed out" error CONSTANTLY. Any suggestions?

    My iTunes has always been a huge pain no matter what ive done. It runs slowly in general, freezes up every now and then, and when trying to restore my iPod touch 4g, i need to download a software update, which is impossible, due to the fact that every time i try i get a "Network connection timed out" message. I have also had the issue of my account locking me out twice now in a very short period of time, and i have no idea why. It says for security reasons, but ive changed passwords and everything.
    I would like to know if an update is comming soon to make things smoother, because ive long since lost patience with iTunes.

    If you are getting a network timeout error when downloading an iOS update then try temporarily turning off all your firewall and antivirus software until the download has completed.
    In terms of whether an update is coming, we are just fellow users on here so we won't know when the next update might be, and what might or might not be in it.

  • TCP active open: Failed connect()    Error: Connection timed out

    Hi,
    There is one message which can't be delieved to the recepient with error " TCP active open: Failed connect() Error: Connection timed out" This is the error that we found in the mail.log_current file.
    I have no problem sending email to the same address from my hotmail account.
    any suggestion ?
    Thanks,
    Joe

    The message can only mean one thing. Your server cannot connect to that host.
    It's possible that the remote system is lying to your Messaging Server, and that's gotten it confused. Some firewalls do this by repeating the entire capability string from the server behind them, but can't actually handle all the capabilities.
    PIX firewalls do this.
    When you connect, they pretend to be able to "startls", but if you try, they hang up. They appear to handle "EHLO", but when you try, they hang up.
    You can put debugging on the tcp_local channel, and see the actual conversation, if you like.
    master_debug and slave_debug go into the imta.cnf definition line. MM_DEBUG=5 goes at the end of your option.dat file.
    then
    imsimta cnbuild
    imsimta restart
    will attempt to send the message. You will want to back the changes out, as you'll get lots of extra log files you really don't need.
    Post the log file, and we can see what's happening.

  • HT5622 I have a new iPad mini. trying to set up my iCloud. I have a wifi connection at a hotel. trying to connect to my iCloud account. Getting a message saying "Verification Failed" the request timed out.

    I have a new iPad mini. trying to set up my iCloud. I have a wifi connection at a hotel. trying to connect to my iCloud account. Getting a message saying "Verification Failed" the request timed out. Can't seem to get a connection to internet even thou it tells me i have one. 

    ausask64 wrote:
    Can't seem to get a connection to internet even thou it tells me i have one. 
    If you see the white WiFi bars in the upper left corner, that simply means that the iPad has detected a WiFi network, and that does not mean that you are connected to the Internet.
    Can you open web sites with Safari?

  • HT1222 I am trying to update my phone so I can save my info on my old phone & get a new phone, but I get a error that says "There was a problem with downloading teh software, the network connection timed out.."  HELP!  Not sure what my settings shoud be..

    I am trying to update my phone so I can save my info on my old phone & get a new phone, but I get a error that says "There was a problem with downloading teh software, the network connection timed out.."  HELP!  Not sure what my settings shoud be...
    I never updated anything until now...I want o update my iPhone to the newest version, but i do not want ot loose all that I have on this phone. I was told I needed to update the operating systems so i can put things into the cloud for transport to new phone, but I am just not sure how to do this..Can you help out here??

    Dear Jody..jone5
    Good for you that can't update your iphone because I did it and my iphone dosen't work for example I can't download any app like Wecaht or Twitter..
    Goodluck
    Atousa

  • Cannot access iTunes Store - "connection timed out" or "secure connection failed" issues.

    If you are having problems connecting to the iTunes Store to:
    (a)     activate a new iPod, iPhone or iPad; or
    (b)     re-activate an existing iPod. iPhone or iPad after upgrading the OS for the device,
    then hopefully this article will assist.
    It is assumed that have encountered the following problem. When you connect your device to your PC the device is recognised by iTunes, but the main window simply displays the name of the device (e.g. iPad). The progress bar at the top says "accessing the iTunes Store", but it stalls and eventually there is an error message saying something like "connection timed out".
    There are a number of variants of this problem, but the common thread is that your device is unable to access the iTunes Store to authenticate a new device or after upgrading the OS on an existing device.The first recaction is to check that your Internet connection is ok and that that "itunes.exe" a not being blocked by your Windows or third party firewall settings, but the problem persists.
    Having recently experienced this problem and scouring the Internet for a solution, I eventually solved it using the following approach:
    (a)     Check that you are connected to the Internet (i.e can browse the web).
    (b)     Open iTunes and choose "Run diagnostics" from the help menu and then select the "networking connectivity" option (uncheck the other options) and click "next" twice. A report will show the results with a "green" or "red" dot next to each item. You should see a "green" dot next to the first two items ("Network interfaces verified" and "Internet connection verified"). However there will probably be a "red" dot next to the third item "Secure link to iTunes Store verified". 
    The important thing to note is that a secure connection could not be established. This is an indication that your wireless security is the problem. It does not satisfy the security level expected by the iTunes Store. It seems that an unsecure connection or one using outdated encryption (such as WEP) is no longer sufficient for the iTunes Store. This may be why the problem has emerged with the most recent versions of iTunes. The now widely used wireless encryption standard WPA or WPA2 is expected.
    So you need to check your router wireless security settings and, if you have a PC that uses a wireless connection to the router, make sure its settings  match. The following is a guide bearing in mind that there are many different types of routers and Windows OS.
    Router
    TIP: If you have a wireless connection from your PC to your router, then check your PC wireless security options first to see that "WPA" or "WPA2" are available (see below) as it will be a pain to change your router settings only to discover that your PC does not have the same options.
    (a)     Most routers can be accessed using your web browser by typing in the router's address (e.g. http://192.186.1.1). If you don't know the address look at the mannual that came with your router as it will tell you how to do this.
    (b)     Once your browser displays the router interface you may be prompted for a username and password. These may be the default factory or ones that you have created previously. If the username or password has not been changed, but you don't remember of know what they are again go to the mannual that came with your router as it will have that information.
    (c)     Assuming that you are able to access your router interface, look for the "wireless" tab or menu and a sub-menu or option for the "security settings". They'll be there somewhere. Once you find the security options you can select the encryption level. As stated above, you should choose "WPA" or "WPA2". You will then be asked to create a network key which can be anything with the required number of letters and/or digits.
    (d)     Once your finished write the settings down (including the key) as you will need them for your PC if you have a wireless connection to the router. Save the changes (if prompted to do so) and re-boot your router.
    PC Wireless
    (a)     Again the appoach that you need to take will depend on your OS (XP, Vista or Windows 7), but generally speaking if you go to the "network" on your PC there will be the option to highlight it and right click or choose a "properties" item. I vaugely think this can be done in XP by right clicking the wireless icon in the taskbar and navigating to the dialogue box that shows your network. In Windows 7 you will need to go to the "Network and Sharing Center" and then choose "Manage wireless networks".
    (b)     At some point (sorry to be vauge) you will find the wireless network security options for your network. Select the same level of encrytion ("WPA" or "WPA2") and type in the same network key that you chose for your router. Save the changes and your wireless connection should come to life. If not then make sure that you have put in the correct settings before freaking out.
    Back to iTunes
    Once you are connected to your router again (wirelessly or by lan), then plug in your device and open iTunes. As before it will try to access the iTunes Store, but hopefully you won't have any problem establishing a secure connection and you'll be up and running.
    Best of luck!      

    Something is still blocking iTunes, do you have any other firewall installed?
    When you say you removed Norton, to you mean you uninstalled it. An uninstalled Norton security product can still bock iTunes as some of it is left behind.
    Several people have found that using the Norton Removal Tool to remove all traces of Norton fixes this problem.
    http://service1.symantec.com/Support/tsgeninfo.nsf/docid/2005033108162039?OpenDo cument

  • I am having trouble accessing the iTunes store via iTunes.  It shows an error message "iTunes could not connect to the iTunes Store.  The network connection timed out..." There is nothing wrong with my connection and I also can't update apps in the app st

    I am cannot access the iTunes store via iTunes on my PC and also can not update to 10.6.3.  It keeps telling me that my connection has times out and/or check my settings.  There is nothing wrong with my setting.  I am also having trouble with the app store on my iPhone 4s and can not update apps.
    I have signed out of itunes and now cannot sign in again.

    I feel you pain i'm haveing the same problems here.
    iTunes could not connect to the iTunes Store. The
    network connection timed out.
    Make sure your network settings are correct and your network
    connection is active, then try again.
    does anyone plz have some insight for us.

  • When trying to connect to Airplay speakers I get error message "The  network connection timed out" although some sort of connection is made as the speaker is turned on.  Same thing with Apple TV.  Is the distance from my speaker/ TV the problem?

    When trying to connect from iTunes to Airplay speakers I get error message “The  network connection timed out” although some sort of connection is made as the speaker is turned on.  Same thing with Apple TV.  Is the distance between my PC and the speaker or the AppleTV the problem?

    Hi whitwick,
    If you are having issues with your network connection when attempting to use AirPlay, you may want to use the steps in this article to troubleshoot -
    iTunes: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS5209
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • TS1814 "There was a problem downloading the software fot the iphone. The network connection timed out.there's no pblm with my connection but this error keeps on showing,  what to do?

    "There was a problem downloading the software fot the iphone. The network connection timed out."
    there's no pblm with my connection but this error keeps on showing, 
    what to do? please help....

    Stop with the silly and pointless fonts.
    A simple search of the forums for the actual error would have revealed the resolution.
    Temporarily disable all security software on the computer.

  • Javax.xml.soap.SOAPException: Message send failed: Connection timed out

    Hi,
    where can i adjust the timeout for:
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: Connection timed out: connect
    The webservice needs 5min to return a message....
    I found a duplicate of this on thread:
    error initiating a test instance
    But no answer
    Message was edited by:
    HEWizard

    I found http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/events.htm#BABGGADB
    Setting Timeouts for Synchronous Processes
    For synchronous processes that connect to a remote database, you must increase the syncMaxWaitTime timeout property in the SOA_Oracle_Home\bpel\domains\default\config\domain.xml file:
    <property id="syncMaxWaitTime">
    <name>Delivery result receiver maximum wait time</name>
    <value>60000000</value>
    <comment>
    <![CDATA[The maximum time the process result receiver will wait for a
    result before returning.  Results from asynchronous BPEL processes are
    retrieved synchronously via a receiver that will wait for a result from the
    container.
            <p/>
            The default value is 60 seconds.]]>
    </comment>
    </property>
    But this changes nothing...
    Is this value ignored?

  • TAC+: TCP/IP open to 10.20.17.2/49 failed -- Connection timed out; remote host not responding

     TACACS+ configured on router and router is in ACS.  I can ping the ACS but the router cannot establish a connection to authenticate users.
    aaa group server tacacs+ hq_acs-1
    server 10.20.17.2
    ip tacacs source-interface GigabitEthernet0/0
    aaa authentication login default group tacacs+ local
    aaa authorization config-commands
    aaa authorization exec default group tacacs+ local
    aaa authorization commands 10 default group tacacs+ local
    aaa authorization commands 15 default group tacacs+ local
    aaa accounting nested
    aaa accounting update newinfo periodic 60
    aaa accounting auth-proxy default start-stop group tacacs+
    aaa accounting exec default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    aaa accounting network default start-stop group tacacs+
    aaa accounting connection default start-stop group tacacs+
    aaa accounting system default start-stop group tacacs+
    aaa accounting resource default start-stop group tacacs+
    BigTree_3945#sh ip int br
    Interface                  IP-Address      OK? Method Status                Protocol
    GigabitEthernet0/0         10.4.3.1        YES NVRAM  down                  down
    GigabitEthernet0/1         10.12.10.26     YES NVRAM  up                    up 
    Serial0/2/0                unassigned      YES NVRAM  down                  down
    Serial0/2/0.602            10.12.15.10     YES NVRAM  down                  down
    Apr 13 11:08:13.673: TPLUS: Queuing AAA Authentication request 79 for processing
    Apr 13 11:08:13.673: TPLUS: processing authentication start request id 79
    Apr 13 11:08:13.675: TPLUS: Authentication start packet created for 79(cisscdb)
    Apr 13 11:08:13.675: TPLUS: Using server 10.20.17.2
    Apr 13 11:08:13.675: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: Started 5 sec timeout
    Apr 13 11:08:18.676: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: timed out
    Apr 13 11:08:18.676: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: timed out, clean up
    Apr 13 11:08:18.676: TPLUS(0000004F)/0/1BDD9C34: Processing the reply packet
    Apr 13 11:08:25.834: TPLUS: Queuing AAA Authentication request 79 for processing
    Apr 13 11:08:25.834: TPLUS: processing authentication start request id 79
    Apr 13 11:08:25.834: TPLUS: Authentication start packet created for 79(cisscdb)
    Apr 13 11:08:25.834: TPLUS: Using server 10.20.17.2
    Apr 13 11:08:25.834: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: Started 5 sec timeout
    Apr 13 11:08:30.836: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: timed out
    Apr 13 11:08:30.836: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: timed out, clean up
    Apr 13 11:08:30.836: TPLUS(0000004F)/0/1BDD9C34: Processing the reply packet
    Apr 13 11:08:43.689: TAC: Using default tacacs server-group "tacacs" list.
    Apr 13 11:08:43.689: TAC+: Opening TCP/IP to 10.20.17.2/49 timeout=5
    Apr 13 11:08:51.057: TPLUS: Queuing AAA Authentication request 79 for processing
    Apr 13 11:08:51.057: TPLUS: processing authentication start request id 79
    Apr 13 11:08:51.057: TPLUS: Authentication start packet created for 79(cisscdb)
    Apr 13 11:08:51.057: TPLUS: Using server 10.20.17.2
    Apr 13 11:08:51.057: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: Started 5 sec timeout
    Apr 13 11:08:54.692: TAC+: TCP/IP open to 10.20.17.2/49 failed -- Connection timed out; remote host not responding
    Apr 13 11:08:54.692: TPLUS: Queuing AAA Accounting request 76 for processing
    Apr 13 11:08:54.692: TPLUS: processing accounting request id 76
    Apr 13 11:08:54.692: TPLUS: Sending AV task_id=332
    Apr 13 11:08:54.692: TPLUS: Sending AV timezone=EDT
    Apr 13 11:08:54.692: TPLUS: Sending AV service=shell
    Apr 13 11:08:54.692: TPLUS: Sending AV start_time=1334329734
    Apr 13 11:08:54.692: TPLUS: Sending AV priv-lvl=15
    Apr 13 11:08:54.692: TPLUS: Sending AV cmd=show logging <cr>
    Apr 13 11:08:54.692: TPLUS: Accounting request created for 76(n20j03t)
    Apr 13 11:08:54.692: TPLUS: Using server 10.20.17.2
    Apr 13 11:08:54.692: TPLUS(0000004C)/1/NB_WAIT/20FD90EC: Started 5 sec timeout
    Apr 13 11:08:56.058: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: timed out
    Apr 13 11:08:56.058: TPLUS(0000004F)/0/NB_WAIT/1BDD9C34: timed out, clean up
    Apr 13 11:08:56.058: TPLUS(0000004F)/0/1BDD9C34: Processing the reply packet
    Apr 13 11:08:59.693: TPLUS(0000004C)/1/NB_WAIT/20FD90EC: timed out
    Apr 13 11:08:59.693: TPLUS(0000004C)/1/NB_WAIT/20FD90EC: timed out, clean up
    Apr 13 11:08:59.693: TPLUS(0000004C)/1/20FD90EC: Processing the reply packet
    BigTree_3945#
    AAA Client IP Address
    10.4.3.* 10.12.15.10
    Key
    Network Device Group
    Test    
    NJT    
    AccessLink    
    (Not Assigned)    
    Authenticate Using
    TACACS+ (Cisco IOS)    
    RADIUS (Cisco Aironet)    
    RADIUS (Cisco BBSM)    
    RADIUS (Cisco IOS/PIX)    
    RADIUS (Cisco VPN 3000)    
    RADIUS (Cisco VPN 5000)    
    RADIUS (IETF)    
    RADIUS (Ascend)    
    RADIUS (Juniper)    
    RADIUS (Nortel)    
    RADIUS (iPass)    
    Single Connect TACACS+ AAA Client (Record stop in accounting on failure).
    The 10.12.10.* range is listed under the HQ site.
    Your help is greatly appreciated.

    You stated that you can ping ACS from the router, did you try sourcing the packets from the GigabitEthernet 0/0 interface (which is the one TACACS+ will try to use, given the configuration that you posted)?
    What does the network path between the router and ACS look like (ie, any firewalls, NAT, etc)?
    Can you connect to port 49 at the ACS IP address from the router sourcing the packets from GigabitEthernet 0/0 ?
    Are you using VRFs?
    What version of IOS?

Maybe you are looking for

  • Problem on copy with hp printer m127

    hi sorry! my english is not good i have a printer hp m127 and i have problem on copy with this printer when i copy a A4 paper from feeder or glass don't print about 1 inch of botton of page but when i scan this page, it's correct and when i print sca

  • Java call to a VB COM code

    Hello, I have a standalone java application making call to a 3rd party VBCOM code. Im using EZCOM bridge. I get the following exception when i try to make a call. can anyone help me as to why this comes. Exception in thread "main" java.lang.Unsatisfi

  • How to know file name in FTP/file Adapter

    Iam new to FTP/file Adapter, when ever we use ftp/file adpter, afrter pick file from remote server/local system. how can i fine filename,? how can handling a fault,if file picked,but data is wrong ? How we know the picked date, time of that picked fi

  • Crystal Reports Installation Issue (Error 1904/ HRESULT -2147024769)

    Hi, While installing Crystal Reports 2008 -trial version on Windows-xp I am getting the following error: "Error 1904. Module C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\ReportSourceBridge.dll failed to register. HRESUL

  • CS4 Audio and Video are misalligned-- Assistance is appreciated.

    I just recently purchased the CS4 Production Premium and am having alot of fun with Premier, but I've run into a problem with one of my clips.  It is playing the video perfectly fine, but the audio seems to be a second or two delayed.  Does anyone ha