This is a message.

Forum user: ValeriyZ

Basic information

Registered Aug 22, 2011
Last login Aug 22, 2011
Forum posts 2
Direct URL http://www.flowplayer.org/forum/users/104281

Latest forum posts

Posts:

Registered:

» IIS 7.5

Posted: Aug 26, 2011

I tried to add a module with FLVStreaming location:
% Windir% Microsoft.NET Framework v2.0.50727 aspnet_isapi.dll
However, this led to a complete hang IIS (pool) and reinstalling helped just cored IIS.
I don `t know what to do.

Posts:

Registered:

IIS 7.5

Posted: Aug 22, 2011

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 requesthttp://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.