1 Aug 2011 02:49
Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix
Tom Whitmore <tewhitmore <at> ratex.com>
2011-08-01 00:49:41 GMT
2011-08-01 00:49:41 GMT
Thank you everyone. I'll let you know how things progress this week.
Tom
-----Original Message-----
From: u2-users-bounces <at> listserver.u2ug.org [mailto:u2-users-bounces <at> listserver.u2ug.org] On
Behalf Of Brian Leach
Sent: Saturday, July 30, 2011 11:43 AM
To: 'U2 Users List'
Subject: Re: [U2] Using SSL, with .Net to make a connection to Linux/Unix
Tom
I don't know what '.NET TELNET tool' you refer to - but I wrote a customized terminal emulator in .NET for a
client that makes a connection Telnet/SSL connection to UniVerse on Solaris and tested fine on Linux.
For the server configuration and details on setting up the secure telnet daemon take a look at my blog (you
can get to it from my website).
As far as the client is concerned, I can't give too much away as I don't own it - it was funded by a customer - but I
can probably share the following if you're tempted to roll your own!
1. for the low level connection I use a SecureTCPClient that wraps an SslStream - here are the salient pieces:
public delegate void SecureConnectionResultsCallback(object sender, SecureConnectionResults args);
public delegate void ReceivedDataEvent( object sender, string data);
public delegate void ReceiveErrorEvent( object sender );
public class SecureTcpState
{
public SslStream stream;
(Continue reading)
RSS Feed