Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any concurrent HTTP requests limitation for Silverlight?

I know that RFC requires UserAgent to have a limit of max 2 http connection to single server. In fact, most browsers have the limit larger than 2.

The question is whether Silverlight have such limitation. Does it follow limit of hosting web browser? or does it has its own max connection limit?

like image 895
Morgan Cheng Avatar asked Oct 14 '22 14:10

Morgan Cheng


1 Answers

I don't now the exact answer to your question, but Silverlight 2 uses the browser HTTP stack and probably is limited to what it will do. In Silverlight 3 you have a choice between the browser stack and a new Silverlight stack. I don't know if the new stack is limited to two simultaneous connections to the same site, but it should be possible to check this by creating a small test program.

like image 103
Martin Liversage Avatar answered Nov 12 '22 15:11

Martin Liversage