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
 

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

Back
Top