Click to See Complete Forum and Search --> : .net remoting using TcpChannel


chunju
April 7th, 2009, 12:28 PM
Dear all

I'm almost overwhelmed by the .net remoting. Could anyone give me some hints?

I would like to implement the remoting system using windows service method; therefore, I must use the tcpchannel instead of httpchannel.

But for the security, I also need to add SSL protocol for my remoting project.

Because the SSL protocol needs to get a tcpclient connection, how can I get a tcpclient in tcpchannel when designing remoting.

It seems that one way is to create customed sink, and what do I need to do to get a tcpclient.
Any suggestion would be appreciated. Thank you.

Tron
April 7th, 2009, 02:29 PM
If you have the option you may want to get VS 2008 and look into using WCF and .NET 3.0.

dannystommen
April 7th, 2009, 04:21 PM
I agree with Tron. WCF works great and lots of good tutorials and samples can be found on the internet.

Further, it is possible to expose your created services as an 'old fashion' webservice, which makes it possible for other programming languages to use you services (SOA)

chunju
April 7th, 2009, 08:25 PM
sorry, we don't have VS 2008; we just have vs 2005.

is there any way in vs 2005?

chunju
April 13th, 2009, 03:52 AM
Hello,

Is there any way to build a remoting server based on tcpchannel but SSL security?

I heared some info. about customized channel can solve this, but it's real hard to me.

Are there any tutorial or examples here or at other websites?

Any help would be appreciated. Thanks.