If the HTML Access client needs to be served by the desktop, you must perform some setup tasks on the desktop. This enables a user to point a browser directly at a desktop.

Prerequisites

  • Download the Horizon HTML Access portal.war zip file from the VMware download page at http://www.vmware.com/go/downloadview.

    The filename is VMware-Horizon-View-HTML-Access-y.y.y-xxxxxx.zip, where y.y.y is the version number and xxxxxx is the build number.

Procedure

  1. Open Control Panel.
  2. Navigate to Programs and Features > Turn Windows features on or off.
  3. Select the check box Internet Information Services and click OK.
  4. In Control Panel, navigate to Administrative Tools > Internet Information Services (IIS) Manager.
  5. Expand the items in the left pane.
  6. Right-click Default Web Site and select Edit Bindings....
  7. Click Add.
  8. Specify https, All Unassigned, and port 443.
  9. In the SSL certificate field, select the correct certificate.
    Option Action
    Certificate vdm is present. Select vdm and click OK.
    Certificate vdm is not present. Select vdmdefault and click OK.
  10. In the Site Bindings dialog, remove the entry for http port 80 and click Close.
  11. Click Default Web Site.
  12. Double-click MIME Types.
  13. If the File name extension .json does not exist, in the Actions pane, click Add.... Otherwise, skip the next 2 steps.
  14. For File name extension, enter .json.
  15. For MIME type, enter text/h323 and click OK.
  16. For File name extension, enter .mem.
  17. For MIME type, enter text/plain and click OK.
  18. Copy VMware-Horizon-View-HTML-Access-y.y.y-xxxxxx.zip to a temporary folder.
  19. Unzip VMware-Horizon-View-HTML-Access-y.y.y-xxxxxx.zip.
    The result is a file named portal.war.
  20. Rename portal.war to portal.zip.
  21. Unzip portal.zip to the folder C:\inetpub\wwwroot.
    If necessary, adjust the permissions on the folder to allow files to be added.
    The folder C:\inetpub\wwwroot\portal is created.
  22. Open Notepad.
  23. Create the file C:\inetpub\wwwroot\Default.htm with the following content (replace <IP address or DNS name of desktop> with the actual IP address or DNS name of the desktop):
    <HEAD>
    <noscript>
       <meta HTTP-EQUIV="REFRESH" content="0; url=https://<IP address or DNS name of desktop>/portal/webclient/index.html">
    </noscript>
    </HEAD>
    <script>
       var destination = 'https://<IP address or DNS name of desktop>/portal/webclient/index.html';
       var isSearch = !!window.location.search;
       window.location.href = destination + (isSearch ? window.location.search + '&' : '?') + 'vadc=1' + (window.location.hash || '');
    </script>