-
Posted to
Troubleshooting
by
darwaish
on
10-06-2009, 12:01 PM
Hi, I have event 1309 all over the application log. I was checking logs because sometime my site becomes really really slow that it takes 30 seconds to get a page which normally takes 1-2 seconds. I found event 1309 which might be causing w3p to start or something. Any ideas why I am getting these errors? And could this be cause of slow ...
-
Posted to
IIS7 - General
by
darwaish
on
09-10-2009, 1:27 PM
Thanks Anil. I moved the part of code that attach the original handler to PreRequestHandlerExecute rathar than PostAcquireRequestState and it seems to be working fine now. I am not sure the reason though.
void context_PreRequestHandlerExecute(object sender, EventArgs e)
{
if (!this.IsProtectedContent)
...
-
Posted to
IIS7 - General
by
darwaish
on
09-08-2009, 1:28 PM
Thanks for your reply Anil. I need to protected videos that I am serving using smooth streaming (on server side) and silverlight (on client side).
On each request from silverlight player I need to verify this person has access to the video, so I store an entry in the session against the ID of that video to avoid going to the database on each ...
-
Posted to
IIS7 - General
by
darwaish
on
09-06-2009, 7:34 AM
I am using this technique to get session state in HttpModule to apply ACL rules for my non-asp.net content. And it is causing w3p to freeze in the state "AcquireSessionState". I can see it in IIS Manager and it takes about 2 minutes before IIS starts serving pages again for that site. Any ideas?
I tried the link below but that did not ...
-
Posted to
IIS7 - Security
by
darwaish
on
09-05-2009, 6:40 PM
Hi,
I have some doucments and wmv files in files directory that I need to deliver based on some rules. I am trying to use HttpModule for that, but seeing weired behavior.
If I try to access the link below, it redirects me to the signin page, as it should. After I login with user account who should have access to this image, I get the ...
-
Posted to
Classic ASP
by
darwaish
on
07-04-2009, 11:37 PM
I have a classic asp app running on 64bit server 2003 and IIS running in 32 bit mode. For most of the pages its working fine, but some pages who show huge data, sometime they work fine and sometimes they fail with the error message below. If page show 2000 records, sometimes I will have10K records and then page ends with this line, ...
-
Posted to
IIS7 - Media
by
darwaish
on
05-01-2009, 12:04 AM
Thanks prakashd. I have no idea what was wrong. I just shut everything down for a day. Today tried the same url with Manifest at the end, and it worked :)
I hope I was not doing some spelling mistake.
-
Posted to
IIS7 - Media
by
darwaish
on
04-29-2009, 9:29 PM
I am sure IIS is setup correctly because I was able to run MS big bunny demo
And I know my media path is right on the client because if I change path to a wmv file, it works.
new Uri("http://localhost/Nile.Net/Media/Bear/Bear.wmv");
-
Posted to
IIS7 - Media
by
darwaish
on
04-29-2009, 9:26 PM
I tried that, but it did not work either. I got the exact same error message.
I actually tried all of these
new Uri("http://localhost/Nile.Net/Media/Bear/Bear.ism/Manifest");
new Uri(http://localhost/Nile.Net/Media/Bear/Bear.ism)
new Uri("/Bear/Bear.ism/Manifest")
-
Posted to
IIS7 - Media
by
darwaish
on
04-28-2009, 11:55 PM
I am using encoder's template as explained by tim in this blog.
http://timheuer.com/blog/archive/2008/11/03/use-expression-encoder-templates-in-silverlight-application.aspx
This is how I set the source.this.myMediaPlayer.Playlist.Clear();
PlaylistItem pi = new PlaylistItem();pi.MediaUrl = new ...