"The initiallization SSL during connection failed." Error

Hello:

We just to install a global certificate in our server VMware View connection and now remote ThinApp VMware clients and web clients do not work.  With ThinApp, successfully view customer, he meets with the connection to the server and authenticates the user, but when he tries to establish a tunnel connection, it fails with the error "authentication failure of the server to connect to the view.  Initialization of SSL when connecting to the server ""https://a.b.c:443' failed. " "

Is certainly not a problem to solve.  When the name cannot be resolved by the customer, the error message reads "the view connection server authentication failed.  The server name "http://a.b.c:443' could not be resolved..." »

I also confirmed this with packet sniffing.  The client opens a connection on port 443 on the server view connection and then appears to reject the certificate of the server.  (A TLS notify and close alert is sent by the client.)  When you connect for authentication instead of establishing the tunnel, there is no problem.

I wonder if the fact that the certificate is a certificate with wildcards may contribute to this question.  For example the portion of tunnel of the customer have been written using another SSL/TLS library as part maybe authentication would result questions.

The most confusing part of this question, is that ThinApp client is agree with the certificate on the local network (these are different machines).

Any other advice would be appreciated.

Thank you!

Update: in the application logs customer, the tracking error.

SSL: ClientHandshake: InitializeSecurityContext FAILED, Error 0 x 80090308 (the token supplied to the function is invalid).

The exact same ThinApped View Client does not generate this message on the machines on the local network.  Unfortunately, I can't try to attach a remote computer to the local network to test because of politics.

Post edited by: njlaw

Not sure if this will help or not, but I thought I'd throw it out there.   About two months ago, I was working with a customer who had some strange issues SSL conecting in our view eviroment.   They were running a proxy server, so we focused on it and after a few days, I opened a ticket of VMware.   Very quickly, I received a temporary customer who solved the problem of our customers.  When I asked for more details it gave me the info below.  If you use a proxy, this could be it.  My SR number has been 1524766561 if you need to reference it.

"The problem occurs when a given frame of"token"or SSL data exceeds the size of a single TCP read, which requires so a second reading to complete the token. What causes the second reading data to replace the first reading, rather than add. When this happens, the Windows Client to view SSL handshake failure reports.

This problem may also occur if you use your own server certificate SSL has Extended Validation (which makes the bigger than the VMware View supplied self-signed certificate certificate) and go through a proxy server (which may change the TCP characteristics like the size packages). »

If you have found this device or any other useful post please consider the use of buttons useful/correct to award points

Tags: VMware

