QoS and C#

A

amdrit

Does anyone have links to implementing QoS in C#? According to MSDN, QoS
API was intended only for c++ developers. I think that is kinda sepratist
if you ask me.

Anyway, I did find a link where someone provided a VB version of the Winsock
API (http://www.thevbzone.com/modWINSOCK.bas).

I am looking for usage information. I think most specifically FLOWSPEC and
System.Net.Sockets.Socket.

My goal is to limit bandwidth each client uses when connecting to my server,
on the server end. I looking to avoid using TCP Remoting over HTTP to
accomplish this.

I am not a C++ guy, and no one on my team is able to support a C++ solution.
Any guidance you folks have would be wonderful.

Thanks
 
M

Mr. Arnold

amdrit said:
My goal is to limit bandwidth each client uses when connecting to my
server, on the server end. I looking to avoid using TCP Remoting over HTTP
to accomplish this.

If you can implement Windows Communication Foundation into your solution to
throttle the bandwidth a WCF ASP.NET client uses with the ASP.NET WCF server
using transport binding settings such as wsBasicHTTP bindings or other such
bindings, which are configurable through a Web, App.config or C#.NET
program on the server side, you can go in that direction,.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top