How to use TCP/IP Sockets with a WLAN (PCMCIA Card)

T

thelazycatms

Hi,

how can a use a TCP/IP Listener within a compact framework application, when
connected to a WLAN. In the compact framework there is the assembly
System.Net.IrDA, which has a listener object included, but when connected to
a WLAN via a pcmcia card, do I have to use the same .NET Class Library?

Thanks for help
Martina
 
J

Jon Skeet [C# MVP]

how can a use a TCP/IP Listener within a compact framework
application, when connected to a WLAN. In the compact framework there
is the assembly System.Net.IrDA, which has a listener object included,
but when connected to a WLAN via a pcmcia card, do I have to use the
same .NET Class Library?

Have you tried just setting up a TcpListener in the same way you would
in the desktop framework? That should work fine, I'd imagine.
 
D

Dick Grier

Hi,

You would use the System.Net.Sockets namespace (and, probably, the TcpClient
and/or TcpListener classes).

Dick

--
Richard Grier (Microsoft Visual Basic MVP)

See www.hardandsoftware.net for contact information.

Author of Visual Basic Programmer's Guide to Serial Communications, 3rd
Edition ISBN 1-890422-27-4 (391 pages) published February 2002.
 

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

Top