HELP... problem establishing a secure connection when trying to get to Hotmail from browser

I have a Blackberry Curve.  I could sign in to Hotmail fine up until the other day when I received the error message "problem establishing a secure connection".  When I click details, it says untrusted certificate and unable to determine the certificate orgin.  I contact my service provider Wind who were NO HELP at all.  Someone, please help me!!???

Hi and Welcome to the Community!
Here is a KB that discusses that error:
Article ID: KB35687 Certificates issued by the GlobalSign Root CA show as untrusted
Hopefully it contains something useful! There also are multiple existing threads on this site that discuss that exact error...your review of those might prove useful, and a search of this site, using the error message, error code, or symptom, should reveal all applicable existing threads to you.
Good luck and let us know!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Getting can't connect with a secure connection when trying to log into Facebook

    I keep getting a message when I try to log into Facebook using Safari that it can't establish a secure connection to the server.  Any ideas on how to fix this?

    What did FaceBook say when you ask their technical support?

  • Not connecting when trying to get email

    I have just got a problem when trying to get email. The account is Ok and connected, but next to the button Get new email (under button email) my account is grey.
    Mail program is getting mail when starting the computer. I have marked that program should get mail every five minutes, but it is not working. Neither when I am trying to get it manual.
    Tried to make a new identical account (IMAP instead of POP) and then it worked. I am though afraid of deleting my old account and lose all my old emails.
    Have repaired authorities.
    What has gone wrong?

    Please clarify -- the Get New Mail button in the toolbar of the Mail window is gray, or also if you click on Mailbox in the menubar, and choose Get New Mail, then this account is not available? But there are no symbols beside the Inbox for this account?
    Ernie
    Message was edited by: Ernie Stamper

  • When trying to get my music from itunes a message pops up on my computer stating the disk cannot be found, what is this? I cant get the new music i purchased

    when trynig to get new music from itunes a message pops up on my computer saying the disk cannot be found. I dont know what this is, now i cannot not only get the new music i just purchased i seem to have lost all of my other music i already has as well. Is there anything I can do to fix this problem a get all my music back?

    Thanks for all of your help. Took the old girl in to a techie at London Drugs and my HD had failed, simple mechanical failure after 5 years of useful service. They mentioned that it was a pretty massive failure as they were unable to extract ANY information whatsoever. For those of you wondering what the warning signs were: slowing down of all processes, especially opening applications; freezing up when running an internet applcation and browsing at the same time; occasional starting up with a flashing folder with the dreaded ? (which would restart the first few times once I disconnected all peripherals, including the keyboard); finally full failure with only a white screen showing upon start up.
    I am getting a new HD, will reinstall from Time Machine and there will be peace in the valley.

  • Swing: when trying to get the values from a JTable inside an event handler

    Hi,
    I am trying to write a graphical interface to compute the Gauss Elimination procedure for solving linear systems. The class for computing the output of a linear system already works fine on console mode, but I am fighting a little bit to make it work with Swing.
    I put two buttons (plus labels) and a JTextField . The buttons have the following role:
    One of them gets the value from the JTextField and it will be used to the system dimension. The other should compute the solution. I also added a JTable so that the user can type the values in the screen.
    So whenever the user hits the button Dimensiona the program should retrieve the values from the table cells and pass them to a 2D Array. However, the program throws a NullPointerException when I try to
    do it. I have put the code for copying this Matrix inside a method and I call it from the inner class event handler.
    I would thank you very much for the help.
    Daniel V. Gomes
    here goes the code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import AdvanceMath.*;
    public class MathF2 extends JFrame {
    private JTextField ArrayOfFields[];
    private JTextField DimOfSis;
    private JButton Calcular;
    private JButton Ativar;
    private JLabel label1;
    private JLabel label2;
    private Container container;
    private int value;
    private JTable DataTable;
    private double[][] A;
    private double[] B;
    private boolean dimensionado = false;
    private boolean podecalc = false;
    public MathF2 (){
    super("Math Calcs");
    Container container = getContentPane();
    container.setLayout( new FlowLayout(FlowLayout.CENTER) );
    Calcular = new JButton("Resolver");
    Calcular.setEnabled(false);
    Ativar = new JButton("Dimensionar");
    label1 = new JLabel("Clique no bot�o para resolver o sistema.");
    label2 = new JLabel("Qual a ordem do sistema?");
    DimOfSis = new JTextField(4);
    DimOfSis.setText("0");
    JTable DataTable = new JTable(10,10);
    container.add(label2);
    container.add(DimOfSis);
    container.add(Ativar);
    container.add(label1);
    container.add(Calcular);
    container.add(DataTable);
    for ( int i = 0; i < 10 ; i ++ ){
    for ( int j = 0 ; j < 10 ; j++) {
    DataTable.setValueAt("0",i,j);
    myHandler handler = new myHandler();
    Calcular.addActionListener(handler);
    Ativar.addActionListener(handler);
    setSize( 500 , 500 );
    setVisible( true );
    public static void main ( String args[] ){
    MathF2 application = new MathF2();
    application.addWindowListener(
    new WindowAdapter(){
    public void windowClosing (WindowEvent event)
    System.exit( 0 );
    private class myHandler implements ActionListener {
    public void actionPerformed ( ActionEvent event ){
    if ( event.getSource()== Calcular ) {
    if ( event.getSource()== Ativar ) {
    //dimensiona a Matriz A
    if (dimensionado == false) {
    if (DimOfSis.getText()=="0") {
    value = 2;
    } else {
    value = Integer.parseInt(DimOfSis.getText());
    dimensionado = true;
    Ativar.setEnabled(false);
    System.out.println(value);
    } else {
    Ativar.setEnabled(false);
    Calcular.setEnabled(true);
    podecalc = true;
    try {
    InitValores( DataTable, value );
    } catch (Exception e) {
    System.out.println("Erro ao criar matriz" + e );
    private class myHandler2 implements ItemListener {
    public void itemStateChanged( ItemEvent event ){
    private void InitValores( JTable table, int n ) {
    A = new double[n][n];
    B = new double[n];
    javax.swing.table.TableModel model = table.getModel();
    for ( int i = 0 ; i < n ; i++ ){
    for (int j = 0 ; j < n ; j++ ){
    Object temp1 = model.getValueAt(i,j);
    String temp2 = String.valueOf(temp1);
    A[i][j] = Double.parseDouble(temp2);

    What I did is set up a :
    // This code will setup a listener for the table to handle a selection
    players.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    ListSelectionModel rowSM = players.getSelectionModel();
    rowSM.addListSelectionListener(new Delete_Player_row_Selection(this));
    //Class will take the event and call a method inside the Delete_Player object.
    class Delete_Player_row_Selection
    implements javax.swing.event.ListSelectionListener
    Delete_Player adaptee;
    Delete_Player_row_Selection (Delete_Player temp)
    adaptee = temp;
    public void valueChanged (ListSelectionEvent listSelectionEvent)
    adaptee.row_Selection(listSelectionEvent);
    in the row_Selection function
    if(ex.getValueIsAdjusting()) //To remove double selection
    return;
    ListSelectionModel lsm = (ListSelectionModel) ex.getSource();
    if(lsm.isSelectionEmpty())
    System.out.println("EMtpy");
    else
    int selected_row = lsm.getMinSelectionIndex();
    ResultSetTableModel model = (ResultSetTableModel) players.getModel();
    String name = (String) model.getValueAt(selected_row, 1);
    Integer id = (Integer) model.getValueAt(selected_row, 3);
    This is how I got info out of a table when the user selected it

  • Security exception when trying to call a DLL from an applet

    Hi all,
    I really hope someone out there can help me. I'm trying to call a windows DLL from an applet but always get some error when the call to the DLL comes. If I run it on the command line (calling a dummy main function that only calls the dll) I don't get any error. However, with the -Djava.security.manager, I get an ExceptionInitialiserError. When running it in a browser, I seem to get any of three errors, the above, securityAccessControlException (as I was expecting) and even NoClassDefFoundError.
    I realise of course that this has to do with the permissions in effect but nothing seems to happen when I change the policy file, so I have to feeling that I'm chaning the wrong file. The one I'm using is the one the JRE entry in the registry is pointing to, Java Runtime Environment->CurrentVersion...
    I even tried giving everything in the applet's directory AllPermission.
    So what I'm wondering is this. Is there any way to check if your policies are actually working and when you update the files, what do you need to do to make the changes take effect?
    Best regards,
    G�sli

    I have the same problem. Have you solved your problem, if so please let me know what the solution is.
    Einar �rn

  • I am getting a -50101 error when trying to get analog input from a compact rio

    I am just doing the initial setup of my compactRIO system and have been able to successfully add the cRio in Max and then into a new project.  I created a very simple VI with analog input that I am trying to read into an indicator, following one of teh tutorials.  The module I am reading the input from is a cRio-9201.  The input is voltage.  I have already added the module to teh project under the FPGA, which is under the RIO in the project tree.  Any ideas what I may be missing would be greatly appreciated!
    Thanks

    The 9201 C Series module needs to be created under the FPGA Target
    (cRIO-910x) in the LabVIEW Project. You can either discover the module
    or create it by type. In case you haven't created the FPGA Target
    (cRIO-910x) under the cRIO Controller (cRIO-900x), you must do that
    first. You also have the option of discovering the cRIO-910x or to
    create it by type. I suggest you do it through discovery, so you don't
    need to manually configure the addresses.
    As how to create the items, that's done through right-click on the
    cRIO-900x and select New>>Targets and Devices.... It will pop up
    a dialog in which you expand FPGA Target and it will discover the FPGA
    Target. Similar steps are followed to create the 9201 module.
    If you don't see the FPGA Target and C Series module options, then you
    need to make sure NI-RIO 2.0 is installed in you computer.
    JMota

  • Error when trying to get DI API from UI API

    Hi.
    I have this code:
    SAPbouiCOM.SboGuiApi SboGuiApi = null;
                string sConnectionString = null;
                SboGuiApi = new SAPbouiCOM.SboGuiApi();
                //sConnectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056";
                sConnectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056";
                SboGuiApi.Connect(sConnectionString);
                SBO_Application = SboGuiApi.GetApplication(-1);
                SBO_Company = (SAPbobsCOM.Company)SBO_Application.Company.GetDICompany();
    I get this error at the last line:
    Internal error (-112) occurred  [131-183] -
    Any Idea why?

    Hi,
    Have you checked this thread:
    SboGuiApi.Connect(sConnectionString)
    Thanks,
    Gordon

  • I can no longer access facebook from my macair and when i try the following error message appears "unable to establish a secure connection to the server.

    I have had no issue accessing Facebook in the past using my MacAir.  Last night each time I would try and access the page, an error message would appear, saying that unable to establish a secure connection to the server "www.facebook.com"".  The problem continues this morning.  I have not updated any software or made any changes.  One minute it was working, the next it was not.  I do not have any parental controls; I have deleted the cookies; and I have reset safari.  I can access all other websites that I have tried.  I am using Version 6.0.4.

    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:  Remove All Website Data
    Then delete the cache.
    Now open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If nothing above helped, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, restart your internet modem and router.  Then quit and relaunch Safari and try Facebook.

  • How to update to ios6 when "could not establish a secure connection to the device" message appears with Jailbroken iPhone 4

    Hi all,
    I've been trying to update my Jailbroken iPhone 4 to ios6 but, unfortunately, I keep getting the "could not establish a secure connection to the device" when connecting it to iTunes. I've tried updating "over the air" but this flags up an error too. Finally, I can't restore to a previous backup because, the backups I previously had, were stored on my old (broken) computer.
    CAn anyone help? Any suggestions would be greatly appreciated!
    Thanks,
    Rakesh.

    You jailbroke your phone.
    Only google may help now.
    You'll find no help here.
    If Haiku you don't like,
    Then to Google you should hike,
    You jailbroke your phone,
    Now on these forums you are alone,
    'Tis a day of no cheer,
    For we cannot help here.
    In non-poem; You jailbroke your phone, which is not support by Apple, meaning updates will not work on it as they would if you were running official software.
    As per the ToC for the device, and for these Discussion Boards (both you agreed too), you will not get support either from the discussion board, or from Apple directly.
    Your best bet is to Google for help and learn a valuable lesson; Jailbreaking can definitely brick your phone.

  • I'm having a problem accessing Bupers Online using my CAC reader. I get an error that says safari can't establish a secure connection to the website. Does anyone know how to fix this?

    I am having a problem accessing Bupers Online on OS X Mountain Lion. I get an error that says Safari cant establish a secure connection with Bupers Online. Does anyone have any tips to access Bupers?

    I don't use CAC certificates, but since updating to 10.9.3, I too am getting the same error, BUT only with some HTTPS sites (e.g., https://webmail.pairlite.com), not all. Meanwhile, Firefox (was 12.0, now 29.0.1) connects with no issue.
    I too have verified date/time is set automatically, checked for (and fixed) disk integrity errors and permissions, and rebooted, all to no avail.
    Update:
    Well...heck. Tried accessing the problematic site via the Guest account, and that WORKED. So...back to the drawing board.

  • I keep getting an error message that I have an invalid security code when trying to make purchased in itunes.  But my security code and billing info are valid.  How do I rectify this problem?

    I keep getting an error message that I have an invalid security code when trying to make purchased in itunes.  But my security code and billing info are valid.  How do I rectify this problem?

    Did you ever get an answer to this? Im having same issue now! So frustrating!

  • My sons ipod keeps coming up with security questions when trying to conect to apple store. We try to answer or set up but it just goes back to the begining. can you help ?

    Hi - My sons ipod touch keeps coming up with three security questions when trying to conect to apple store. We try to answer or set up but it just goes back to the begining and asks again . can anyone help ?

    If you get an error that says can't backup, try moving the existing backup file to a safe location and thry again. again. You can find the location of the backup file here:
    iPhone and iPod touch: About backups

  • I've been trying to create a Skype account, but I can never establish a secure connection to website

    No matter which browser I use (Safari, Firefox or Chrome), I can't get to the page to create a new account / sign into an account because the browser can't establish a secure connection. For example, Safari gives me this message: Safari can't open the page "https://secure.skype.com/portal/overview" because Safari can't establish a secure connection to the server "secure.skype.com". Firefox and Chrome give me similar messages. I downloaded the application to my MacBook Pro without any issue, so I really don't understand why this seemingly simple step is giving me trouble.

    We are currently experiencing issues with several Skype services including account registration. Our engineers are investigating the issue and hope to resolve soon. We apologize for the inconvenience. Follow further updates here: http://heartbeat.skype.com/2015/07/skype_web-service_disruption.html

  • Clean Access Server could not establish a secure connection

    I have a OOB Real IP GW setup on v4.1.2
    I seem to have a problem with the CAS connecting to the CAM although I have added the CAS to the CAM and can manage the CAS from the CAM.
    I noticed while troubleshooting client authentication that the client was not being redirected to the logon web page and it had full access to the trusted network from the untrusted authentication vlan. I eventually figured out that if I change the CAS Filter Fallback method from Allow to ignore then it tries to authenticate the client. However the fact that the fallback is activated tells you that something is not right.
    I have 2 problems:
    A) The clients web page is redirected for authentication but it only lists the domain name in the URL and not the hostname or host IP. In the lab I do not have a DNS server and it would not help as it does not include the hostname in the URL anyway. How do I fix this or perhaps it's related to the 2nd problem.
    B) When I manually change the URL by replacing the domain name with the IP of the CAS (untrusted OOB Real IP GW) then I get the following error message when logging on:
    Network Error:
    Clean Access Server could not establish a secure connection to Clean Access Manager at mydomain.com.
    This could be due to one or more of the following reasons: 1) Clean Access Manager certificate has expired 2) Clean Access Manager certificate cannot be trusted or 3) Clean Access Manager cannot be reached.
    Please report this to your network administrator.
    I would guess the culprit is No 2 but surely the system can run on self signed certificates? I have an NTP server so time is in sync. I have even tried regenerating the cetificates on the CAM
    & CAS.
    Any ideas?

    To overcome problem B, I regenerated the SSL Certificates using the host IP address instead of the name for all the CAM & CAS appliances. This seems to have resolved this problem.
    I also SSH'd from each of the CAS's to each of the CAM's from the CLI and it then prompts to permanently store the certificates. I'm not sure it this was necessary though.

Maybe you are looking for