Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7844713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T16:58:33+00:00 2026-06-02T16:58:33+00:00

MSDN documentation doesn’t seem to have good coverage on ASP.net 4.5 support of HTML5

  • 0

MSDN documentation doesn’t seem to have good coverage on ASP.net 4.5 support of HTML5 WebSockets protocol!

This is what I’m looking for:

  • How many live connections can a server/application/cpu support?
  • Is there any maximum number of incoming connections that could be set/get?
  • What is the optimum number of sockets per application regardless of data transfer over the socket?

Update:

Requests from flash RTMP sockets (an alternative to websocket) could be well configured on Adobe Media Server application server. Isn’t any sort of configurations for number of requests, ideal time, size of chunks, … for ASP.net inside application or IIS 8 configuration?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T16:58:37+00:00Added an answer on June 2, 2026 at 4:58 pm

    To whomever may be interested:

    • Over 100k WebSocket connections can be made to a single server
      running ASP.NET 4.5
    • WebSocket connections are initiated by a HTTP
      handshake, hence some of the IIS throttles that apply to HTTP requests
      will also apply to WebSockets.
      appConcurrentRequestLimit in the IIS Configuration can be used to set the maximum concurrent requests per application:

      <serverRuntime appConcurrentRequestLimit="250000" />
      
    • Maximum concurrent connections to an ASP.net 4 Web Application can be set with ApplicationPool’s maxConcurrentRequestsPerCPU property:

      <system.web>
          <applicationPool maxConcurrentRequestsPerCPU="20000" />
      </system.web>
      
    • When the total amount of connections exceed the
      maxConcurrentRequestsPerCPU setting, ASP.NET will start throttling requests using a queue. To control the size of the queue, you can
      tweak the machine.config requestQueueLimit:

      <processModel autoConfig="false" requestQueueLimit="250000" />
      
    • The following performance counters should be considered while
      conducting concurrency testing and adjusting the optimum settings
      detailed above:

      • NET CLR Memory #bytes in all Heaps
      • ASP.NET\Requests Current – Queued – Rejected
      • Processor Information\Processor Time
      • TCP/IP Connections Established
      • Web Service\Current Connections – Maximum Connections
      • .NET CLR LocksAndThreads\ # of current logical Threads – # of current physical Threads
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am reading the Asp.net security documentation on msdn.I come across these tow terms
According to the MSDN documentation , transactional NTFS doesn't seem to allow one to
The documentation for .NET's Excel interop API at msdn.com seems rather sparse. Does anyone
While browsing MSDN documentation, you may come across this gem: TextBox.Watermark. Awesome! I've been
I have looked at the documentation on MSDN about these 2 functions. However, I
The MSDN documentation doesn't generally specify the assembly a namespace is in, so there's
The MSDN documentation for MemoryCache.Set unfortunately doesn’t state explicitly whether it is thread-safe or
I don't understand the purpose of Enum.GetUnderlyingType(Type enumType) The MSDN documentation doesn't help either:
According to the MSDN documentation on the List<T>.Clear method : This method is an
The MSDN documentation isn't precise on this point. It says in one place: Gets

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.