ASP.NET 5 beta 8 requires HttpPlatformHandler MSI installed on build server

kirk.marple's Avatar

kirk.marple

16 Oct, 2015 09:09 AM

With the latest release of ASP.NET beta 8, it requires a new HttpPlatformHandler to be installed on the server running VS2015. This is achieved with the latest IDE tooling update, but on the build server, it needs this separately.

Is there a way to install an MSI via build script, or would this have to be done on the image itself?

Thanks,
Kirk

-----------

See this discussion thread:
https://github.com/aspnet/Hosting/issues/412

And from their announcement:
https://github.com/aspnet/Hosting/issues/364

1. Download and install HttpPlatformHandler v1.2 on the server.

x86 version: http://go.microsoft.com/fwlink/?LinkId=690722
x64 version: http://go.microsoft.com/fwlink/?LinkId=690721

  1. Support Staff 1 Posted by Feodor Fitsner on 16 Oct, 2015 04:57 PM

    Feodor Fitsner's Avatar

    It could be easily installed with the following script:

    Write-Host "Installing HttpPlatformHandler..."
    $msiPath = "$($env:USERPROFILE)\httpPlatformHandler_amd64.msi"
    (New-Object Net.WebClient).DownloadFile('http://download.microsoft.com/download/8/1/3/813AC4E6-9203-4F7A-8DD5-F3D54D10C5CD/httpPlatformHandler_amd64.msi', $msiPath)
    cmd /c start /wait msiexec /i $msiPath /quiet
    Write-Host "Installed" -ForegroundColor green
    

    However "ASP.NET beta 8" is the news. We are going to update VS 2015 on build workers in the meantime.

  2. 2 Posted by kirk.marple on 16 Oct, 2015 06:10 PM

    kirk.marple's Avatar

    Great, thanks. Is there a place to look for notifications when build workers get updated?

  3. Support Staff 3 Posted by Feodor Fitsner on 16 Oct, 2015 06:15 PM

    Feodor Fitsner's Avatar
  4. 4 Posted by kirk.marple on 20 Oct, 2015 01:56 AM

    kirk.marple's Avatar

    Hi Feodor, is there an ETA on getting the build workers updated to beta 8? Just wanted to plan out our next steps.

    Thanks,
    Kirk

  5. Support Staff 5 Posted by Feodor Fitsner on 21 Oct, 2015 07:05 PM

    Feodor Fitsner's Avatar

    This or early next week.

  6. 6 Posted by kirk.marple on 03 Nov, 2015 05:01 AM

    kirk.marple's Avatar

    Hi Feodor, just wanted to check if this update had occurred yet? I don't see a recent update on that web page, so wanted to check. Thanks!

  7. Support Staff 7 Posted by Feodor Fitsner on 03 Nov, 2015 07:20 PM

    Feodor Fitsner's Avatar

    Hi Kirk,

    We are still working on the update. Sorry for the delay. It will be deployed this week.

  8. Support Staff 8 Posted by Feodor Fitsner on 07 Nov, 2015 03:44 AM

    Feodor Fitsner's Avatar

    The update has been deployed.

  9. 9 Posted by kirk.marple on 07 Nov, 2015 04:05 AM

    kirk.marple's Avatar

    Great, thanks for letting me know.

  10. kirk.marple closed this discussion on 26 Nov, 2015 03:24 AM.

Comments are currently closed for this discussion. You can start a new one.

Keyboard shortcuts

Generic

? Show this help
ESC Blurs the current field

Comment Form

r Focus the comment reply box
^ + ↩ Submit the comment

You can use Command ⌘ instead of Control ^ on Mac