views:

100

answers:

1

Hi

I create a custom http handler to block download of .wmv files e.g. www.pakdev.net/videos/file.wmv (blocked by httpHandler).

But the problem is that now silverlight cannot also stream these video files as they are blocked too.

What should I do?

+1  A: 

Use the WCF authentication services from silverlight to authenticate the user. And then modify your custom http handler to allow downloads if the user is authenticated :-)

Joel Martinez