Similar Questions

  • Flex/Zend Channel Connect failed error...

    Hi guys.

    I use Flex and php to develop my project. Everything works fine on my local machine. However, when I upload my files on my server (godaddy.com). I got the error when loading my flex application.

    The popup error message is

    Send failed

    Channel.Connect.failed.Error

    Netconnection.call.Badversion: url:

    http://mydomail/folder/gateway.php

    I send my ZendFramewrok folder on my server and amf_config.ini has been set up. (webroot = ) http://mydomain )

    I don't know what is happening here. Help, please. Thank you.

    Update: my gateway.php

    <?php
    ini_set
    ("display_errors", 1);
    $dir
    = dirname(__FILE__);
    $webroot
    = $_SERVER['DOCUMENT_ROOT'];
    $configfile
    = "$dir/amf_config.ini";

    //default zend install directory
    $zenddir
    = $webroot. '/ZendFramework/library'; //I did upload the ZendFramwork folder

    //Load ini file and locate zend directory
    if(file_exists($configfile)) {
    $arr
    =parse_ini_file($configfile,true);
    if(isset($arr['zend']['webroot'])){
      $webroot
    = $arr['zend']['webroot'];
      $zenddir
    = $webroot. '/ZendFramework/library';
    }
    if(isset($arr['zend']['zend_path'])){
      $zenddir
    = $arr['zend']['zend_path'];
    }
    }


    // Setup include path
    //add zend directory to include path
    set_include_path
    (get_include_path().PATH_SEPARATOR.$zenddir);
    // Initialize Zend Framework loader
    require_once
    'Zend/Loader/Autoloader.php';
    Zend_Loader_Autoloader::getInstance();
    // Load configuration
    $default_config
    = new Zend_Config(array("production" => false), true);
    $default_config
    ->merge(new Zend_Config_Ini($configfile, 'zendamf'));
    $default_config
    ->setReadOnly();
    $amf
    = $default_config->amf;

    // Store configuration in the registry
    Zend_Registry::set("amf-config", $amf);
    // Initialize AMF Server
    $server
    = new Zend_Amf_Server();
    $server
    ->setProduction($amf->production);
    if(isset($amf->directories)) {
    $dirs
    = $amf->directories->toArray();
    foreach($dirs as $dir) {
        
    // get the first character of the path.
        
    // If it does not start with slash then it implies that the path is relative to webroot. Else it will be treated as absolute path
         $length
    = strlen($dir);
         $firstChar
    = $dir;
        
    if($length >= 1)
          $firstChar
    = $dir[0];

        
    if($firstChar != "/"){
         
    // if the directory is ./ path then we add the webroot only.
         
    if($dir == "./"){      
           $server
    ->addDirectory($webroot);
         
    }else{
           $tempPath
    = $webroot . "/" . $dir;
        $server
    ->addDirectory($tempPath);
      
    }    
     
    }else{
          $server
    ->addDirectory($dir);     
     
    }
    }
    }
    // Initialize introspector for non-production
    if(!$amf->production) {
    $server
    ->setClass('Zend_Amf_Adobe_Introspector', '', array("config" => $default_config, "server" => $server));
    $server
    ->setClass('Zend_Amf_Adobe_DbInspector', '', array("config" => $default_config, "server" => $server));
    }
    // Handle request
    echo $server
    ->handle();

    Error in gateway.php if I call him directly.

    WARNING: require_once(Zend/Loader/Autoloader.php) [function.require - once]: failed to open stream: no such file or directory in /home/content/79/4687979/html/parkerList/gateway.php on line 27

    Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader/Autoloader.php' (include_path ='.: / usr/local/php5/lib/php:http://blackwheels.info//ZendFramework/library"") in /home/content/79/4687979/html/parkerList/gateway.php on line 27

    Gateway.php is the rat. but I can't understand what is wrong. Zend/Loader/Autoloader.php is under the "ZendFramework/library" of server root folder. I don't understand why my application can't find it. Thanks again!

    Hello

    I had the same problem (I think). I have some sort of solution: not a very good, but at least it works (for me)...

    So, I put the ZendFramework directory in my application directory (this is why it is not a good solution...) and changed the layout of directories in amf_config.ini and gateway.php.

    (on my server: .../myFlexApp/ZendFramework)

    new file amf_config.ini:

    [zend]
    ; define the absolute path to the webroot directory, example:
    ; Windows: C:\apache\www
    ; MAC/UNIX: / user/apache/www
    Webroot =.

    ; define the absolute path to the zend installation directory, example:
    ; Windows: C:\apache\PHPFrameworks\ZendFramework\library
    ; MAC/UNIX: / user/apache/PHPFrameworks/ZendFramework/library
    zend_path = ./ZendFramework/library

    [zendamf]
    AMF.production = true
    AMF. Directories [] is. / services

    and at the beginning of the gateway.php file:

    ini_set ("display_errors", 1);
    $dir = '.';
    $webroot = $_SERVER ['DOCUMENT_ROOT'];
    $configfile = "amf_config.ini";

    By default zend installation directory
    $zenddir = $webroot. "/ ZendFramework/library";

    And for me it's OK.

    I will try to solve the problem in a more clean way later, with a repertoire ZendFramework separated from the application directory. Maybe someone else can help? With a few "echoes" in the gateway.php file, I was not able to understand what was wrong, I'm not familiar enough with the configuration of php.

    I hope this can help you!

  • After you install the updates, programs disappeared from the start menu, internet connection fails after leaving "sleep" mode and the system restore disappeared.

    Original title: most of the programs have disappeared from the start menu.

    Family Vista using premium, updates of Windows installed 10/8 then found that most of the programs has disappeared from the start, internet menu connection fails after that out 'sleep' mode and restore Sytstem disappeared.

    Help please

    Hello

    Please see below for a possible solution:

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-system/programs-missing-from-start-menu-in-Windows-7/507709ad-EDBB-46e7-AF44-11a64d36b854

    Also, please create a new user profile and see if the problem is there again. If this is not the case, see the following:

    Difficulty of a corrupted user profile

    http://Windows.Microsoft.com/en-us/Windows7/troubleshoot-problems-with-installing-updates

  • Error message when you try to connect to the HP ePrint ' ajax submit failed: Error = 403, forbidden.

    HP Photosmart 7525

    Windows 7

    Ajax submit failed: Error = 403 Forbidden

    Installed new printer: Photosmart 7525

    I am trying to configure my ePrint account and add my printer and it wont let me sign in or create a new account.

    Thanks for your help!

    Deb

    You can also restart the computer. After he stops down to leave it for at least a minute and then reattempt access the site once computer is back on and running. I would also check to make sure that Java is up to date and that Adobe Flash is up to date.

  • HP Laserjet Pro 400 - M451dw: M451dw "Connect failed" error

    I posted this in the wrong forum (oops) so let's try that here.

    We just upgraded our router (to a Belkin AC1200 router) and I tried to connect the printer as I did with the old one (press the button on the front of the printer wireless, press the WPS button on the router), but the printer keeps gives me an error "connection failed" and resets everything back to the old settings. I turned off the printer and he turned his back, did not make a difference. I tried to connect via the network settings dialog box to the printer, but I get the same error. I'm doing something in the wrong order, something I can try? I need to get to the top and printing as soon as POSSIBLE. Thank you.

    Well, I don't know where you got the idea that the printer and the router must have the same IP, because they shouldn't. Reset the printer to the factory/network settings. Remove all software on the computer. Now completely reinstall the printer from scratch.

  • Get the "Local WMI connection failed" error when you try to run bbntcfg

    Wondering if anyone is aware of this error and what might be required to occur. The whole service of 4.40 BBPE is dying and when I try to run bbntcfg I get this error. I use this on a Windows 2000 Server (yuck, I know).

    The service fails with the following error;

    The Big Brother Professional Edition Client 4.40 ended in unexpected ways. He did this 3 times. The following corrective action will be taken in 0 milliseconds: no action.

    And I believe that these previous posts may be related as well (occur in the same minute);

    The server {8BC3F05E-D86B-11D0-A075-00C04FB68820} is not registered with DCOM within the required time.

    The server {8BC3F05E-D86B-11D0-A075-00C04FB68820} is not registered with DCOM within the required time.

    Please try first:

    from a command window, run:

    net stop winmgmt

    CD %windir%\system32\wbem

    referential repository.old Ren

    net start winmgmt

    If the problem is not resolved, continues:

    winmgmt /clearadap
    ammo winmgmt
    WinMgmt /unregserver
    WinMgmt/regserver
    WinMgmt /resyncperf

    If the problem is still not resolved, continues again:

    CD %windir%\system32\wbem
    Mofcomp.exe cimwin32.mof
    Regsvr32 /s wbemupgd.dll
    Regsvr32 /s wbemsvc.dll
    Wmiprvse/regserver

    Hope this works now :)

  • Secure connection failed, error code: sec_error_bad_signature

    I installed windows 10 today. Not when I go to sites such as amazon on google, I get an error.

    'An error occurred during a connection to www.google.co.uk. Peer's certificate has an invalid signature. (Error code: sec_error_bad_signature). The page you are trying to view cannot be shown because the authenticity of the received data could not be verified. Please contact the web site owners to inform them of this problem.'
    

    So boring, everything was ok until today. Bloody Microsoft! I have re-installed Firefox but that does not cure the problem. Am temporarily using Chrome that doesn't have the bug, I can buy things from Amazon and search in google and use my gmail and youtube accounts. Can someone help me please? Thank you very much.

    Hey, please disable https scaning in avast:

    1. Open the Avast dashboard on an affected system.
    2. Select settings in the left side menu.
    3. Adopt a Protection Active.
    4. Click on customize next to the Web Shield.
    5. Uncheck the option "Enable HTTPS analysis", and then click ok.

    http://www.gHacks.NET/2014/10/31/avasts-HTTPS-scanning-interferes-with-Firefox-and-other-programs/

  • Any way to fix a "Secure connection failed" (Error Code: sec_error_ocsp_unknown_cert)?

    Recently (I think the 30 Oct) I've been encountering this problem while trying to connect to the web site of Rooster teeth. I tried to clear the cookies and cache several times to no effect and suggestion of help page for the workaround with a click on "or you can add an exception...". "does not work because this button does not appear on the warning page more. I get only this error warning when you try to connect ( http://roosterteeth.com/home.php ) and only when you attempt to open a session, it's not pop up for anything else on the site or any other site that I went to. Any help on solving this problem would be greatly appreciated.

    Hello TSturtledove,

    1. In the address bar, type Subject: config and press enter. The subject: config "this might void your warranty!" warning page may appear.
    2. Click on I'll be careful, I promise! to keep the comments: config page.
    3. the next security.ssl.enable_ocsp_stapling to copy and paste into the search field
    4. Double-click on it to make it fake
    5. Close the page, exit firefox and restart.

    no doubt the problem is the web site, when the problem is resolved by the site, go back and put the parameter to true .

    Thank you

  • Troubleshoot utility could not determine the speed of my connection. Error code 0 x 80070057

    Attempted to have the resolution of the problems of control of my connection speed because YouTube videos were playing and pausing a lot. Convenience store reported an error occurred during troubleshooting and gave the following casablenca: -.

    Package ID: diagnosis of IE security

    Path: unknown

    Error code: 0 x 8007057

    Source: catalog

    User: Hand-HP-ADMIN

    Context: restricted

    Hello

    -What Web browser are you using to play youtube videos?
    -Respect the limit with the specific Web site?
    -Have you contacted your ISP about slow connection?
    -You are aware of any changes made on the computer before this problem?
     
    Method 1: Run the FIXIT from Microsoft from the link below and check if the problem persists.
    Playing video files crashes or blocking Internet Explorer - Windows
    http://support.Microsoft.com/mats/video_freezes_or_crashes/

    Method 2:
    run the Microsoft FIXIT from the below mentioned link and check if it helps.
    Troubleshoot Internet Explorer to IE quick, safe and stable
    http://support.Microsoft.com/mats/ie_performance_and_safety/
     
    Method 3: If the issue is only with Internet Explorer, I wouldf suggest the steps from the link below and check if it hellps.
    The video problems when you use Internet Explorer
    http://support.Microsoft.com/kb/2532294
    For reference:
    Slow PC? Optimize your computer for peak performance
     
    Hope this information helps.
  • Cisco E1000 to the netopia DSL modem connection failed

    Hello all: I have AT & T DSL service and purchased the Cisco router because my AT & T Home Portal only supports 802..11b/g. I set up my old Netopia DSL modem to bridge mode, then connected to the router Cisco it and inserted the easy installation disc. He failed every time. I was told aby a tech AT & T as the software of the router should automatically pick the information of DSL service, but I guess he was wrong. do I have to manually configure this router? If someone knows a link to simple instructions to establish this connection, I would be very happy... I think I can have the answer to my problem, but need to check it out - when you use the Setup disk, the Cisco router should be disconnected in any environment and comes directly connected to the computer with the Setup disk. Could be the problem? Thanks in advance, SD

    It worked!  Thank you.  Everything is reset and work like a charm.  Can't believe how fast 802.11n is compared to g.

    SD

  • Why ssl (secure connection) be error in virtualbox?

    I installed VirtualBox on windows 7. When running windows xp and other OS using virtualbox, I can not navigate on facebook because it has a secure connection, please see this screenshot:http://i.stack.imgur.com/E0FSM.jpg

    This windows xp has a NAT connection.
    Any idea, so I can browse ssl connections in virtualbox os? I asked this on the Forum VB but they keep saying this isn't a VB issue!

    any ideas would be great :) in the other hand, I use Eset antivirus software in my windows 7 :)

    Thank you

    Hi Harold,.

    I appreciate the efforts that you put to publish the query on this forum.

    As you use NAT connection on a virtual machine, I suggest you to publish the application on Microsoft's TechNet forum to get help. Check out the link to do so:

    http://social.technet.Microsoft.com/forums/Windows/en-us/home?category=w7itpro

    Please let us know if you have more queries on Windows.

  • I'm unable to connect database of cloud of the trial, it gives connection refused error

    I am trying to connect to cloud trail oracle database using sql developer, I get the error message "connection refused".

    Service URL

    https://databasetrial5793-inexcelityglotrial51349.DB.US2.oraclecloudapps.com/Apex

    Username: Tes_user

    SFTP host: port sftp.us2.cloud.oracle.com 22

    username: us220585

    What version of sql developer are you helping and you use the "Cloud connect" correct?

  • Check the Apple ID server connection failed

    It is a PAIN.  There are a few steps, so please read it before you answer.

    I got a Macbook Pro, iPad, and iPhone.  NO PROBLEM AT ALL.

    I just bought a refurb Macbook Pro from Apple.  Since then, I can't connect with my old Macbook Pro.  I tried via iCloud, iCloud.com, iTunes and on the OLD Macbook, it will not sign.  I disconnected all devices, changed my password length to meet the new requirements and able to connect back with no problem on all my devices except my old Macbook Pro.

    None of this was a problem before three weeks ago, I added a refurb Macbook Pro from Apple.

    Any thoughts?

    I'm sorry.  I also forgot to mention that I am referring to my APPLE ID.

  • the magic mouse 2, connection fails

    My Magic Mouse 2 (new product) is 'connected', but I don't get the option of use or activate this.

    If you always use Yosemite, which is more likely to be the reason.   You need to upgrade your computer to El Capitan, i.e. 10.11.3.   Your machine should accept this OS smoothly.

  • Trying to set up account but get the following message: Ajax submit failed: Error = 403, forbidden

    You can use the HP passport to sign in to eprint center?

    Hi, DK28, I hope you do well and welcome in the community;

    Try this procedure 2;
    1. use another browser (Internet Explorer, Chrome, firefox, safari, Opera).
    2. connect by using an alternative account (Shapfish form HP, google, Facebook account). If you do not have an account with one of those that mention create and follow this to connect by using the new account. https://h30495.www3.HP.com/help#eprint

    I hear here (the other members of the community) that there is a problem in which the engineer work diligently that can have an impact on this process. At the same time, I know that other members have some success using the above steps.

    I hope this helps!
    RobertoR

Maybe you are looking for

  • Other control problem faced in the tab with flashing property control...

    Ay one can help me? I send you a vi, in that I face a problem with the tab control. So I put a list on page1 tab control multi-column box and apply the flashing on her property that at run time the flashing can visible on all pages of the tab control

  • my DVD will not play on my laptop!

    Hello I have an Acer laptop and recently, I tried to play DVDs on it, but just make a big noise like and engine and does not play the disc! I tried to read the disc in the software acer arcade dulux but nothing. Please help me!   Thank you

  • Pop up, who wants to start a security sweep.

    I get pop - periodic ups who say I have a problem of security and you want to run a scan when I try several times to close the window, I can't.  I've never clicked to continue.  Then, he begins a kind of scan and won't stop until I force an end to th

  • Microsoft community

    Hello I wonder why we should connect and disconnect from the Microsoft Community? Normally I just connect and then when I go out, I hit the close button. I find it easier that I can come back later in the day without having to type my password again

  • Replace CE500 VCS Starter Pack and keep Movi.

    Hello VCS STARTER PACK our users is getting old and we want to replace it. The customer uses a lot of Movi, but not with the TMS. If replace us CE500 of VCS STARTER PACK and keep Movi, TMS is required? Use Movi no TMS?