473,769 Members | 2,376 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

multiple aspx requests simultaneously by same user

I'm developing a portal for our intranet where multiple pages are being
shown inside several iframes on a single page.

The problem i've ran into, is that it seems as if IIS6/ASP.Net serializes
the requests
by the user and only processes one *nugget* (iframe) at a time.

It handles multiple requests by different users at the same time just fine,
just for any one user it only processes 1 request at a time.

Is this is a security feature of IIS 6 to help prevent DOS
attacks.

Is there a way to increase the number of simultaneous ASPX requests by a
single user the server will process??

This is an internal site and I'm not too worried about DOS attacks ;)

Thanks,
Chad McCune, MCSE, MCDBA

Nov 18 '05 #1
2 2619
its the browser thats limiting the hits. IE limits itself (and all other
instances of IE) to 2 simultaneous hits to a web server. if you load a
frameset and the frame pages have any images, you are not going to see to
any frames load at the same time.

-- bruce (sqlwork.com)
"Chad McCune" <mccuneca@_NOSP AM_fpwk.com> wrote in message
news:uA******** ******@tk2msftn gp13.phx.gbl...
I'm developing a portal for our intranet where multiple pages are being
shown inside several iframes on a single page.

The problem i've ran into, is that it seems as if IIS6/ASP.Net serializes
the requests
by the user and only processes one *nugget* (iframe) at a time.

It handles multiple requests by different users at the same time just fine, just for any one user it only processes 1 request at a time.

Is this is a security feature of IIS 6 to help prevent DOS
attacks.

Is there a way to increase the number of simultaneous ASPX requests by a
single user the server will process??

This is an internal site and I'm not too worried about DOS attacks ;)

Thanks,
Chad McCune, MCSE, MCDBA

Nov 18 '05 #2
In this particular instance...its not the browser doing the limiting....its
..NET....if i do the same page with static content and .htm I do not see the
same behavior

--
Chad Mccune, MCSE, MCDBA

"bruce barker" <no***********@ safeco.com> wrote in message
news:OK******** ******@TK2MSFTN GP10.phx.gbl...
its the browser thats limiting the hits. IE limits itself (and all other
instances of IE) to 2 simultaneous hits to a web server. if you load a
frameset and the frame pages have any images, you are not going to see to
any frames load at the same time.

-- bruce (sqlwork.com)
"Chad McCune" <mccuneca@_NOSP AM_fpwk.com> wrote in message
news:uA******** ******@tk2msftn gp13.phx.gbl...
I'm developing a portal for our intranet where multiple pages are being
shown inside several iframes on a single page.

The problem i've ran into, is that it seems as if IIS6/ASP.Net serializes the requests
by the user and only processes one *nugget* (iframe) at a time.

It handles multiple requests by different users at the same time just

fine,
just for any one user it only processes 1 request at a time.

Is this is a security feature of IIS 6 to help prevent DOS
attacks.

Is there a way to increase the number of simultaneous ASPX requests by a
single user the server will process??

This is an internal site and I'm not too worried about DOS attacks ;)

Thanks,
Chad McCune, MCSE, MCDBA


Nov 18 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
4971
by: Ohaya | last post by:
Hi, I'm trying to understand a situation where ASP seems to be "blocking" of "queuing" requests. This is on a Win2K Advanced Server, with IIS5. I've seen some posts (e.g., http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&selm=Tidy7IDbDHA.2108%40cpmsftngxa06.phx.gbl) that indicate that ASP will queue up requests when they come in with the same "session".
6
539
by: mark | last post by:
I have an asp.net ecommerce web application on a remote web server. I'm using an Access database on the back end. I've notice a few strange things. When I mimic an multiple user environment by surfin it in multiple browsers simultaneously the site generates a generic runtime error after awhile. I'm thinking this has something to do with my access database and multiple connections. I'm using forms authentication with a login page. Is...
1
3509
by: Rob | last post by:
I have an ASP.NET application that uses forms-based authentication. A user wishes to be able to run multiple sessions of this application simultaneously from the user's client machine. The web.config file is configured as such: <authentication mode="Forms"> <forms loginUrl="Login.aspx" protection="All" name="myApplication"/> </authentication>
9
23084
by: Abhishek Srivastava | last post by:
Hello All, In IIS 6.0 We have a concept of worker processes and application pools. As I understand it, we can have multiple worker process per appliction pool. Each worker process is dedicated to a pool. If I assign only one application to a applicaton pool and have multiple worker processes assigned to that pool. Will my application be processed by many worker processes?
0
1222
by: Tiro | last post by:
Hi, I am trying to understand how does .Net Web Service handle requests for multiple clients simultaneously. Here is what I am trying to achieve. I have created a web serive that search database based on client request. Client submits query string. Issue: If I try to access web service from 2 clients simultaneously using
10
4986
by: John | last post by:
I currently have a Windows Service that runs Transactions that are very Processor/Memory Intensive. I have a requirement to deploy multiple instances of the Web service on the Same server. Each Instance needs to run in its own process. My current approach to this is to put all the logic into a separate "Worker" assembly and install it into the GAC. I'm then going to create Multiple Windows Services (i.e. MyService1, MyService2 etc..)...
7
2542
by: blueapricot416 | last post by:
Hello helpful computer people! I can't seem to get more than one request to fire simultaneously... and I have read there should be at least 2 possible (in IE) and more in Firefox. I made a demo based on this article/code "Handling Multiple XMLHTTPRequest Objects" at http://www.drakware.com/articles/multijax.php, which does make mutliple requests, but never two seem to happen at the same time.
17
11882
by: Arjen | last post by:
Hi, I want to reload 2 divs at one click. Ive tried: <a href = "javascript:void(0);" onclick="show('ajaxrequest.php?action=removefield','div1');show('ajaxrequest.php?action=reloaddiv2','div2')">verwijderen</a> While both seperate actions work they dont when I put them together. Anyone know how to fix this ? My ajax.js with funcition show
1
1739
by: pintoo | last post by:
Hi, I have 2 sites (Site A, B) running on same windows 2003 server pointing to different home directories. User logs into site A and is shown a.aspx page and user credentials are saved in cookies. There is a link to launch site B from Site A. User clicks the link and is shown Site B - b.aspx. I have a crystal report on b.aspx which user can run. Crystal report is exported into pdf and saved to a folder on the server and displayed to...
0
9586
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10210
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10043
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9990
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9861
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8869
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6672
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5298
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2814
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.