Outlook Express timing out when many users connecting

I have a 10.5 xserve running imap for a company with many locations across the US. At many of these locations that have 5 or 6 people - the last person to open Outlook Express cannot connect to imap. It times out. There is no error on the server in any of the logs - it just never connects. If you close one of the other users out at that location then the previous machine starts working. It's almost like there are too many connections from the 1 ip of that location and cyrus starts denying more. It is becoming a problem.
Is Outlook Express opening way too many imap connections per user? Would Outlook be better? Is there a way to tell cyrus to allow more connections? (Currently in serveradmin I have no limit set)

Thanks for your quick reply!
I neglected to mention I'm running FF 24.0 on a Mac 10.9 Mavericks system. There was not a Tools -> Options choice on the menu, but I did find it on the Preferences panel, on the Advanced tab (see image 1).
I made the auto-detect selection as you advised and restarted FF. After navigating to a video I once again received the error message (see image 2).
So either I did something wrong (possible but I don't think so; I double-checked the setting after the restart and it is set to auto detect) or the problem lay elsewhere.
Anything else come to mind?

Similar Messages

  • Connection timed out when try to connect orb through iiop

    I have been trying to test a very basic corba example in weblogic 11g, it narrows an orb sucessfully with naming service, but I got connection timed out error when trying to call a function in the orb. My weblogic and my source code are on the same machine and I connect it with browser(coz it is a web application), so I doubt if it is firewall issues, but I could be wrong. I appericate so much if anyone can help.
    Here is the error message I got, you can see I listed all the objects in the naming service and I am able to locate Hello object:
    >
    Context: weblogic
    Object: Hello
    Context: javax
    Obtained a handle on server object: oraclecorba._HelloStub:Delegate(532227) [weblogic.iiop.IOR[IDL:oraclecorba/Hello:1.0] @xx.x.xx.xxx:xxxx, <0, null>]
    org.omg.CORBA.COMM_FAILURE: Connection timed out vmcid: 0x0 minor code: 0 completed: No
    at weblogic.iiop.Utils.mapToCORBAException(Utils.java:885)
    at weblogic.corba.idl.RemoteDelegateImpl.request(RemoteDelegateImpl.java:311)
    at org.omg.CORBA.portable.ObjectImpl._request(ObjectImpl.java:431)
    at oraclecorba._HelloStub.sayHello(_HelloStub.java:18)
    at oracle.demo.corba.MyJSPHelper.jspSayHello(MyJSPHelper.java:71)
    at jsp_servlet._pages.__corbajsp._jspService(__corbajsp.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:408)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:318)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3594)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.net.ConnectException: Connection timed out
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:519)
    at weblogic.socket.SocketMuxer.newSocket(SocketMuxer.java:342)
    at weblogic.socket.ChannelSocketFactory.createSocket(ChannelSocketFactory.java:79)
    at weblogic.socket.BaseAbstractMuxableSocket.createSocket(BaseAbstractMuxableSocket.java:133)
    at weblogic.iiop.MuxableSocketIIOP.newSocket(MuxableSocketIIOP.java:266)
    at weblogic.iiop.MuxableSocketIIOP.createSocket(MuxableSocketIIOP.java:253)
    at weblogic.socket.BaseAbstractMuxableSocket.connect(BaseAbstractMuxableSocket.java:106)
    at weblogic.iiop.MuxableSocketIIOP.connect(MuxableSocketIIOP.java:238)
    at weblogic.iiop.MuxableSocketIIOP.createConnection(MuxableSocketIIOP.java:222)
    at weblogic.iiop.EndPointManager.createEndPoint(EndPointManager.java:464)
    at weblogic.iiop.EndPointManager.findOrCreateEndPoint(EndPointManager.java:239)
    at weblogic.iiop.EndPointManager.findOrCreateEndPoint(EndPointManager.java:256)
    at weblogic.iiop.IIOPRemoteRef.locateIORForRequest(IIOPRemoteRef.java:383)
    at weblogic.corba.idl.RemoteDelegateImpl.getInvocationIOR(RemoteDelegateImpl.java:535)
    at weblogic.corba.idl.RemoteDelegateImpl.request(RemoteDelegateImpl.java:256)
    ... 19 more
    >
    Here are my source code
    Server side
    package oracle.demo.corba;
    import oraclecorba.Hello;
    import oraclecorba.HelloHelper;
    import org.omg.CORBA.ORB;
    import org.omg.CosNaming.Binding;
    import org.omg.CosNaming.BindingIteratorHolder;
    import org.omg.CosNaming.BindingListHolder;
    import org.omg.CosNaming.BindingType;
    import org.omg.CosNaming.NameComponent;
    import org.omg.CosNaming.NamingContext;
    import org.omg.CosNaming.NamingContextExt;
    import org.omg.CosNaming.NamingContextExtHelper;
    import org.omg.CosNaming.NamingContextPackage.NotFound;
    import org.omg.PortableServer.POA;
    import org.omg.PortableServer.POAHelper;
    import weblogic.common.T3ServicesDef;
    public class ORBStartup{
         private T3ServicesDef t3servicesdef;
         public void setServices(T3ServicesDef t3servicesdef)
            this.t3servicesdef = t3servicesdef;
         public static void main(String[] args)
            throws Exception
             try{
                  args = new String[4];
                  args[0] = "-ORBInitialHost";
                  args[1] = "some_address";
                  args[2] = "-ORBInitialPort";
                  args[3] = "8056";
                  System.out.println("...............startup...........");
                   // Create a new object request broker
                   ORB orb = ORB.init( args, null );
                   // get the root POA
                   POA rootpoa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
                   // Activate PersistentPOA's POAManager, Without this
                   // All calls to Persistent Server will hang because POAManager
                   // will be in the 'HOLD' state.
                   rootpoa.the_POAManager().activate();
                // instantiate the servant
                   CorbaHelloImpl helloImpl = new CorbaHelloImpl();
                   helloImpl.setORB(orb);
                   org.omg.CORBA.Object helloObj = rootpoa.servant_to_reference(helloImpl);
                   Hello HelloRef = HelloHelper.narrow(helloObj);
               //  Resolve RootNaming context and bind a name for the servant.
                 // NOTE: If the Server is persistent in nature then using Persistent
                 // Name Service is a good choice. Even if ORBD is restarted the Name
                 // Bindings will be intact. To use Persistent Name Service use
                 // 'NameService' as the key for resolve_initial_references() when
                 // ORBD is running.
                   org.omg.CORBA.Object ncObj = orb.resolve_initial_references("NameService");
                   //This line works ONLY for INS(jdk 14 naming service)
                   // Since we have only an object reference, we must
                   // cast it to a NamingContext. We use a helper
                  // class for this purpose
                   NamingContextExt ncRef = NamingContextExtHelper.narrow( ncObj );
                   String name = "Hello";
                   NameComponent path[] = ncRef.to_name( name );
                   try {
                        ncRef.rebind( path, HelloRef );
                   } catch( org.omg.CosNaming.NamingContextPackage.NotFound nf ) {
                        NameComponent[] tmpName = new NameComponent[path.length-1];
                        for (int i=0; i < path.length-1; i++) { tmpName[i] = path; }
                        createContextPath(ncRef, tmpName);
                        ncRef.bind(path, HelloRef);
         BindingListHolder bl = new BindingListHolder();
         BindingIteratorHolder blIt= new BindingIteratorHolder();
         ncRef.list(1000, bl, blIt);
         Binding bindings[] = bl.value;
         for (int i=0; i < bindings.length; i++) {
         int lastIx = bindings[i].binding_name.length-1;
         // check to see if this is a naming context
         if (bindings[i].binding_type == BindingType.ncontext) {
         System.err.println( "Context: " +
         bindings[i].binding_name[lastIx].id);
         } else {
         System.err.println("Object: " +
         bindings[i].binding_name[lastIx].id);
                   System.out.println( name + " for INS ready and waiting ...");
                   // the server is now ready to receive the client request
                   orb.run();
              } catch (Exception e) {
                   System.err.println("ERROR: " + e);
                   //e.printStackTrace(System.out);
                   throw e;
              System.out.println("HelloServer Exiting ...");
    public static void createContextPath(NamingContext nc, NameComponent[] name)
         throws org.omg.CORBA.UserException {
         try {
              nc.bind_new_context(name);
         } catch (NotFound nf) {
              for( int len = name.length - nf.rest_of_name.length + 1;
                   len <= name.length; len++ )
                   NameComponent[] tmpName = new NameComponent[len];
                   for (int i=0; i < len; i++) { tmpName[i] = name[i]; }
                   nc.bind_new_context(tmpName);
    Client side:
    package oracle.demo.corba;
    import oraclecorba.Hello;
    import oraclecorba.HelloHelper;
    import org.omg.CORBA.ORB;
    import org.omg.CosNaming.Binding;
    import org.omg.CosNaming.BindingIteratorHolder;
    import org.omg.CosNaming.BindingListHolder;
    import org.omg.CosNaming.BindingType;
    import org.omg.CosNaming.NamingContextExt;
    import org.omg.CosNaming.NamingContextExtHelper;
    public class MyJSPHelper
         public static String jspSayHello(String in)
              String rc = "";
              try
                   ORB orb = ORB.init();
                   // get the root naming context
                   org.omg.CORBA.Object objRef;
                   objRef = orb.resolve_initial_references("NameService");
                   // Use NamingContextExt instead of NamingContext. This is
                   // part of the Interoperable naming Service.
                   NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
                   /*for(int i =0; i<orb.list_initial_services().length; i++)
                        rc += orb.list_initial_services()+": ";
                        System.err.println(orb.list_initial_services()[i]);
         BindingListHolder bl = new BindingListHolder();
         BindingIteratorHolder blIt= new BindingIteratorHolder();
         ncRef.list(1000, bl, blIt);
         Binding bindings[] = bl.value;
         for (int i=0; i < bindings.length; i++) {
         int lastIx = bindings[i].binding_name.length-1;
         // check to see if this is a naming context
         if (bindings[i].binding_type == BindingType.ncontext) {
         System.err.println( "Context: " +
         bindings[i].binding_name[lastIx].id);
         } else {
         System.err.println("Object: " +
         bindings[i].binding_name[lastIx].id);
                   // resolve the Object Reference in Naming
                   String name = "Hello";
                   Hello helloImpl = HelloHelper.narrow(ncRef.resolve_str(name));
                   System.err.println("Obtained a handle on server object: " + helloImpl);
    //Hello helloImpl = HelloHelper.narrow(orb.string_to_object("corbaname:iiop:some_address:8056#Hello")); also tried that, but got the same problem
                   rc = helloImpl.sayHello(in); //<----failed here
              catch(Exception e)
                   // TODO Auto-generated catch block
                   rc += e.toString();
                   e.printStackTrace();
              return rc;
    Edited by: user8904224 on 27/04/2010 23:06

    Don't mean to add to the possible confusion here, but most newer routers (Apple included) allow their users to "hide" their network, so it's also very possible and likely in an apartment situation that you can pick up interference from a network that you or Air Radar cannot "see".
    So, trying to find the "right" channel becomes a bit more of guessing game.
    Understand that you need "g" for your devices. For the future though, you might watch the Air Radar screen for channels in the 36-48 and 149-161 range to see how much less activity is going on there.

  • Itunes timing out when trying to connect to store

    So I'm about to recieve an iphone in an hour or two and i'm a little upset because for the past hour i've tried to connect to the itunes store and everytime but once it has timed out. my internet is working fine and i can download my podcasts and play music fine. any troubleshooting i can do so i can connect and set up my new cell subscription?

    I was reading another thread and this worked perfectly for me. I kept trying to get this computer authorized and it would time out everytime. All I did was go up to the store menu, sign out, and sign back in. Nothing timed out, I was able authorize and I am back to listening to music again.

  • "Licensing timed out" when creating to Remote Desktop Connection

    Our company have two site (SiteA and SiteB),  both have its own DC (SiteA.xx.local and SiteB.yy.local).  A Windows 2012 Server setup a Terminal Service.  All SiteB user will use remote desktop to connect to the Terminal Server.
    Sometime it will prompted an error "A licensing error occurred while the client was attempting to connect (Licensing timed out).  Please try connecting to the remote computer again."   Before this error message shown, the connection box
    will show the status "Estimating connection quality" for a while (my last test this will stay for 2 min 30 sec. before Licensing timed out prompt). 
    When we face this error,  the only way to solve it is to reboot the Terminal Server.  Once reboot,  everything will be fined,  all user can connect again.   But sometime later (no fixed time period, from two hours - two days), user
    will then have this problem.  But we need to reboot server again.
    I can't found in what situation this error will happened.  But we do experienced the following situation.
    1. Sometime the a RDS Connection just stopped directly.  Then try to reconnect but failed.  In this case,  all other users are still using it.  
    2. I try to unplug a network connection for a client, it show the connection is lost and trying to reconnect.  After I plug the network back.  Cancel the reconnect process.  Then open the remote desktop again it will have the error.
    3. there has two machine will never have this problem (we have this problem for 3 months).  no matter how the connection lost.  it can built up the connection once the connection is back
    I followed some forum to enable the netlogon.log.  On the Server, I found:
    1. [MISC] [872] In control handler (Opcode: 4):  This log must there when the problem happened.
    Not sure if the following log help:
    1. NetpDcGetName: SiteA.xx.local. using cached information ( NlDcCacheEntry = 0x000000DE96694D50 )
    2.DsGetDcName function returns 0 (client PID=2088): Dom:SiteA Acct:(null) Flags: NETBIOS RET_DNS
    3. NetpDcInitializeContext: DSGETDC_VALID_FLAGS is c03ffff1
    4. DsGetDcName function called: client PID=23532, Dom:(null) Acct:(null) Flags: LDAPONLY RET_DNS  (I found some log will be Dom:SiteA install of Dom:(null)   )
    5. NlTimeoutApiClientSession: Unbind from server \\SiteA-DC.Stingmars.hk.local (TCP) 0.
    6. NlPrintRpcDebug: Couldn't get EEInfo for I_NetLogonSamLogonEx: 1761 (may be legitimate for 0xc000006e)
    On the Client side:  Not sure if the log can help:
    07/11 11:56:01 [MISC] DsGetDcName function called: Dom:(null) Acct:(null) Flags: DS
    07/11 11:56:01 [DNS] NlDnsHasDnsServers: DNS Server is NOT configured on this machine.
    07/11 11:56:01 [MISC] NetpDcInitializeContext: DSGETDC_VALID_FLAGS is c01ffff1
    07/11 11:56:01 [MISC] NetpDcGetName: SiteB using cached information
    07/11 11:56:01 [MISC] DsGetDcName function returns 0: Dom:(null) Acct:(null) Flags: DS
    07/11 11:56:01 [MISC] DsGetDcName function called: Dom:(null) Acct:(null) Flags: FORCE DS
    07/11 11:56:01 [DNS] NlDnsHasDnsServers: DNS Server is NOT configured on this machine.
    07/11 11:56:01 [MISC] NetpDcInitializeContext: DSGETDC_VALID_FLAGS is c01ffff1
    07/11 11:56:01 [MAILSLOT] Sent 'Sam Logon' message to SiteB[1C] on all transports.
    07/11 11:56:01 [CRITICAL] NlBrowserSendDatagram: No transports available
    07/11 11:56:01 [CRITICAL] NetpDcGetNameNetbios: SiteB: Cannot NlBrowserSendDatagram. (1C) 53
    07/11 11:56:01 [MISC] NetpDcGetName: NetpDcGetNameNetbios returned 1355
    07/11 11:56:01 [CRITICAL] NetpDcGetName: SiteB: IP and Netbios are both done.
    07/11 11:56:01 [MISC] DsGetDcName function returns 1355: Dom:(null) Acct:(null) Flags: FORCE DS
    07/11 11:56:02 [MISC] DsGetDcName function called: Dom:(null) Acct:(null) Flags: LDAPONLY RET_DNS
    07/11 11:56:02 [DNS] NlDnsHasDnsServers: DNS Server is NOT configured on this machine.
    07/11 11:56:02 [MISC] NetpDcInitializeContext: DSGETDC_VALID_FLAGS is c01ffff1
    07/11 11:56:02 [MISC] NetpDcGetName: SiteB using cached information
    07/11 11:56:02 [MISC] DsGetDcName function returns 0: Dom:(null) Acct:(null) Flags: LDAPONLY RET_DNS
    07/11 11:56:03 [SESSION] V6 Winsock Addrs: fe80::bd63:1d49:d8fd:724%12 (1) V6WinsockPnpAddresses List used to be empty.
    07/11 11:56:04 [MISC] NlPingDcNameWithContext: Ping response timeout for SiteB-DC.Stingmars.cn.local.
    07/11 11:56:04 [CRITICAL] NlPingDcNameWithContext: Can't ping the DC SiteB-DC.Stingmars.cn.local.
    07/11 11:56:04 [MISC] NetpDcInitializeContext: DSGETDC_VALID_FLAGS is c01ffff1
    Thanks
    Kenneth Lai

    Hi Kenneth,
    Thank you for posting in Windows Server Forum. 
    Please check the setting and workaround as per below thread.
    RDP connection hangs on "estimating connection quality"
    http://social.technet.microsoft.com/Forums/en-US/18819bef-5c01-4849-9c61-afb7e8c8a581/rdp-connection-hangs-on-estimating-connection-quality?forum=winserverTS
    In addition, also check below details.
    Cause:  If you are using Internet Protocol security (IPsec) to help protect traffic over TCP between clients and terminal servers, then packet fragmentation might occur. As a result, some packets might not reach their destination, and
    client connections to terminal servers might fail.
    Solution:  Configure IPsec to help protect traffic over UDP rather than over TCP.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • How do I stop Firefox from timing out when connecting to NDN video servers?

    Many news websites use the video servers at NDN. Firefox seems to invariably time out when trying to display videos hosted there. An error message box will popup that says "[Error](com.ndn.video::StreamingVideo) OPV Error #6 Timed out while trying to connect."
    I've tried to edit some of the timeout settings in about:config but I don't know for sure which to modify.

    Thanks for your quick reply!
    I neglected to mention I'm running FF 24.0 on a Mac 10.9 Mavericks system. There was not a Tools -> Options choice on the menu, but I did find it on the Preferences panel, on the Advanced tab (see image 1).
    I made the auto-detect selection as you advised and restarted FF. After navigating to a video I once again received the error message (see image 2).
    So either I did something wrong (possible but I don't think so; I double-checked the setting after the restart and it is set to auto detect) or the problem lay elsewhere.
    Anything else come to mind?

  • I get an error message when trying to install software update 4.2.8 "problem downloading, network connection timed out. Check network connections.

    I get an error message when trying to install software update 4.2.8
    "problem downloading, network connection timed out. Check network connections."
    Anyone one else had this problem?

    Brian-KK Sabah wrote:
    I too get the same message but I the software had downloaded 100% but about half way through "processing file" the error message (.3259) Check network connections. How do I fix this?
    See Here for your Error Message -3259
    http://support.apple.com/kb/ts2799

  • How to find out how many users are connected to Exchange 2013 servers in "Online" mode? This is coz, online mode causing server performance issues in our environment

    All, Any script or method to find out how many users are connected to exchange servers in online mode?
    Manju Gowda

    Hi 
    You have to get the "RPC Client Access" log file in your CAS server. There you can see a column called "client-mode" and it has two modes such
    as "classic" and "cached". From there you can get the two different client assess modes and their corresponding users.
    probably take this file openup on excel and filter to see the two modes
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
    (MVP)

  • I can't connect to Wi-Fi - keeps timing out. No problem connecting from other laptops / phones. Stopped working after I did a system upgrade. What can I do?

    I can't connect to Wi-Fi - keeps timing out. No problem connecting from other laptops / phones. Stopped working after I did a system upgrade. What can I do? I am on OS X Yosemite.

    Take each of the following steps that you haven't already tried, until the problem is resolved. Some of these steps are only possible if you have control over the wireless router.
    Step 1
    Turn Wi-Fi off and back on.
    Step 2
    Restart the router and the computer. Many problems are solved that way.
    Step 3
    Change the name of the wireless network, if applicable, to eliminate any characters other than letters and digits. You do that on your router via its web page, if it's not an Apple device, or via AirPort Utility, if it is an Apple device.
    Step 4
    Run the Network Diagnostics assistant.
    Step 5
    In OS X 10.8.4 or later, run Wireless Diagnostics and fix the issues listed in the Summary, if any.
    Step 6
    Back up all data before proceeding.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Enter the name of your wireless network in the search box. You should have one or more "AirPort network password" items with that name. Make a note of the name and password, then delete all the items. Quit Keychain Access. Turn Wi-Fi off and then back on. Reconnect to the network.
    Step 7
    You may need to change other settings on the router. See the guidelines linked below:
    Recommended settings for Wi-Fi routers and access points
    Potential sources of interference
    Step 8
    Make a note of all your settings for Wi-Fi in the Network preference pane, then delete the connection from the connection list and recreate it with the same settings. You do this by clicking the plus-sign icon below the connection list, and selecting Wi-Fi as the interface in the sheet that opens. Select Join other network from the Network Name menu, then select your network. Enter the password when prompted and save it in the keychain.
    Step 9
    Reset the System Management Controller (SMC).

  • Error Executing Database Query.coldfusion.sql.DatabaseConnectionException: Timed out trying to establish connection

    My coldfusion service crashes intermitantly and when I check
    the application logs the error that I see for the time frame is the
    one below. Does anyone know where I might begain to solve this?
    Thanks!
    Error Executing Database
    Query.coldfusion.sql.DatabaseConnectionException: Timed out trying
    to establish connection The specific sequence of files included or
    processed is: E:\wwwroot\lifeworks\default.cfm

    I'm no expert, but thought I would try to be helpful.
    I was getting this same error on a regular basis.
    The short term fix was to restart the ODBC server service.
    The long term fix was twofold:
    1. I recreated the ODBC connection in ColdFusion
    Administrator to use the system connection (I was using the SA and
    PW for login).
    2. I created a second user ODBC connection as well as the
    system one under ODBC in Windows Server 2003.
    I haven't had the problem since.
    I also read a pretty good set of "stuff" to try from the help
    area:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17277
    Hope this helps.

  • Timed out trying to establish connection - Java only

    I am running CF8.0.1 with sql 2000 on windows 2003.  I've been intermittenly experiencing the error below.  I've gone and researched as much as I can and none of the answers apply to me.  It seems that when Java objects try to reach me sql database I get the timed out message.  This happens once a few days and hangs the server until I restart coldfusion.
    If I try to reach the same table with a cfquery tag and output the results, I have no problem.  Only java classes seem to be affected by this issue.  Restarting the coldfusion service fixes it, but its not reasonable to restart it every other day.
    Error Occurred While Processing Request
    Timed out  trying to establish connection
    The  error occurred in ****
    Called from ****
    Called  from *****
    19 :      storeGroupID = -1;
    20 :      storeID = intSID;
    21 :      acContext.initialize(javacast("long",storeGroupID), javacast("long",storeID));
    22 :
    23 :      // create an authenticator for user authentication.
    I am runni

    Well, the application in question is running ablecommerce.  I have 3 sites hosted on this server that I manage.  Ablecommerce no longer supports Coldfusion.  All of their queries to the DB are written through java classes and not your regular cfquery tags.
    When I get that timed out error on my ablecommerce sites, and then run a cfquery on the same server against the same DB, it works fine, which pushes me to think its java related.
    Steve

  • Request timed out when purchasing music. Fresh install of Win7.

    For the past couple months I have have not been able to purchase music off iTunes without first going into Add/Remove programs and doing a "Repair" to iTunes. Windows Firewall wasn't blocking anything from Apple and even with the firewall totally disabled I would still get the "Request timed out" error. And at the same time I'm getting these errors, a Podcast can be in the background downloading or I can be previewing a song! I eventually gave up and just figured its some random windows bug that isn't very common or its just another example of iTunes sucking for Windows and Apple not caring. I just purchased most of my music off AmazonMP3 which I've been doing more and more of anyway.
    Yesterday I installed a new HDD and installed a fresh copy of Windows 7 Home Premium from my retail disc. I Installed all the updates then proceeded to install my software and put all my media back in-place. I'm a backup neat-freak so all this happen pretty easily and fast. I purchased a song off iTunes and was pleased to see it working again. Well here I am again suddenly having the issue with the connection timing out when purchasing a song. Firewall is configured fine and again I even disabled it. I know its not Windows now as there haven't been any new Drivers or Updates installed since I last purchased a song. I even tried different network adapters! What the heck is going on?

    This error is specific to RAS. The default CORBA request timeout is 10 minute = 600000 ms. When the RAS SDK does not get the reponse back from RAS server in 600000 ms it throws this message. Why it works in InfoView\CMC what I believe you refer to as "Front End' application is because InfoView\ CMC don't use RAS.
    1. First make sure that a smaller report wich runs pretty fast ( 1-2 min) works. This will confirm that there is no connectivitiy issues between RAS and RAS SDK.
    2. If you get the efrror for every single report, even the smaller ones, make sure the box running RAS and RAS SDK code( in case they are 2 different) can ping each other with IP, shortname and FQDN. If there is a firewall between them, the RAS port needs to be opened for bidirectional communication. By default RAS chooses a random port for communication with SDK but within CMC you can configure it to use a specific port and open it.
    3. If the issue is specific only to reports that are long running, typically more than 10 minutes, then you need to inclease the CORBA timeout to a value more than what the reports typically would take to process. This is done on client code side or IIS in this case.
    Here are the steps:
    Make the following changes on the application server/system.
    Open RegEdit by going to Start > Run and typing in regedit.exe. Then click Ok.
    Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.5\Report Application Server\Client SDK\CorbaAdapter
    Change the value of SendRequestTimeout(ms) to 100000.
    Change the value of WaitReplyTimeout(ms) to 6,000,000 ms. The default value is 600,000 ms and may not be long enough.
    Restart IIS by going to Start > Run and typing in iisreset. Then click Ok.
    Retry the failing application.
    See note:  1296656
    This error should be easy to fix
    Edited by: Aasavari Bhave on Feb 2, 2012 11:20 AM

  • ITunes store keeps saying that my session has timed out when trying to buy a product from the store

    I Tunes is telling me that my session has timed out when trying to buy a gift voucher, which i have done many times before.
    The most recent change i'v made to my computer before this happened was to download an update (MacOSX updatecombo 10.7.3dmg)
    a couple of weeks ago. I'v turned off the firewall as suggested whilst trying to transact and turned it back on again, but don't know
    what else to try. The problem is three days old as i left and came back to it to see if there might be a glitch in the system.
    I'v been able to access the credit i have in the store, but not buy the itunes voucher to email to my own a/c. Please help someone if you can
    Sandystone.

    Thanks for your suggestion Ned01, I tried this as a last ditch attempt, unfortunatly it made no difference in my case, but i'm pleased it did for you. However, because you reminded me to have another go at this problem, i tried something else (which i'd unsucsessfuly tried before), that is, i deleted the 'CLICK & SAVE " a/c i'd set up recently,  and reverted to my previous payment me and would you know it , this time it worked !! I set up a trail purchase and it worked.
    It seems to me that other poeple with this problem have to solve it by trail and error, but thank you for your help.Sandystone..

  • "timed out obtaining dynamiclink server connection" in After Effects

    I've seen a lot of other people have this same problem, none of the solutions ive seen are working for me.
    Problem appears when i try to track camera, it goes to 'analyzing in background' then after 2 minutes or so it gives me the "timed out obtaining dynamiclink server connection" error pop-up.
    Mac OSX 10.7.5
    Using Adobe After effects CC
    2 x 2.4ghx quad-core intel xeon
    15gb ddr3 ram
    I've uninstalled Logmein which appeared as a problem in one of the solutions but that hasn't changed anything. Don't have a firewall running. Tried uninstalling After Effects CS6 and After Effects CC and then reinstalling After Effects CC. Dynamiclinkmanager pops up in activity monitor intermittently, it comes and goes repeatedly when i try to 'Track Camera' but never shows any actual use of memory.
    Is anyone able to offer help?
    Could it be some confusion in preferences / library files between my CS6 installs and CC installs?
    Thanks in advance

    Refer to this:
    http://myleniumerrors.com/2013/01/27/25-101-4/
    Mylenium

  • Tabular data model: Query keeps timing out when attempting to Edit Table Properties

    Tabular data model (SSDT)
    Problem: I have a table in tabular data model using a SQL Query for a data source. The query in question requires about 3 minutes to regenerate. When I open Edit Table Properties for this data source the query times out and I get an error (see below): "
    Failed to retrieve data from udvTrainJobReportsData. Reason: Query timeout expired"
    This seems to happen anytime I use a query that takes longer than a couple of minutes to regenerate. Anyone have an idea on how to get around this. Is there a timeout setting somewhere in tabular data model that can be increased?
    Thanks...

    Hi ManikantM,
    According to your description, you query keeps time out when edit table properties. Right?
    In this scenario, this error is thrown when connection or query execution exceeds the time out value. Please try to import this table and then increase the connection time out seconds.
    We can increase to ExternalCommandTimeout in Analysis Server Properties. Please refer to link below:
    http://aniruddhathengadi.blogspot.in/2012/07/ole-db-error-ole-db-or-odbc-error-query.html
    Please also refer to a similar thread below:
    https://social.technet.microsoft.com/Forums/office/en-US/3f83a26b-71c6-462e-8b90-2ce2ce0b9465/powerpivots-2010-query-keeps-timing-out-when-attempting-to-edit-table-properties?forum=excel
    Best Regards,
    Simon Hou
    TechNet Community Support

  • Timed out and losing server connections.

    Hey
    for the past month i have been having problems using Ichat. I seem to be constantly timed out or lose server connections. I'm not very technical so sometimes looking at computer jargon makes my brain fuzzy!
    I have changed the port to 443 and its still happening. I have a belkin router and BT is my isp.
    It worked fine before (besides having to have a few attempts at voice connections before finally getting there)
    It seems to drop connection often and its the whole net usage that is affected, it seems to drop then reboot itself and when logged on to ichat i have to manually sign out and back in again, then i get the message saying i'm connected in more than one location.
    Last night it happened roughly 20 times in a three hour period, yet this morning its only happened on a few occasions.
    I'm not totally sure what version i am using (like i said i'm a technophobe) all i know is my macbook is a year old. Nobody else uses the internet other than me.
    Any help would be great.
    Thanks
    Any help would be great.

    Hi,
    In this case a Server is normally something that distributes (Serves) an Internet Connection onwards to several other devices.
    A modem can be a cable modem and not specifically serve as such and a router is needed behind that to "serve the LAN" as it were.
    More specifically a Router or routing device such as a modem that routes will have a DHCP Server that automatically dishes out IP addresses (numbers) to the computers and other devices attached.
    In Most devices the DHCP server can be turned Off but then the Computers have to be set to Static IPs (Manually in the Mac Network Preferences).
    It takes very small breaks in service either in the routing device itself or from the ISP for iChat to notice.
    Although most people think off Mail and Web Browsing to be Always On they only use the Connection intermittently when you get or send mail or change a web page.
    iChat is communicating with the AIM Servers (Or Jabber/GoogleTalk) all the time so that you get a instant update to your Buddy list when people come and go Off line.
    9:32 PM Monday; April 13, 2009

Maybe you are looking for