Telnet and VB.NET 2005

Y

yhlove

Hi all

I'm trying to connect a server using telnet protocol inside my vb.net
project
I already read all the old post about this but I didn't find any good
solution.
I'm looking for free code. I tried to use the indy project but I
didn;t find there the vb.net source code. This site is pretty mess.

Is it difficult to write the telnet connections by myself using the
sockets?
How many lines can it be?

Thanks
 
G

Guest

(e-mail address removed) wrote in @g4g2000hsf.googlegroups.com:
I'm looking for free code. I tried to use the indy project but I
didn;t find there the vb.net source code. This site is pretty mess.

It's not that messy. In fact the documentation is all online.
Is it difficult to write the telnet connections by myself using the
sockets?

Seems like you're not familar with the .NET Socket classes - perhaps that's
why you were having trouble with understanding the Indy project?

Take a look at the System.Net.Sockets namespace.
How many lines can it be?

Depends on what you want to do!
 
Y

yhlove

(e-mail address removed) wrote in @g4g2000hsf.googlegroups.com:


It's not that messy. In fact the documentation is all online.


Seems like you're not familar with the .NET Socket classes - perhaps that's
why you were having trouble with understanding the Indy project?

Take a look at the System.Net.Sockets namespace.


Depends on what you want to do!

Could u please send me a link to the exact page where I can download
the Indy project at VB.NET ?

By the way: I need to connect to a server with username and password
using the telnet protocol and then send a few commands and recieve a
several lines. thats all. I don't know what is Socket but I heared
it's a kind of component which required for network communications. Is
it complicated to write by myself using the sockets that kind of
project ? where can I find a brief guide for VB.NET ?

Thanks,
Yhlove
 
G

Guest

(e-mail address removed) wrote in @g4g2000hsf.googlegroups.com:
Could u please send me a link to the exact page where I can download
the Indy project at VB.NET ?

Here you go:

http://www.codeplex.com/Wiki/View.aspx?ProjectName=IndySockets
By the way: I need to connect to a server with username and password
using the telnet protocol and then send a few commands and recieve a
several lines. thats all. I don't know what is Socket but I heared
it's a kind of component which required for network communications. Is
it complicated to write by myself using the sockets that kind of
project ? where can I find a brief guide for VB.NET ?

You better get more intimate with sockets ;-)

http://www.ondotnet.com/pub/a/dotnet/2002/10/21/sockets.htm
 

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

Similar Threads


Top