Under IIS 6, what would be the suggested approach of a .net web service
calling a backend socket server that would handle a high transaction volume?
Can I just create the socket, send the data, receive the response and close
the socket in the webMethod? Should I create a pool of socket connections?
I'm really looking for some design suggestions?
Allen St.Clair - 23 Aug 2005 05:52 GMT
Yes, you can.
Most of functions, like Threading, Socket are usable in ASPX too.
> Under IIS 6, what would be the suggested approach of a .net web service
> calling a backend socket server that would handle a high transaction
[quoted text clipped - 3 lines]
> the socket in the webMethod? Should I create a pool of socket connections?
> I'm really looking for some design suggestions?