HttpChannel() and HttpServerChannel

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

what is the difference between HttpChannel() and HttpServerChannel() both
can act like a server or client so I'm a little confused as
HttpChannel(8000) is pretty much the same as HttpServerChannel(8000).

Thanks
Tom
 
HttpServerChannel -> IChannelReceiver

HttpClientChannel -> IChannel

HttpChannel-> Provides the functionality of both ServerChannel and
HttpClientChannel
 
Hi Tom
"HttpChannel(8000) is pretty much the same as HttpServerChannel(8000)." It
can do its function, but the opposite is not true. You can think of the
HttpServerChannel as a subset since it doen't implement IChannelSender
interface.

Mohamed Mahfouz
MEA Developer Support Center
ITworx on behalf of Microsoft EMEA GTSC
 
Back
Top