Impossible to connect to the gateway SSL of the company site and program database after that upgraded 10.0

Dear All/Admin/Tech,
After the upgrade to Firefox 10.0 staff of my company in Indonesia can not rained access gateway SSL for the web of our company and therefore cannot log on to our web database program.

In my tests, in Singapore (with the same ISP fiber broadband), I have the same problem.

Both Chrome and IE have no problem, but Firefox stops on error "the connection was reset".

Firefox is now super sensitive to the shift of site Web, allows no ports or y at - there some problem in which Firefox to reject Web page or program?

So far, that seems to happen on Firefox 10.0 and our SSL https web portal. What is good on all other browsers.

Help, please.

Thank you and best regards,
Joel Li

I also have problems with 10 FF and Fortinet VPN.

It helped me a little... http://social.technet.Microsoft.com/forums/en-us/w7itprosecurity/thread/e6e8ada8-BC12-4f6f-8de3-1d3fd2ff4931

The problems seems to be in the Microsoft Security Update KB2585542, that TLS and SSL fixes. Apparently some websites that use SSL do not work properly because of this.

I had to disable the update of security KB2585542, then downgrade to FF 9.0.1.

BUT I don't want to remain unpatched and with an older version of FF. A way around this problem without downgrading?

EDIT: Just to be clear, even after I disabled the patch MS that I kept getting "the connection was reset" in FF10. Everything worked great until I upgraded to FF10 even with the patch on.

Tags: Firefox

