Server response timeout

Hi,
How can I control from the client application (C++) the response timeout from the Oracle 8i database server? Or more general question: how can I know in the client application that Oracle server is down?

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Igor Izvarin:
Or more general question: how can I know in the client application that Oracle server is down?<HR></BLOCKQUOTE>
Same way as when you try to figure out when another machine is down or not: PING. You can have a simple procedure on the server side that always returns the same success message. You call it using your favourite interface (OCI,precompiler, whatsoever) and if you haven't got your very own success message - most likely the server is down

Similar Messages

  • Remote host response timeout

    help !
    os: IBM AIX (japanese version)
    app server: IBM WEBSphere 3.5(japanese version)
    connection pools: com.ibm.servlet.connmgr.IBMConnSpec
    com.ibm.servlet.connmgr.IBMConnMgr
    sourse:
    spec = new IBMJdbcConnSpec(poolName, true, jdbcDriver,url, printer_user, printer_pass);
    connMgr = IBMConnMgrUtil.getIBMConnMgr();
    cmConn = (IBMJdbcConn)connMgr.getIBMConnection(spec);
    dataConn = cmConn.getJdbcConnection();
    stmt = dataConn.createStatement();
    error message:
    java.sql.SQLException: I/ONc30$G$9!#: remote host response timeout
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleConnection.privateCreateStatement(OracleConnection.java)
    at oracle.jdbc.driver.OracleConnection.CreateStatement(OracleConnection.java)
    this error is not always ocurred, just sometimes. please help me ,
    thanks.

    help !
    os: IBM AIX (japanese version)
    app server: IBM WEBSphere 3.5(japanese version)
    connection pools: com.ibm.servlet.connmgr.IBMConnSpec
    com.ibm.servlet.connmgr.IBMConnMgr
    sourse:
    spec = new IBMJdbcConnSpec(poolName, true, jdbcDriver,url, printer_user, printer_pass);
    connMgr = IBMConnMgrUtil.getIBMConnMgr();
    cmConn = (IBMJdbcConn)connMgr.getIBMConnection(spec);
    dataConn = cmConn.getJdbcConnection();
    stmt = dataConn.createStatement();
    error message:
    java.sql.SQLException: I/ONc30$G$9!#: remote host response timeout
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleConnection.privateCreateStatement(OracleConnection.java)
    at oracle.jdbc.driver.OracleConnection.CreateStatement(OracleConnection.java)
    this error is not always ocurred, just sometimes. please help me ,
    thanks.

  • The server response was: 4.4.1?!?

    Hi!
    I am having a problem with Mail 1.3.11 in OS X 10.3.9.
    I can send and receive e-mails, but when I try to send a e-mail with a attachment [doesn't matter size or kind of file], it doesn't go.
    After a while I get this message:
    Sending the message content to the server failed.
    The server response was: 4.4.1 collect: read timeout on connection from
    [my ip xx.xxx.xxx.xx], from=<[email protected]>
    You can try to send using a different server. All messages will use this
    server until you quit or change your network settings.
    My ISP says that in their side everything is ok.
    How can I fix this. Can you help me?!?
    Thank you,
    Paulo

    Is your ISP's SMTP server authenticated for your ISP's email account?
    How are you connected to the internet - via an Ethernet connection to a modem or thru a wired or wireless router connected to same?
    This sounds like it may be an MTU (Maximum Transmission Unit) problem. The default MTU setting for OS X with an Ethernet connection is 1500 which is the highest available. If your ISP requires a lower MTU setting, this will prevent sending messages with attachments or messages over a certain size.

  • The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
                    SmtpServer.UseDefaultCredentials = true;
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    When i m run this part of code it throw an Ecxeption                                                          
            Given Below is the Error.. 
        The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Bikky Kumar

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
    SmtpServer.UseDefaultCredentials = true;    ///Set it to false, or remove this line
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    Given Below is the Error..      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Solution:
    The error might occur due to following cases.
    case 1: when the password is wrong
    case 2: when you try to login from some App
    case 3: when you try to login from the domain other than your time zone/domain/computer (This
    is the case in most of scenarios when sending mail from code)
    There is a solution for each
    solution for case 1: Enter the correct password.
    Recomended: solution for case 2: go to
    security settings at the following link https://www.google.com/settings/security/lesssecureapps and
    enable less secure apps . So that you will be able to login from all apps.
    solution 1 for case 3: (This might be helpful) you need to review the activity. but reviewing the activity will not be helpful due to latest security
    standards the link will not be useful. So try the below case.
    solution 2 for case 3: If you have hosted your code somewhere on production server and if you have access to the production server, than take remote
    desktop connection to the production server and try to login once from the browser of the production server. This will add exception for login to google and you will be allowed to login from code.
    But what if you don't have access to the production server. try
    the solution 3
    solution 3 for case 3: You have to enable
    login from other timezone / ip for your google account.
    to do this follow the link https://g.co/allowaccess and
    allow access by clicking the continue button.
    And that's it. Here you go. Now you will be able to login from any of the computer and by any means of app to your google account.
    Regards,
    Nabeel Arif

  • Server Response: 550 5.7.1 Unable to relay

    SBS 2011 I have exchange 2010,
    Internally Outlook send/ Receive working fine-- Local Ip address.
    Owa Send/Receive working fine.
    But remote user can receive the Emails, But cant send the emails.
    Subject 'tes'
    Server Error: 550
    Server Response: 550 5.7.1 Unable to relay
    Server: 'xxx.xxx.xxx.xxx'---- Public IP address
    Windows Live Mail Error ID: 0x800CCC79
    Protocol: SMTP
    Port: 25
    Secure(SSL): Yes
    How to fix this issue ?

    Hi,
    Did you create a relay connector to allow to relay in Exchange? About how to create a relay connector, you can refer to the following article.
    How to Configure a Relay Connector for Exchange Server 2010
    http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    To allow a device to use Exchange to relay a message to an outside recipient, you also need the ms-Exch-SMTP-Accept-Any-Recipient attribute.
    Get-ReceiveConnector -Identity relayconnector | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "ms-Exch-SMTP-Accept-Any-Recipient"
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • JavaMail, ESMTP, problem with this server response: "+  stunnel"

    I need to send message through a STMP server I don't know much about. The server works fine, when using port 25. But I need to send mail through port 465. I've looked around the web, I've searched the forums, but found no solution.
    I've identified, that the server uses some kind of strange "secure" connection. I was told, that is uses SSL, but when I use SMTPSSLTransport, it says the "Unrecognized SSL, plaintext connection?". So I am using the common Transport. This is my code:
                props.put("mail.transport.protocol","smtps");
                props.put("mail.smtp.host", smtpHost);
                props.put("mail.smtp.port", 465);           
                props.put("mail.smtps.starttls.enable","true");
                props.put("mail.smtps.ssl", "true");
                props.put("mail.smtps.socketFactory.port", 465);
                props.put("mail.smtps.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
                Session session = Session.getDefaultInstance(props);
                session.setDebug(true);
                Transport transport = session.getTransport();
    ...I am getting this output:
    DEBUG: setDebug: JavaMail version 1.4.1
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "host name of the server", port 465, isSSL false
    220 "host name of the server" ESMTP Sendmail 8.13.1/8.13.1; Fri, 15 Feb 2008 18:10:49 +0100
    + stunnelDEBUG SMTP: connected to host "host name of the server", port: 465
    EHLO "my hostname"
    DEBUG SMTP: bad server response:  + stunnel
    HELO "my hostname"
    250-"my hostname"
    WelcomeDEBUG SMTP: use8bit false
    MAIL FROM:<[email protected]>
    250 STARTTLS
    220 Go ahead
    RCPT TO:<[email protected]>
    DEBUG SMTP: got response code 220, with response: 220 Go ahead
    RSET
    DEBUG SMTP: exception reading response: java.net.SocketException: Connection reset
    javax.mail.MessagingException: Exception reading response;
      nested exception is:
            java.net.SocketException: Connection resetI have no idea, what a stunnel is, but it is causing the problem, I think.
    Does anybody have any ideas what can be wrong? Or does anyone know how to check the server setting? Or what properties can I try to set? (I've tried all possible options of the properties I am already setting in the code).

    You're getting newline (LF without the CR)? If so,
    it's possible that Thunderbird isn't seeing that as
    an end of line and so considers the "+stunnel" to
    be part of the greeting line.
    Either way, there's something messed up in the
    server configuration and you really need to report
    that to the server administrator.
    Also, port 465 is supposed to be an SSL port,
    starting in SSL mode, not starting in plain text
    mode as you're seeing. Again, this is evidence
    that the server is set up incorrectly.
    JavaMail will support STARTTLS just fine, and it
    won't care what port you're using, but that bogus
    "+stunnel" line is a protocol violation that's
    confusing it. Possibly Thunderbird is taking the
    approach of "throw away garbage until I see
    something I recognize", but JavaMail isn't working
    that way.
    If this was a server on the public internet that
    lots of people might encounter, I might be inclined
    to add a workaround to JavaMail. But since this is
    a private server that's clearly configured incorrectly
    and is clearly violating the protocol, I think the best
    thing to do is to get the server fixed.

  • Anyone else seeing "Invalid server response" when logging into VCMA through a web browser?

    I am getting "Invalid server response" when I log into VCMA from Safari on my iPhone. I have the app on my iPad and it will connect and manage my ESXi hosts normally (so I am fairly certain the setup and config of the Virtual Appliance went ok).
    I Googled the error and got some returns about different Virtual Appliances doing the same thing. Seems to be an issue with running VCenter on a Windows 2008 server (which we are). Users reported switching VCenter to Windows Server 2003 boxes and it worked fine.
    Anyone else ran into this and figured it out?
    My environment:
    vCenter Server 4.1.0 - Build:258902
         - running as a VM on ESXi 4.1.0 - Build: 348481
         - running on top of Windows Server 2008 R2 Standard SP1
         - vSphere Client 4.1.0 - Build: 258902
    vCenter Server and VCMA Appliance are on the same subnet.

    I had not done that yet, but thanks to your suggestion I have made that change.
    I am not sure if the above fixed the issue, but I am now able to get the website to load. I was trying to load the page https://vcmaServerIP:5480 which will load a login page. When you try to log into it, I was and am still getting the error I first posted about. By some weird chance I tried to load the page https://vmcaServerIP and got a completely different looking page and was able to log in and work like I should be able to.
    So, lesson learned: do not put the :5480 at the end of the URL and you will get the correct login page.
    Thank you dschubot for your help.

  • Com.sap.caf.mp.base.exception.EngineException: Problem in server response:

    Hi,
    I have created one CAF application,which is having one external webservice and one application service.Webservice takes two input parameters(string,boolean) and it returns an arraylist.
    So when i test the CAF application on the CAF service browser it is giving me error like " com.sap.caf.mp.base.exception.EngineException: Problem in server response: [Bad Request]."
    I am getting this error while creating object of web service.
    Can anybody help me on this issue..
    Thanks in Advance

    It looks like you are not authorized to execute the webservice. Check the webservice authentication settings.
    Peter

  • Error in server response

    I have an Ultra 60 running Solaris 8 and I'm trying to execute the pkg-add -U command (I really want to install a new gcc compiler but I'm getting the same message). The results are:
    Connecting to an_address.edu[000.0.00.000]:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /pub/packages/solaris/freeware/sparc/5.8 ... done.
    ==> PASV ...
    Error in server response, closing control connection.
    Retrying.
    This goes on for some time (20 times I believe is the the default) and just quits. What do I need to do to get pass this error?

    I have an Ultra 60 running Solaris 8 and I'm trying to execute the pkg-add -U command (I really want to install a new gcc compiler but I'm getting the same message). The results are:
    Connecting to an_address.edu[000.0.00.000]:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /pub/packages/solaris/freeware/sparc/5.8 ... done.
    ==> PASV ...
    Error in server response, closing control connection.
    Retrying.
    This goes on for some time (20 times I believe is the the default) and just quits. What do I need to do to get pass this error?

  • Error Parsing Server Response??

    Does anyone know what "error parsing server response, please re-sync" means?
    I have had the worst trouble with using my email on the phone. It works half the time. I finally got it set up to send using my mobile carrier as the outgoing, but now it fails on syncing email.
    Thanks!
    Post relates to: Centro (Sprint)

    ANY LUCK??  I've been havign the same problem for about 8 days or so after the phone and email worked perfectly for several weeks.  When in Account Setup the Communciation Check comes back successful but when I try to Get email it fails and I get the following error message, "Error Parsing Server Response.  Please re-sync."
    Any help or suggestions are appreciated.
    Post relates to: Centro (Verizon)

  • Delivery fails: "The server response was: 4.7.0 Temporary server error. Please try again later. PRX3"

    Trying to setup an Exchange 2013 server, with the DC and Exchange on same machine. WHen I try to deliver for either of the 2 mailboxes I have setup, I get this error.
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    It doesn't seem to be a resource issue (I'm running an XL instance on Azure), and all other connectivity works fine (and fast). I just can't receive email there. 
    Looking in the event logs, I saw one issue related to the Front End HTTP proxy, but I wouldn't assume that's relevant here. (And connectivity via Outlook & OWA seem to be fine, with the exception
    of some redirect issues on the latter).
    I did end up installing Exchange on a secondary drive for space considerations, so the location is different... not sure if that would factor in either.
    Any ideas? I don't even really know where to start debugging this. I'm trying to set this up to work on some event sync/forwarding code.

    Ok, I think I solved my problem but figured I would update here for others who may be running into the same issue.
    In my \Exchange\TransportRoles\Logs\FrontEnd\ProtocolLog\SmtpReceive\*.LOG, I found more detailed information on the issue.
    "Message or connection acked with status Retry and response 
    451 4.4.0 Error encountered while communicating with primary target IP address: ""421 4.2.1 Unable to connect."" 
    Attempted failover to alternate host, but that did not succeed. Either there are no alternate hosts, or delivery failed to all alternate hosts. The last endpoint attempted was 10.10.10.1:2525"
    I thought creating an endpoint for 25 would be sufficient, but once I created another endpoint for 2525 then my tests started working.

  • Removing "server" response header in Netscape Enterprise Server 4 SP2

    Hi folks,
    I've been searching around and I couldn't find how to turn off the "server" response header for the aforementioned web server. I've tried adding ServerString "" to magnus.conf but that doesn't work. I guess that only works for versions 6.x.
    Any idea where I can make the changes to 4.0?
    Thanks in advance.

    I don't believe you can suppress the "server" response header in the release that you are using. Look at:
    http://sunsolve.sun.com/pub-cgi/retrieve.pl?doc=finfodoc%2F67865&zone_110=67865%2A%20
    Also, note that 4.x versions of web server are no longer supported.
    Thanks
    Manish

  • I'm getting "invalid server response" when I try to spider a site

    I want to spider a partial website (to get documentation) but I am getting the error "invalid server response" when I start.
    The site is perfectly viewable with Firefox, Safari and on my iPad.
    Here is the section of the site I wanted to convert to PDF
    http://quartzcomposer.com/patches
    I'm using Acrobat Pro 11.0.03
    Any ideas?
    (By the way, there's no appropriate section for this aspect of Acrobat so that's why I just put it in this "creating, Editing...." section.)

    OK, I interpret spiders as the feelers sent out by search engines -- a different use of the term. Anyway, I got the same error as you on both AA9 and AA XI. The other version was AA5 that simply said General Error. I was able to get the page into Acrobat around the back door. I downloaded the page to my harddrive and then opened the htm file in Acrobat. There are a whole lot of JS files called by the htm file. It did load that page, but I could not get to the next page. So the result is the same as printing to a PDF or using PDF maker in IE (I don't use IE). I tried the URL link with the htm file name and did not get the desired result. I suspect it is something that is non-standard but the browsers allow that is causing the problem. Acrobat sticks pretty close to the HTML standard as I understand it and it is where there are encryptions or other items that it messes up. I am not exactly sure what you are trying to get out of the PDF, but this gives you some idea of what to look at. I had looked at both the HTML source of the site and the site info to try to see if I saw anything strange. What I saw were a lot of calls to JS.
    Bill

  • Checkout file failed in JDI (server response: Internal Server Error)

    Hi All,
    I am getting a strange error when I am trying to check out any file. It is not allowing me to checking out any views or controllers. I am not sure what went wrong. It is giving the error as:
    Checkout failed: Checkout file failed (server response: Internal Server Error).
    Any idea why this is happening. I am not able to edit my code. Its really urgent for me.
    Thanks in advance!!!
    Regards,
    Gurmat

    Gurmat,
    Could you please close the thread by assigning Points.
    You should be periodically monitoring the Data File Space.
    Basis Guys can extend the Table Space upto 2GB
    Check out this SAP help for working with DB Management tool:
    SAP's  BRTOOLS
    [BRTOOLS|http://help.sap.com/saphelp_nw70/helpdata/EN/46/ce0440a832e369e10000000a155106/frameset.htm]
    Regards,
    Karthick Eswaran

  • The server response was: 4.7.0 Temporary server error. Please try again later. PRX3

    Hello, 
    I just setup an exchange 2013 server  with hosted with the same machine of Active Domain Controller.
    I tested the connectivity of the server , i found that the mailbox can only send email to external mailbox however it cant receive any mail neither  from external mail nor internal mail.
    I ran a test from exchange connectivity analyzer for inbound mail and it failed with the following message. 
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3
    I did a search on this forum and found the following thread
    social.technet.microsoft.com/Forums/exchange/en-US/288e1619-ce56-4c3a-8bb1-4886835520fe/delivery-fails-the-server-response-was-470-temporary-server-error-please-try-again-later?forum=exchangesvrdeploy
    but no luck , i dont know how to set an alternative host, would somebody please help.
    error details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally() 
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Exception details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally()
    Elapsed Time: 3107 ms.
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Exception details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally()
    Elapsed Time: 3107 ms.

    Thanks god, finally i found the solution :) , i can go to sleep
    i added my ad domain name to the host table then all the problems are solved!!!
    source
    http://www.techieshelp.com/exchange-2013-451-4-7-0-temporary-server-error-please-try-again-later-prx5/

Maybe you are looking for

  • Problem with HP Laptop

    Hi , I purchased a HP Laptop DV4 - 1444dx in last week , i was not feeling good with that performance (i.e Battery Life is only 1:30 hour,Becomes heat if we continuosly use 2 hours) i would like to return it , how can i approach for  further steps. I

  • Free Bumper, UK residents?

    Hi, The only way to register for your free iphone 4 bumper at the moment is on apple.com (iphone 4 caseprogram), can UK residents register for the free bumper on here or do we have to wait for the iphone 4 case program to appear on apple/uk? Cheers

  • Problem in Event driven report

    Dear Gurus...I created the following procedure to implement Event Driven Reporting: CREATE OR REPLACE procedure ABC.eve_drv_rep as myPlist system.SRW_PARAMLIST; myIdent system.SRW.Job_Ident; BEGIN myPlist := system.SRW_PARAMLIST(system.SRW_PARAMETER(

  • [flexcoders] Error #2025 - UIMovieclip and Focus Manager

    Hello Everybody, I'm getting a runtime Error #2025 when I try to use an UIMovieclip into a Flex Application. The issue happens when the key tab is pressed and It seems has being caused by the Focus Manager. I found some threads over the internet but

  • Dsconf backup/restore in a replication environment

    Hi, using Sun JS Directory Server 6.3.1. Two servers in a multi-master topology. When making a backup of the directory (on both systems) using dsconf backup, my question is: how should the restore be done, given the fact that there's a replication ag