I finally got around to trying this on Win 2008R2 with IIS7.5
The only difference is you need a slightly different web.config
I know earlier in this thread I mentioned to some that you should run the app pool in 32 bit, but really I had no problem with 64 bit after this change to the web.config. Also, instead of editing web.config directly, you could add the handler mapping through the iis manager handler mappings menu.
Enjoy!
The only difference is you need a slightly different web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="FLVStreaming" path="*.flv" verb="*" type="FLVStreaming" resourceType="Unspecified" preCondition="integratedMode" />
</handlers>
</system.webServer>
</configuration>
I know earlier in this thread I mentioned to some that you should run the app pool in 32 bit, but really I had no problem with 64 bit after this change to the web.config. Also, instead of editing web.config directly, you could add the handler mapping through the iis manager handler mappings menu.
Enjoy!