I've installed IIS 7.5 Windows Server 2008 R2
Microsoft .NET Framework 2.0.50727.4927
1. To web.config I've added the following text:
<?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>
2. I've added file FLVStreaming.cs into folder App_Code.
Nevertheless on request
http://localhost/test.flv?start=123 IIS it gives an error:
System.Web.HttpException: Could not load type 'FLVStreaming'.
[HttpException (0x80004005): Could not load type 'FLVStreaming'.]
System.Web.Compilation.BuildManager.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) +446
System.Web.Configuration.HandlerFactoryCache.GetHandlerType(String type) +21
System.Web.Configuration.HandlerFactoryCache..ctor(String type) +20
System.Web.HttpApplication.GetFactory(String type) +79
System.Web.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +234
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +157
For IIS 6 everything is explained in details, thanks to the author, but could you explain in details for IIS 7.5 please.