Similar Questions

  • Error in connection for the first time, then it works after that (with the same string)

    I have a problem of connection error strange that a "OracleConnection.ConnectionString is not valid" with my program ASP.net/c#, but when I try the page again once it works after that.
    I create the connection string in the code and then pass it a bit like this:

    * private readonly OracleConnection conn = new OracleConnection (oradb); variable in class *.

    * / / in the Page_Load method *.
    _oradb = "password =" + oraPassword + ";". " User ID =' + oraUserName + '; Data source = mydb; » « ;" *
    _conn. Open(); *


    User/login name are also generated and inserted in the connection string and when you debug checked the connection string and it's exactly the same every time. It is as if the connection is interrupted and the first time, it attempts to restore, it gives the error, but then it opens the connection after that and failed again in the same window.
    Any ideas what this might be caused by? I close the connection to another method, after all I want to be the DB and written on the screen.

    The web server is IIS, is the version of .NET 3.5 and the library referenced Oracle is Oracle.DataAccess.dll. In addition, the DB version is 10.2.0.4. Don't know if everything what is necessary, but I thought I'd throw out there, just in case.

    Edited by: psaleh may 24, 2010 23:37

    When you create here of the OracleConnection object.

    * private readonly OracleConnection conn = new OracleConnection (oradb); variable in class *.

    _oradb might be empty or invalid during the first.

    Instead, try this-

    * private readonly OracleConnection _conn = new OracleConnection(); variable in class *.

    * / / in the Page_Load method *.
    _conn. ConnectionString = "password =" + oraPassword + ";". " User ID =' + oraUserName + '; Data source = mydb; » « ;" *
    _conn. Open(); *

    There is a separate forum for the ODP. NET-
    http://forums.Oracle.com/Forums/Forum.jspa?forumid=146

  • Impossible to connect to the smtp server and send an email using javamail.

    Hi all

    I am struggling with sending e-mail with javamail api.

    I've visited a few forums but not be able to solve the problem then post here.

    Details of the situation are:

    1 SMTP - to which we are able to connect with telnet and able to send emails that work even between the firewall.

    2 tried to disable IPV6 from my windows machine 7 after reading something - java tries to connect to smtp with IPV6 and it should be disabled so that javamail work.

    3 has tried to run the same code to a linux environment. in this environment, we are also able to connect to the smtp with telnet server and send mail

    the code I have tried is below.

    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    
    public class SendEmail
    {
    public static void main(String [] args){
    String to = "[email protected]";//change accordingly
    String from = "[email protected]";//change accordingly
    String host = "smtp.somthing.com";//or IP address
    
    //Get the session object
    Properties properties = System.getProperties();
    properties.setProperty("mail.debug", "true");
    properties.setProperty("mail.smtp.host", host);
    properties.put("mail.smtp.starttls.enable", "false");
    //properties.put("mail.smtp.port", "25"); //commented as its by default takes 25
    Session session = Session.getDefaultInstance(properties);
    
    ////compose the message
    try{
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
    message.setSubject("Ping");
    message.setText("Hello, this is example of sending email  ");
    
    // Send message
    Transport.send(message);
    System.out.println("message sent successfully....");
    
    }catch (MessagingException mex) {mex.printStackTrace();}
    }
    }
    

    I get the errors are

    DEBUG: JavaMail version 1.4.7
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "smtp.something.com", port 25, isSSL false
    Exception in thread "main" java.lang.RuntimeException: javax.mail.MessagingException: Could not connect to SMTP host: smtp.something.com, port: 25;
      nested exception is:
        java.net.ConnectException: Connection timed out: connect
        at emailer.SendMail.main(SendMail.java:64)
    Caused by: javax.mail.MessagingException: Could not connect to SMTP host: smtp.something.com, port: 25;
      nested exception is:
        java.net.ConnectException: Connection timed out: connect
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1961)
        at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654)
        at javax.mail.Service.connect(Service.java:295)
        at javax.mail.Service.connect(Service.java:176)
        at emailer.SendMail.main(SendMail.java:58)
    Caused by: java.net.ConnectException: Connection timed out: connect
        at java.net.DualStackPlainSocketImpl.connect0(Native Method)
        at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
        at java.net.PlainSocketImpl.connect(Unknown Source)
        at java.net.SocksSocketImpl.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:321)
        at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:237)
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1927)
        ... 4 more
    

    someone had a problem like this?

    suggestions are welcome...

    The server I used was not accessible from the telnet command or java code.
    However when I telnet to the server it was implicitly redirected to another server that I failed to notice.

    My sincere apologies to all
    I'll take more precautions before posting and check the facts in more detail.

  • 'Impossible to connect with the activation server' while trying to activate Windows 7

    Stater of the i run windows 7 on a laptop dell inspiron N5050 32-bit, windows asks me to re-enter my product key each tome I get it it displays after loading: impossible to connect with the activation server, see other ways to activate windows, pls make serious saying my trial period has expired why it cannot connect to the server to check the product key? Help, please

    Original title: activate windows

    Have you tried to restart by phone?

    How to activate Windows 7 manually (activate by phone)
     
    1) click Start and in the search for box type: slui.exe 4
     
    (2) press the ENTER"" key.
     
    (3) select your "country" in the list.
     
    (4) choose the option "activate phone".
     
    (5) stay on the phone (do not select/press all options) and wait for a person to help you with the activation.
     
    (6) explain your problem clearly to the support person.
     
    http://support.Microsoft.com/kb/950929/en-us

    Please run the Microsoft Genuine Diagnostics Tool then copy and paste the results into an answer here for further analysis:
    http://go.Microsoft.com/fwlink/?LinkId=52012

  • Impossible to install the bluetooth driver in XP Mode, error "this software cannot be installed remotely. Please connect to the local computer, and then try again.

    I have win 7 pro as my OS, whenever I try to install the bluetooth driver in xp mode, I get an error message saying "this software cannot be installed remotely. Please connect to the local computer, and then try again.

    Check this box:

    http://support.Microsoft.com/kb/2438651/en-us

  • 8 Feb: Impossible to connect, but the status is oke?

    Suddenly I could not sign on any of my accounts DPS in any of my browsers: I can connect, then the site of Disgital publication appears, but it is empty. No Folio in my Web interface. Then after a few seconds I went back to the log in page.

    Tried on my iMac and my MacBook with Safari, Firefox, Chrome... nothing. Same for aal three of my accounts DPS...

    InDesign also crashes when calling Folio Builder sign it.

    On the DPS site uptime/downtime, it says that everything is running.

    Any suggestions?

    Thnaks!

    Please try again.  The operations of the DPS team saw some alerts to fire at the time of your post and believes that they have restored the service.

    Michelle

  • using the KDL-46W700 how to connect to the wireless keyboard and wireless mouse

    Hello

    I use KDL-46W700 how to connect to the wireless keyboard and wireless mouse

    Unfortunately, you can not connect a keyboard wirelessly on your TV. Your TV will need a driver for this. Sad thing, it's impossible to install anything on the tv, which includes the driver for the external devices such as a wireless (except USB) keyboard... I recommend the SIDEVIEW TV application that has the remote control / function keyboard and mouse... this app is free and can be downloaded via Google Playstore... ^^.

  • I just bought the last Apple TV - I can't seem to connect with the App Store and Siri is completely useless. This is an example of how Apple is unable to produce a useful product?

    I just bought the last Apple TV - I can't seem to connect with the App Store and Siri is completely useless. This is an example of how Apple is unable to produce a useful product?

    Hello

    Be sure to follow the instructions in this article to support > set up your Apple TV (4th generation) - Apple supported

  • I installed Turbo Tax Delux 2011 tax software and get error 42002: could not connect to the update site to receive the latest updates.

    I installed Turbo Tax Delux 2011 tax software and get error 42002: could not connect to the update site to receive the latest updates. Turbo tax support site says adjust the parameters or the rules on my security software to allow certain programs to install and works as expected. How can I solve this problem to allow updates? Thank you. CraigrH

    What is your operating system and Service Pack?

    What is your anti-malware?

  • Hi, my videographer of windows program opens only once. It is impossible to reopen it unless I restart the pc. And then he does that only once and then comes the same problem. Thank you

    Hi, my videographer of windows program opens only once. It is impossible to reopen it unless I restart the pc. And then he does that only once and then comes the same problem. Thanks in advance

    Just a thought...

    It may be interesting to try to open Movie Maker and go to...
    Tools / Options / compatibility... tab and left click of the
    "Restore all defaults" button / OK.

  • The internet connection is lost when the computer puts itself to sleep after that idlen too long time needs to restart to re-establish the connection.

    I lose the internet connection

    Window vista Home premium intel core 2 quad CPU q6600 @ 2.40 ghz, 3.00 GB ram the System 32-bit

    The internet connection is lost when the computer puts itself to sleep after that idlen too long time needs to restart to re-establish the connection

    Hello

    Control Panel - device - network - manager double-click the used network - power management device
    Tab - uncheck the computer to allow him to turn off the device.

    Control Panel - Power Options - check at each change of diet Plan - change Plan settings - advanced
    Power settings - check the settings there.

    You may reset the default power Plans and and then change them as needed.

    How to restore the default power in Vista (and then go back and change as you wish)
    http://www.Vistax64.com/tutorials/198047-power-plan-restore-default-settings.html

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • HH.exe crashes - lost connection to the online help and Support window

    HH.exe crashes - lost connection to the online help and Support window

    SYSTEMATICALLY, FOR MONTHS, WHEN I SEARCH WINDOWS HELP I got THE MESSAGE.

    "You have lost your connection using Windows and Support website. . Try to connect again. "
     

    Windows Error Reporting shows several times:

    1. HH.exe hangs and does communicate with Windows
    2. MsSearch TerminateProcess & #x000d
    3. ApphelpSoftBlock & x000d #.

    I have no problem connecting to Windows Web sites otherwise or to other sites on the web.

    Can someone tell me how to fix this?

    (I'm running VISTA 32 bit)

    Hello

     
    This behavior is caused by a corrupted or damaged HH. DAT file.

    This may occur if Antivirus or a firewall, you have installed the program it blocks.
    http://Windows.Microsoft.com/en-us/Windows7/turn-Windows-Firewall-on-or-off
    http://Windows.Microsoft.com/en-us/Windows7/disable-antivirus-software
    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks
  • Laptop has virus and still unable to connect to the Web site after his withdrawal.

    Original title: laptop cannot connect to router

    my daughter portable computer had bankerfoxa virus I think that I got rid of but she still can't connect on the website I want to download microsoft security essential on his cell phone how if I can not connect? pls help

    Hi trinidadg,.

    Also try the following steps, you have a problem connecting to the Web sites.

    Try to do a System Restore to an earlier date when your computer was working well and try to run a scan for malware removal.

    Try to reset the Proxy settings to connect to the internet, as some malware enable proxy settings that block your ability to browse Internet sites.

    To reset the Proxy settings:

    Click Start-> in "search programs and files" type CMD-> in the programs in the list right click CMD and click 'run as administrator '.

    In the command prompt, type the following and press ENTER:

    NETSH WINHTTP RESET PROXY

    Restart the computer

    Touhami

  • SE message: printer not detected, the printer connected to the wireless modem and I can't print

    Original title: printer connected to the WiFi modem and pc but get message saying unable to print printer not detecded

    printer not detected on pc but it is installed and signel wirless right message bed printer not detected

    Hi howard douglas.

    1. were you able to print before without any problem?

    2. when the problem started?

    You can try to connect the printer directly to the computer and check what is happening.

    Check out the link:

    Find and install printer drivers

    http://Windows.Microsoft.com/en-us/Windows-Vista/find-and-install-printer-drivers

    Hope this information is useful.

    Jeremy K
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • I get an error message: The Nvidia OpenGL driver lost connection with the display driver and can not continue. Error code 8

    When I play the virtual Interactiver - Second Life Community. The screen turns white and windows tells me the display adapter stopped responding and has recovered. While the second life Viewer is still Virgin (white). I get the error in a box: The Nvidia OpenGL driver lost connection with the display driver and can not continue. The application must close. Please visit http://www.nvidia.com/page/support.html for help. Error code 8. Now, I worked with Nvidia to do a clean install of the latest version of the driver. a driver in safe mode installation. They suggested to try an earlier version of the driver. Nothing that they worked me and told me to see Microsoft. The pilot hangs every 30 min or so, all online in the second game of life. Can someone help me?

    Information System
    ------------------
    Time of this report: 13/06/2011, 19:40:20
    Machine name: BEN - PC
    Operating system: Windows 7 Professional 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110408) - 1631
    Language: English (regional setting: English)
    System manufacturer: HP-Pavilion
    System model: GC670AA-ABA a6120n
    BIOS: Phoenix - AwardBIOS v6.00PG
    Processor: Intel (r) Core (TM) 2 Duo CPU E4400 @ 2.00 GHz (2 CPUs), ~2.0GHz
    Memory: 4096 MB RAM
    Available OS memory: 3582MB RAM
    Page file: 1690MB used, 5472 MB of available space
    Windows Dir: C:\Windows
    DirectX version: DirectX 11
    DX setup parameters: not found
    User DPI setting: 96 DPI (100%)
    System DPI setting: 96 DPI (100%)
    DWM DPI Scaling: disabled
    DxDiag Version: 6.01.7601.17514 64 bit Unicode

    Two monitors

    Display devices
    ---------------
    Card name: NVIDIA GeForce 7600 GT
    Manufacturer: NVIDIA
    Track type: GeForce 7600 GT
    DAC type: Integrated RAMDAC
    The device key: Enum\PCI\VEN_10DE & DEV_0391 & SUBSYS_201F19F1 & REV_A1
    Memory display: 1768 MB
    Dedicated memory: 248 MB
    Shared memory: 1519 MB
    Current mode: 1600 x 900 (32 bit) (60 Hz)
    Name of the monitor: generic PnP monitor
    Monitor model: G205H (Acer)

    Card name: NVIDIA GeForce 7600 GT
    Manufacturer: NVIDIA
    Track type: GeForce 7600 GT
    DAC type: Integrated RAMDAC
    The device key: Enum\PCI\VEN_10DE & DEV_0391 & SUBSYS_201F19F1 & REV_A1
    Memory display: 1768 MB
    Dedicated memory: 248 MB
    Shared memory: 1519 MB
    Current mode: 1280 x 1024 (32 bit) (60 Hz)
    Name of the monitor: generic PnP monitor
    Monitor model: NEC LCD7V

    Hello

    I suggest that you have watch the following link below:

    http://forums.developer.nvidia.com/index.php?showtopic=5331

    I hope this helps.

Maybe you are looking for

  • Apps cannot access the images after 9.3.2

    Until recently I had not being updated in a very long time and noticed that some applications I tried needed updates higher than mine, so I did and now none of my apps can access my images. When I try to get a picture it will show all my images for a

  • iBook G4 battery problem

    My iBook G4 has a problem where the battery says its operation to reserve power even if the battery has about 80% charge left in it. When I go to charge the battery it will go to 98% or sometimes it will go to 88%. a way to solve this problem?

  • Windows Microsoft game then stopped working

    Today, I have problems with half of my games does not.  I get a message "microsoft windows game then has stopped working" when I try to play them.  Can you help me? Thank you. M D Knowlin

  • Contacts of Smartphones adding BBM blackBerry since the previous backup

    Got a replacement phone and had posted my BBM pin on facebook and I had a few new people add me. Then I restored the new phone from a restore point I had made from the phone before my loan, I got all my old contacts but lost ones I got recently. Is m

  • How can I sync my ipod to apple with windows media player?

    I see the media player has a synchronization function, but it is not picking up my ipod. I want to transfer music from my library on my ipod, but I don't want to use Itunes