Connecting Tech Pros Worldwide Forums | Help | Site Map

Having problems with too many sessions when displaying dynamic image content.

Ken Varn
Guest
 
Posts: n/a
#1: Nov 18 '05
I have an ASP.NET web page that displays about 16 dynamic images using an
HttpModule handler tied into16 Image controls. When the browser tries to
display each image, it attempts to display all of them at the same time
which causes IIS to fail on some of the requests because there are too many
sessions. Is there anyway that I can prevent this from happening? I
basically need to somehow tell the browser to wait for each image url to
render before loading the next one.
--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.

EmailID = varnk
Domain = Diebold.com
-----------------------------------


William F. Robertson, Jr.
Guest
 
Posts: n/a
#2: Nov 18 '05

re: Having problems with too many sessions when displaying dynamic image content.


Just a shot in the dark here...

Could you add the HttpModule to another application pool, and increase its
worker thread count. Since serving the images isn't too intense of an
operation I would believe you could increase the default 25 count without
taking a signifigant hit.

Also there is a queue count of the number of request IIS will queue up
waiting for an available processing thread.

bill

"Ken Varn" <nospam> wrote in message
news:e62eS5PPEHA.3596@tk2msftngp13.phx.gbl...[color=blue]
> I have an ASP.NET web page that displays about 16 dynamic images using an
> HttpModule handler tied into16 Image controls. When the browser tries to
> display each image, it attempts to display all of them at the same time
> which causes IIS to fail on some of the requests because there are too[/color]
many[color=blue]
> sessions. Is there anyway that I can prevent this from happening? I
> basically need to somehow tell the browser to wait for each image url to
> render before loading the next one.
> --
> -----------------------------------
> Ken Varn
> Senior Software Engineer
> Diebold Inc.
>
> EmailID = varnk
> Domain = Diebold.com
> -----------------------------------
>
>[/color]


Ken Varn
Guest
 
Posts: n/a
#3: Nov 18 '05

re: Having problems with too many sessions when displaying dynamic image content.


Could you elaborate on this a bit? I am not sure what you are talking
about. Examples or how-to needed.

--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.

EmailID = varnk
Domain = Diebold.com
-----------------------------------
"William F. Robertson, Jr." <wfrobertson@kpmg.com> wrote in message
news:OyuK0ISPEHA.3420@TK2MSFTNGP11.phx.gbl...[color=blue]
> Just a shot in the dark here...
>
> Could you add the HttpModule to another application pool, and increase its
> worker thread count. Since serving the images isn't too intense of an
> operation I would believe you could increase the default 25 count without
> taking a signifigant hit.
>
> Also there is a queue count of the number of request IIS will queue up
> waiting for an available processing thread.
>
> bill
>
> "Ken Varn" <nospam> wrote in message
> news:e62eS5PPEHA.3596@tk2msftngp13.phx.gbl...[color=green]
> > I have an ASP.NET web page that displays about 16 dynamic images using[/color][/color]
an[color=blue][color=green]
> > HttpModule handler tied into16 Image controls. When the browser tries[/color][/color]
to[color=blue][color=green]
> > display each image, it attempts to display all of them at the same time
> > which causes IIS to fail on some of the requests because there are too[/color]
> many[color=green]
> > sessions. Is there anyway that I can prevent this from happening? I
> > basically need to somehow tell the browser to wait for each image url to
> > render before loading the next one.
> > --
> > -----------------------------------
> > Ken Varn
> > Senior Software Engineer
> > Diebold Inc.
> >
> > EmailID = varnk
> > Domain = Diebold.com
> > -----------------------------------
> >
> >[/color]
>
>[/color]


Closed Thread