Click here to Skip to main content

Internet / Network

General Programming » Internet / Network
 

Internet & Network - Beginners 

top
Title / Updated Author Score  
Introduction to RPC - Part 2
Updated: 30 Aug 2003
An introduction to context handles in RPC. A simple RPC client/server application using context handles is explained.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, STL, Dev
 
Anders Dalvander 4.92
Handling multiple pending socket read and write operations
Updated: 17 Aug 2002
This article explains the potential problems with having multiple pending recvs calls on a single socket.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Len Holgate 4.90
Beginning Winsock Programming - Multithreaded TCP server with client
Updated: 5 Mar 2002
Explains a multithreaded TCP file server, a custom TCP chat protocol and a custom TCP client
VC6, Win2K, MFC, Dev
 
Nish Sivakumar 4.90
3G Modem Internet Dialer
Updated: 13 Jul 2011
3G Modem Internet Dialer
C++, Visual-Studio (VS2008), Hardware
 
Amro Fawzy 4.88
A reusable, high performance, socket server class - Part 3
Updated: 18 Jul 2002
When a server has to deal with lots of short lived client connections it's advisable to use the Microsoft extension function for WinSock, AcceptEx(), to accept connections.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Len Holgate 4.87
A reusable, high performance, socket server class - Part 1
Updated: 17 Aug 2002
Writing a high performance server that runs on Windows NT and uses sockets to communicate with the outside world isn't that hard once you dig through the API references. What's more most of the code is common between all of the servers that you're likely to want to write.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Len Holgate 4.86
Beginning Winsock Programming - Simple TCP client
Updated: 28 Feb 2002
A simple TCP client is explained.
VC6, Win2K, MFC, Dev
 
Nish Sivakumar 4.85
Beginning Winsock Programming - Simple TCP server
Updated: 25 Feb 2002
An introduction to WinSock programming. A simple TCP server is explained.
VC6, Win2K, Visual-Studio, MFC, Dev
 
Nish Sivakumar 4.84
Programming Windows TCP Sockets in C++ for the Beginner
Updated: 2 Apr 2007
Helps programmers new to Winsock start programming TCP sockets in C++
C++, Windows, Visual-Studio, MFC, Dev
 
c_07 4.80
Introduction to RPC - Part 1
Updated: 22 Aug 2003
An introduction to RPC programming. A simple RPC client/server application is explained.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, STL, Dev
 
Anders Dalvander 4.78
Introduction to the WinPcap Networking Libraries
Updated: 18 Oct 2008
An introduction to the WinPcap networking libraries.
VC8.0, Win2K, WinXP, Dev
 
cristitomi 4.76
A reusable, high performance, socket server class - Part 2
Updated: 17 Aug 2002
To maintain performance a socket server shouldn't make blocking calls from its IO threads. This article builds on the previous one to add a business logic thread pool to our example server.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Len Holgate 4.68
Bing API in Action - C#
Updated: 17 Jul 2009
Short article which explains how to use the Bing API in C#.NET.
C#, Windows, Dev, WinForm
 
NinethSense 4.42
WLAN Scan with NDIS Miniport and Much More
Updated: 29 Oct 2007
An article about using NDIS Miniport from userspace to access several functions of the WLANcard
C++, Windows, Visual-Studio, MFC, Dev
 
sirb 3.76
Building Client/Server applications with VC for secure private file sharing
Updated: 9 Nov 2005
How to build secure private file sharing client/server using a freeware SDK.
VC6, VC7, VC7.1, VC8.0, Windows, MFC, VS.NET2003, Dev
 
Ganyob 3.46

Internet & Network - Client/Server Development 

top
Title / Updated Author Score  
The Amazingly Forgotten 2-Way .NET Rijndael CryptoStream
Updated: 29 Aug 2009
How To Do Precise 2-Way Rijndael CryptoStream Communication
VB (VB8.0, VB9.0), .NET (.NET2.0, .NET3.0, .NET3.5), Visual-Studio (VS.NET2003, VS2005, VS2008), Dev, SysAdmin
 
_Khallaf 5.00
Creating a Jabber Client using the agsXMPP Library
Updated: 12 Nov 2007
This article describes how to create a small Jabber Chat client.
C#2.0, Windows, .NET, VS2005, Dev
 
Frank Mayer-Potschak 5.00
Genesis UDP Server and Client
Updated: 21 Dec 2005
An article that shows the implementation of a lightweight UDP server and client with optional reliable channel.
C#, Windows, .NET2.0, VS2005, Dev
 
Rob Harwood 4.98
C# SocketAsyncEventArgs High Performance Socket Code
Updated: 14 Dec 2010
Use the .NET SocketAsyncEventArgs to write socket server code in C#
C#, Windows, .NET2.0, .NET3.0, .NET3.5, Visual-Studio, Architect, Dev, .NET4
 
Stan Kirk 4.97
Topic-based Publish/Subscribe design pattern implementation in C# - Part I (Using socket programming)
Updated: 23 Mar 2009
Implementation of a topic based Publish Subscribe design pattern using socket programming, and a proprietary messaging protocol.
C#2.0, C#3.0, .NET2.0, .NET3.0, .NET3.5, Architect, Dev
 
Razan Paul (Raju) 4.95
An Asynchronous Socket Server and Client
Updated: 29 Apr 2009
An asynchronous socket server and client with encryption and compression.
C#, .NET2.0, WinXP, Win2003, VS2005, Dev
 
Andre Azevedo 4.95
Push Framework - A C++ toolkit for high performance server development in Windows
Updated: 23 Mar 2011
Write asynchronous, multithreaded servers in a few lines of code. Monitor realtime activity with a deploy-only dashboard.
C++, STL, Dev
 
Ahmed Charfeddine 4.95
Topic-based publish/subscribe design pattern implementation in c#-Part II (Using WCF). - Unedited
Updated: 23 Mar 2009
Implementation of Topic based publish subscribe design pattern using WCF callback.
C# (C#3.0), .NET (.NET3.0), WCF, Architect, Dev
 
Razan Paul (Raju) 4.93
C# \ VB .NET Multi-user Communication Library (TCP)
Updated: 15 Oct 2010
Allow multiple users to send and receive messages from one another on the same server
C#, VB, Networking, TCP/IP, WinForm
 
shynet 4.93
Testing TCP and UDP socket servers using C# and .NET
Updated: 20 Jul 2002
When you're developing a TCP/IP server application it's easy to test it poorly. In this article we develop a test framework that does most of the hard work for you.
C#, Windows, .NET1.0, Dev
 
Len Holgate 4.92
A WCF-WPF Chat Application
Updated: 15 Apr 2008
An Internet chat application with file transfer.
C# (C#1.0, C#2.0, C#3.0), .NET (.NET2.0, .NET3.0, .NET3.5), Visual-Studio (VS2008), WCF, XAML, WPF
 
Islam ElDemery 4.92
A Complete TCP Server/Client Communication and RMI Framework - Usage
Updated: 12 Jun 2011
An Open Source lightweight framework (named Simple Client Server Library (SCS)) that is delevoped to create Server/Client applications using the simple Remote Method Invocation mechanism.
C#, .NET, Visual-Studio, Dev
 
Halil ibrahim Kalkan 4.91
A simple IOCP Server/Client Class
Updated: 11 Dec 2008
This source code uses the advanced IOCP technology which can efficiently serve multiple clients. It also presents some solutions to practical problems that arise with the IOCP programming API, and provides a simple echo client/server with file transfer.
C++/CLI, VC6, VC7, VC7.1, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
 
spinoza 4.91
TCP/IP Chat Application Using C#
Updated: 30 Jan 2006
This is a LAN chat application with TCP/IP socket programming technology in C#. This application is a multi thread network application and works in a non-blocking way. Public and private chat is also implemented in this code.
C#, .NET2.0, Win2K, WinXP, Win2003, Vista, VS2005, Dev, WinForm
 
xironix 4.90
Full Multi-thread Client/Server Socket Class with ThreadPool
Updated: 27 Sep 2009
Complete Client/Server Socket Communication class with threadpool implementation. Easy to use and integrate into C++ application. Linux/UNIX port available.
C++ (VC8.0, VC9.0), WinMobile (WinMobile5, WinMobile6), Win32, MFC, Architect, Dev
 
Ernest Laurentin 4.90
Network Development Kit 2.0
Updated: 29 Dec 2006
Network Development Kit is a set of simple classes for a client-server architecture.
VC6, VC7.1, Win2K, MFC, VS.NET2003, Dev
 
Sebastien_Lachance 4.90
A Chat Application Using Asynchronous TCP Sockets
Updated: 28 Dec 2006
This article will discuss a chat application using asynchronous TCP sockets, in C#.
C#, Windows, .NET, Visual-Studio, Dev
 
Hitesh Sharma 4.90
Design and Implementation of a High-performance TCP/IP Communications Library
Updated: 22 Jul 2009
A TCP/IP Communications Library, designed to handle client-server data transmission for a massive multiplayer online game.
C#1.0, C#2.0, C#3.0, .NET, Dev
 
owen654321 4.89
A simple prototype for demonstration of Voice Communication via Network/Internet
Updated: 14 Jun 2000
Voice communication
VC6, Win2K, MFC, Dev
 
Zhaohui Xing 4.89
LanTalk
Updated: 6 Jun 2008
Yet another chat application, with server running in service mode or GUI mode.
C# (C#1.0, C#2.0, C#3.0), XML, .NET, Dev
 
Zoltan Balazs 4.88
Design and Implementation of a High-performance TCP/IP Communications Library
Updated: 3 Aug 2008
A TCP/IP Communications Library, designed to handle client-server data transmission for a massive multiplayer online game.
C# (C#1.0, C#2.0, C#3.0), Windows, .NET, Architect, Dev
 
owen654321 4.88
Picture Chat Using C#
Updated: 31 Jul 2008
A chat program that supports Unicode input and picture transfer.
C#, Windows, .NET, Dev
 
Yang Kok Wah 4.87
Asynchronous socket communication
Updated: 27 Nov 2001
An article on using sockets to communicate in a non-blocking manner. The sample works through building a simple chat client and server.
C#, VC6, Windows, .NET1.0, Dev
 
John McTainsh 4.87
Scalable Servers with IO Completion Ports and How to Cook Them
Updated: 1 Oct 2007
The theory and practice of developing server applications.
VC6, Win2K, WinXP, Win2003, MFC, STL, Dev
 
rtybase 4.86
A Complete TCP Server/Client Communication and RMI Framework in C# .NET - Implementation
Updated: 12 Jun 2011
In this article, I will explain the implementation of an Open Source lightweight framework (named Simple Client Server Library (SCS)) that is developed to create client/server applications using a simple Remote Method Invocation mechanism over TCP/IP.
C#, .NET
 
Halil ibrahim Kalkan 4.85
Multi-threaded Client/Server Socket Class
Updated: 10 Feb 2009
A multi-threaded based Client/Server Socket Communication class
VC6, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Ernest Laurentin 4.85
Implementation of Connecting a Socket with Timeout in C#
Updated: 5 Dec 2008
Connect with destination machine with timeout using socket programming
C#, .NET2.0, .NET3.5, Win32, Dev
 
Razan Paul (Raju) 4.85
A Simple .NET TCP Socket Component
Updated: 14 Oct 2005
Reusable C# code for client-server programming in .NET
C#, VB, VC6, .NET1.1, Win2K, WinXP, Win2003, ASP.NET, VS.NET2003, Dev
 
Xiangyang Liu 刘向阳 4.84
Simple FTP demo application using C#.Net 2.0
Updated: 17 Jan 2007
An article to demonstrate common FTP functionalities using C#.net 2.0.
Windows, Visual-Studio, Dev
 
Mohammed Habeeb 4.84
Remofi - Your Own PowerPoint Controller for Mobile Devices
Updated: 14 Aug 2011
This article shows you an example of how to control your computer program like PPT through your mobile WIFI device.
C#, Javascript, HTML, Windows (WinXP, Vista, Win7)
 
Zhipeng Li 4.83
Screen Cast Server
Updated: 15 Sep 2009
A screen cast server with client.
C#1.0, C#2.0, C#3.0, .NET, Dev
 
Linoxxis 4.83
Network Administrator
Updated: 19 Dec 2004
The article shows how you can work with a multithreading client server application and administrate computers on a network.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
gamitech 4.82
TcpDemon
Updated: 9 Aug 2005
This article shows a NET implementation of a typical TCP demon.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Max Hajek (aka AzazelDev) 4.81
A Small C-Language TCP Server Framework
Updated: 30 Apr 2010
A framework for writing small to medium size cross-platform TCP servers
C, Windows, Linux, Dev
 
José Vitor 4.81
Network Transfer Of Files Using MFC's CSocket Class
Updated: 31 Oct 2004
How to use CSocket to transfer files from one computer to another over a netwok or the Internet.
VC6, Win2K, WinXP, MFC, Dev
 
Mike O'Neill 4.80
Asynchronous (non-blocking) client socket wrapper class without MFC
Updated: 4 Dec 2010
A Win32 API non-blocking sockets implementation, client side.
VC9.0, Windows, Architect, Dev, Networking
 
h_seldon 4.80
Downloading updates in Windows Form application
Updated: 7 Jun 2007
Downloading updates from Windows Forms application in an intranet scenario
C#1.0, C#2.0, .NET1.0, .NET1.1, .NET2.0, Win2K, WinXP, Win2003, Vista, VS.NET2003, VS2005, Dev
 
Moim Hossain 4.80
Remote Control PCs
Updated: 22 Aug 2011
Two projects that work together to remote control PCs across a LAN.
VC6, Windows, MFC, Dev
 
Andy Bantly 4.80
IP Multicasting in C#
Updated: 9 Jan 2002
A simple client/server implementation of multicasting in C# .NET Framework.
C#, .NET1.0, Win2K, WinXP, Visual-Studio, Dev
 
Gary Brewer 4.79
Chat With US DI
Updated: 7 Aug 2002
Chat (Client/Server) project build with code found at Code Project.
VC6, Win2K, WinXP, MFC, STL, Dev
 
DCUtility 4.77
SmartIrc4net - the C# IRC library
Updated: 19 Sep 2004
IRC library for .NET.
C#, Windows, .NET1.0, .NET1.1, Visual-Studio, Dev
 
meebey 4.76
Single Server With Multiple Clients : a Simple C++ Implementation
Updated: 22 Jul 2004
Implement a client/server structure with multiple clients using simple C++ classes
VC6, Windows, Visual-Studio, MFC, Dev
 
liyang yu 4.74
A Chat Server/Client Solution for Local Networks
Updated: 31 May 2011
A chat server/client solution for local networks, terminal server/terminal client environments
C#, .NET1.0, .NET1.1, WinXP, VS.NET2003, Dev, WinForm
 
Evren Daglioglu 4.73
Generic TCP/IP Client/Server
Updated: 20 Dec 2008
A generic TCP/IP client/server.
C#2.0, .NET2.0, Win2K, WinXP, Win2003, Vista, .NET3.0, .NET3.5, VS2005, VS2008, Architect, Dev
 
Gil.Y 4.72
The Quick and Easy Way to Add Web Interfaces to C/C++ Applications
Updated: 6 Jan 2011
The webonization of the netstat command, netstat in a browser
C++, C, Windows, Linux, Win32, Architect, Dev
 
Walter Capers 4.72
Simple File Transfer Using the Network Development Kit 2.0
Updated: 29 Dec 2006
NDK File Transfer is a simple demonstration on how to send and receive a file using the NDK 2.0.
VC6, VC7, VC7.1, VC8.0, Win2K, WinXP, Win2003, Vista, MFC, VS.NET2003, Dev
 
Sebastien_Lachance 4.71
Server Client Sockets
Updated: 25 Apr 2003
Sample application Uses Server and client socket to establish exchange of data
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
Emiliano 4.71
How To Use the SocketAsyncEventArgs Class
Updated: 29 Sep 2010
An article about how to use the SocketAsyncEventArgs class
C# (C#1.0, C#2.0, C#3.0), .NET (.NET2.0, .NET3.0, .NET3.5), Architect, Dev
 
Marcos Hidalgo Nunes 4.71
A MSN Messenger Library for Construction of Communication Based Applications - Unedited
Updated: 24 Mar 2008
An article presenting a library for producing communication based application utilising the MSN Messenger services and protocols.
C++/CLI, C# (C#1.0, C#2.0, C#3.0), Forth.NET, Windows (Win2K, WinXP, Win2003, Vista), .NET (.NET1.0, .NET1.1, .NET2.0, .NET3.0, .NET3.5), Win32, Win64, Dev, Design
 
Derek Bartram 4.70
A light-weighted client/server socket class in C++
Updated: 19 May 2004
A multi-platform client/server socket in C++.
VC6, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
liyang yu 4.70
A simple application using I/O Completion Ports and WinSock
Updated: 30 Mar 2007
An article on implementing I/O completion ports using WinSock.
VC6, Win2K, Win2003, MFC, Dev
 
Swarajya Pendharkar 4.69
IPv6 Client Server Network Applications in C# .NET
Updated: 6 Aug 2003
IPv6 programming in the C# .NET 1.1 environment.
C#, .NET1.0, Win2K, WinXP, Visual-Studio, Dev
 
Gary Brewer 4.68
A simple TFTP client using C#
Updated: 23 Jun 2007
An article about creating a TFTP client with C#.
C#2.0, C#3.0, Windows, .NET2.0, .NET3.0, VS.NET2003, VS2005, Dev
 
Matthias.Fischer 4.67
Golabi Proxy Server
Updated: 20 Sep 2011
This is a proxy server with a client that can encrypt your browser request.
C# (C#3.0, C#4.0), Windows, socket
 
Farhad Hazraty Eini 4.67
A Simple C++ Client/Server in CORBA
Updated: 27 Sep 2009
An introduction to the Visual C++ CORBA development
C++ (VC6, VC7, VC7.1, VC8.0), C++/CLI, C, Windows (Win2K, WinXP), Win32, Visual-Studio (VS2005), Architect, Dev, Design
 
Carlos Jiménez de Parga 4.66
XML Based Communication library
Updated: 18 Dec 2003
XML based communication library to use command/object based through TCP/IP connections.
C#, .NET1.0, Win2K, WinXP, Dev
 
Hesham Desouky 4.64
Multithreaded Chat Server
Updated: 31 Jan 2007
This is a simple multithreaded chat server, intended for people to learn Socket programming and Threads in C#.
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Sidzone 4.62
Terminal Control Project (C# VT100 SSH Telnet)
Updated: 14 Mar 2006
An article on implementing Telnet and SSH, and displaying it on a VT100 Terminal Emulation control created using GDI+.
C#, .NET1.1, WinXP, GDI+, VS.NET2003, Dev
 
Columbus-MCSD 4.61
A Universal TCP Socket Class for Non-blocking Server/Clients
Updated: 16 Sep 2009
A universal class for bidirectional TCP communication
C++, Dev
 
Elmue 4.61
A very basic TCP server written in C#
Updated: 7 Mar 2006
This article shows a way to implement a small TCP server for general porpouses, using C#.
C#, Windows, .NET, Visual-Studio, Dev
 
edrazy 4.61
Asynchronous Socket Communications Using the .NET Framework
Updated: 31 Aug 2003
An article on asynchronous socket communications using the .NET framework.
C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, Dev
 
Scott McCain 4.60
Using C and an embedded web-server to provide browser based source editing
Updated: 6 Jan 2011
Using C to write a browser source editor.
C++ (VC8.0), C, Windows, Linux, Architect, Dev
 
Walter Capers 4.60
QDNet
Updated: 18 Mar 2009
QDNet is a compact client communication library that enables messaging between clients and server.
C#2.0, Windows, Dev
 
JayKore 4.60
A Simple Telnet Server in Python
Updated: 26 Mar 2011
A simple Telnet server written using Python
Python, Windows, Dev
 
fnwinter 4.60
Reusable multithreaded TCP client and server classes with example project in VB.NET
Updated: 30 Dec 2011
A multithreaded server class that accepts multiple connections from a provided client class. Each client can send and receive files and text (byte data) simultaneously along 250 available channels.
VB.NET, Windows, .NET2.0, .NET3.0, .NET3.5, VS2008, Dev, IP, programming, socket, multithreading, Sockets
 
pdoxtader 4.58
Create your own Web Server using C#
Updated: 27 Oct 2001
A step by step introduction to writing a Web Server using C#.
C#, Windows, .NET1.0, Visual-Studio, Dev
 
Imtiaz Alam 4.58
An Introduction to Socket Programming in .NET using C#
Updated: 10 Jun 2005
In this article, we will learn the basics of socket programming in .NET Framework using C#. Secondly, we will create a small application consisting of a server and a client which will communicate using TCP and UDP protocols.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
.NETian 4.54
Simple Client-server Interactions using C#
Updated: 22 Nov 2011
Introduces a couple of cover classes to provide event-driven interaction with TCP/IP sockets and simple message protocols
C#, Windows, .NET1.1, Visual-Studio, Dev
 
BobJanova 4.54
How to copy files remotely
Updated: 12 Jan 2010
Two applications to copy files remotely using sockets.
C#3.0, WinXP, Win2003, Vista, .NET3.5, Win2008, Win7, Dev
 
Santiago Sanchez 4.50
A high performance TCP/IP socket server COM component for VB
Updated: 25 Jun 2002
Although socket based TCP/IP servers using IO Completion Ports are often written in C++ it's sometimes useful to write such a server in Visual Basic.
VB6, VC6, VC7, Win2K, WinXP, MFC, Dev
 
Len Holgate 4.50
Barry's Chat System
Updated: 24 Nov 2002
Barry's Chat System
VC6, VC7, MFC, Dev
 
Barretto VN 4.50
Writing scalable server applications using IOCP
Updated: 5 Feb 2001
An article about using I/O Completion Ports and Winsock to write robust and scalable Windows server applications.
VB6, VC6, Win2K, MFC, Dev
 
Oz Ben Eliezer 4.45
Introduction to TCP client server in C#
Updated: 1 Oct 2001
An article on TCP client server programming
C#, Windows, .NET1.0, Visual-Studio, Dev
 
S.Thangaraju 4.43
Developing a Truly Scalable Winsock Server using IO Completion Ports
Updated: 22 Sep 2001
Developing a Truly Scalable Winsock Server using IO Completion Ports
VC6, Win2K, MFC, Dev
 
Norm .net 4.43
Sample HTTP Server Skeleton in C#
Updated: 14 Jan 2007
HTTP Server Abstract class, to serve HTTP Content.
Windows, Visual-Studio, Dev
 
rmortega77 4.42
A simple TFTP client using C++
Updated: 11 Sep 2008
A simple TFTP client implementation using C++, based on the Microsoft Winsock library.
C++ (VC6, VC7, VC7.1, VC8.0), Windows (Win2K, WinXP, Win2003, Vista, TabletPC), Win32, Visual-Studio, Dev
 
dim13 4.39
Creating a Client - Server app - Making a Chat
Updated: 16 Nov 2009
Making a typical client - server chat application
C# (C#2.0), .NET (.NET3.5), Win32, Win64, Visual-Studio (VS2008), Dev, WinForm
 
Gerard Castelló Viader 4.36
Voice and Text Conferencing Library
Updated: 15 Feb 2010
A library for creating a voice and text conferencing application
C#, Windows (WinXP, Win2003, Vista, Win7), .NET (.NET2.0, .NET3.0, .NET3.5), DirectX, Design, DLL, library, For, .NET4, WinForm
 
Irfan alam 4.33
A TCP/IP Server written in C#
Updated: 29 Dec 2003
TCP/IP Server, which is running as a Windows Service waiting for client requests
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Fact Pandit 4.33
Windows TCP Tunnel
Updated: 12 Jul 2006
This project shows how to forward TCP sockets from one machine to another.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Han_Jun_Li 4.33
A Simple Multi-Threaded Server Client Instant Messenger Application
Updated: 4 Jun 2006
A Simple Multi-Threaded Server Client Instant Messenger Application that uses TCP Listener and TCP Client. Allows Personal message and Conference communication between Clients and with the Server
C#, .NET, Win2K, WinXP, Win2003, Visual-Studio, Dev
 
massivegas 4.31
Class for Communication using Windows Sockets and TCP/IP
Updated: 7 Dec 2007
Classes with many useful properties and methods to communicate using TCP/IP
C# (C#1.0, C#2.0, C#3.0), Windows (Win2K, WinXP, Win2003, Vista), Win32
 
JonataCB 4.29
Network gaming classes and functions
Updated: 19 Oct 2009
A class library designed to provide easy-to-use/easy-to-integrate classes and functions for making network games.
C#, .NET, WinXP, Dev
 
Edward Nutting 4.27
Telnet server classes
Updated: 12 Jun 2001
Some classes and sample code on how to control/access your app remotely, using a telnet client.
VC6, Win2K, MFC, Dev
 
J.Hogendoorn 4.24
Scalable Servers Using IOCP
Updated: 13 Jul 2006
The purpose of this article is to cover a design that can be used to develop scalable network servers without impacting performance.
Win2K, Visual-Studio, MFC, Dev
 
Dinesh Ahuja 4.17
Bi-directional RPC
Updated: 4 May 2003
How to use RPC for doing bi-directional client/server procedure calls.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
moshe masas 4.06
Executing commands on a remote machine - Part 2
Updated: 21 Oct 2001
A simple tool that allows you to control other machines from your program
VC6, Win2K, MFC, Dev
 
Xiangyang Liu 刘向阳 4.02
Managing packet-based connections with CPacketConnection
Updated: 22 Jul 2002
CPacketConnection is a class for creating and managing packet-based connections
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Emilio Guijarro 4.00
Mentalis Based SecureSocketClient
Updated: 28 Feb 2008
Mentalis based SecureSocketClient
C# (C#1.0, C#2.0, C#3.0), Windows (WinXP)
 
Igor Sokolsky 4.00
A Simple HTTP Proxy with the ACE Library
Updated: 6 Nov 2008
An article on how to build a simple HTTP proxy server
C++/CLI, C, VC6, VC7, VC7.1, VC8.0
 
auralius manurung 4.00
IP Server
Updated: 3 Mar 2009
An IP server that pings a range of IP addresses.
C#, .NET, Dev
 
AKA MAJO 4.00
Using Sockets in Java - Client
Updated: 24 Mar 2008
Creating a client program using Java.
Java, Dev
 
Marius Iulian Mihailescu 4.00
EasySocket - Flexible and easy implementation of client-server architecture in C#
Updated: 23 Feb 2006
Using .NET Socket on TCP to create events oriented client-server behaviour.
C#, VB, .NET1.1, .NET2.0, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
JadBenAutho 3.97
Building Multiplayer Capability into Your Game in One Hour
Updated: 7 Oct 2005
Want to build multiplayer games but have no idea where to start or no time to develop solid networking code? Read on...
VC7.1, WinXP, Visual-Studio, MFC, Dev
 
Gabriyel 3.97
Reverse Connection Shell
Updated: 16 Sep 2007
How to access a server behind a gateway firewall using the reverse connection shell technique.
C#2.0, .NET2.0, WinXP, Vista, VS2005, Dev
 
Paul Chin PC 3.92
Multiple Views on Different Computers with a Single Model on Server
Updated: 30 Jul 2007
Implements Multiple Clients with different views connected with a single server remotely. Server has a single centralized model database. All views are updated asynchronously if the model is updated from any client or server itself.
C#2.0, Windows, .NET2.0, Dev
 
vikas maan 3.88
Simple TCP/IP Console Client (TcpClient, MultiThreading)
Updated: 21 Apr 2003
This is a tutorial on how to write a very simple TCP/IP console client that asks for a hostname and port which it will connect to. It spawns two threads - sending thread and receiving thread.
C#, Windows, .NET1.0, Visual-Studio, Dev
 
Vigrid 3.88
How to create a chat client using a set of communication classes
Updated: 25 Aug 2003
A pair of classes (no mfc) that can be used for tcp/ip _and_ serial communication.
VC7, VC7.1, Win2K, WinXP, Win2003, MFC, Dev
 
jgauffin, Jonas Gauffin 3.71
Simple Socket Control(s) to Create Server-Client Applications
Updated: 5 Jul 2006
Creating a simple control to be used as socket
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
punokio 3.67
A Generic C-Language TCP Client Application
Updated: 9 May 2010
A library for writing simple TCP client applications
C, Windows, Linux, Dev
 
José Vitor 3.67
Chat program
Updated: 2 Dec 2002
Simple chat program.
VC6, Win2K, MFC, Dev
 
essam el-nagar 3.61
Sockets in C#
Updated: 29 Oct 2003
Introduction to using Sockets in C#.
C#, VC7, .NET, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Chandrta/Chandrasekar 3.61
Sending Files using TCP
Updated: 18 Jan 2009
Sending files using TCP
C#, .NET
 
Amir Hesami 3.54
Creating a Client/Server Framework
Updated: 13 Nov 2002
Create a complete client/server framework with added server features, including activity logging, minimizing to the system tray, password and version checking, as well as user maintenance.
C++/CLI, VC6, .NET, Win2K, WinXP, MFC, Dev
 
Jeff Miles 3.53
Solution for TCP/IP client socket message boundary problem
Updated: 10 Oct 2005
Solution for unprotected TCP/IP message boundary problem.
C#, Windows, .NET1.1, .NET2.0, VS.NET2003, VS2005, Dev
 
Black Climber 3.53
A TCP/IP Chat Program
Updated: 20 Aug 2009
A TCP/IP chat program coded in Microsoft Visual Basic .NET.
VB9.0, .NET2.0, WinXP, Vista, .NET3.0, .NET3.5, Win7, Dev, WinForm
 
Andrew Courtice 3.53
How to build a chat server based on an IOCP framework
Updated: 26 Aug 2003
A winsock server framework that uses I/O completion ports. It is designed for reusability and must be overriden.
VC7, VC7.1, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
jgauffin 3.50
A scalable client/server using select() socket function
Updated: 17 Aug 2007
An article on using select() function to create scalable client/server applications
C++, Windows, Visual-Studio, MFC, Dev
 
Swarajya Pendharkar 3.47
A Simple and Easy to Use IOCP Server Framework
Updated: 30 Jun 2008
An introduction to SPServer Framework
C++, Windows, Dev
 
stephenlau 3.31
Making Socket Based Application Using TcpListener and TCPClient
Updated: 10 Jun 2002
Teaches how to program a socket based application in VC#.
C#, .NET1.0, Win2K, WinXP, Dev
 
Faraz Ahmed Siddiqui 3.23
IP and Port from TcpClient
Updated: 3 Oct 2006
How to get the TCP/IP address of a TCPClient using VB.NET and Reflection.
VB, .NET1.1, .NET2.0, WinXP, VS.NET2003, VS2005, Dev
 
Polymorpher 3.22
Simple Voice Chat
Updated: 19 Jan 2002
A simple peer to peer voice chat application using sockets
VC6, VC7, Win2K, WinXP, MFC, Dev
 
imran lodhi 3.22
Pop3 Client Service Engine instead of SQLMail
Updated: 10 Nov 2005
Pop3 Client Service (instead of SQLMail): Pop3 Class + DB Halper Class + Read XML Class + SQL Connection Dlg Control + BLOB to File Util
C#, SQL, Windows, .NET1.1, SQL2000, VS.NET2003, DBA, Dev
 
Sigura 3.18
Sending Binary Data using Sockets
Updated: 25 Jan 2005
An article on file transfer using sockets.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
engine252 3.12
Real Time TCP/IP using C#
Updated: 12 Jan 2002
This sample shows the communication techniques between a client and a server application using a Socket class on each side.
C#, Windows, .NET1.0, Dev
 
Jibin Pan 3.11
MUD Client Essentials
Updated: 19 Apr 2011
Includes the necessary code to support the Telnet protocol and ANSI color in a MUD client
C#, Windows, WPF
 
RyanHamshire 3.00
Protocol implementation
Updated: 31 Jan 2005
Add some protocol support to your server.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
engine252 2.96
How to use Winsock to set system clock via Internet Time Servers
Updated: 21 Mar 2005
Using Winsock UDP to set system clock.
VC7, Win2K, WinXP, MFC, Dev
 
Charles Lazo 2.67
Client Server Communication
Updated: 17 Jan 2006
This article gives information on client server communication using sockets.
C++, Windows, Visual-Studio, MFC, Dev
 
vamsidhar 2.35
A simple but effective Windows socket program
Updated: 22 Jun 2006
This Windows server socket class wraps Winsock functions and gives you the ability to write robust code, without the intricacies of modifying the code.
C++, Windows, Visual-Studio, Dev
 
engulfed111 2.29
A TCP Chat Application - Unedited
Updated: 23 Feb 2008
A chat application using a TCP protocol. This application is for VB6 User
VB6, VB, Dev
 
Imran A Momin 2.22
A simple TCP/IP Chat client/server
Updated: 3 Nov 2004
An article useful to understand simple thread use, TCP/IP networking, and basic use of XML.
C#, VC7, .NET1.0, WinXP, Dev, WinForm
 
GMachiavelli 2.03
TCP/IP Parameter Tuning for Rapid Client Connections
Updated: 22 Feb 2010
Applications that open and close a large number of client TCP/IP sockets run the risk of running out of available socket ports. The exceptions raised can be misleading because they are generally associated with server socket conflicts – not outbound client connections.
C#, Java, Windows, .NET, Linux, Architect, Dev, SysAdmin
 
Mike Gavaghan 2.00
A word on asynchronous sockets
Updated: 29 Jun 2003
A discussion on asynchronous sockets
C#, Windows, .NET, Visual-Studio, Dev
 
khaled chahabeddin 1.78
C# Sockets and Serialization
Updated: 9 Jun 2003
A simple game that runs based on client server programming.
C#, .NET1.0, Win2K, WinXP, Win2003, Dev
 
Fadhel Al-Hashim 1.55

Internet & Network - Dialup 

top
Title / Updated Author Score  
Simplified TAPI and Serial communication through CTapiLine class
Updated: 27 Dec 2004
Simple tutorial on TAPI 2.x using TAPISample dialog app with CTapiLine class
VC6, Win2K, MFC, Dev
 
Ramanan.T 4.64
CRasMonitor v1.41
Updated: 9 Mar 2000
A shareware application to monitor your Dial-Up Networking Connections.
VC6, Visual-Studio, MFC, Dev
 
PJ Naughter 4.55
Internet dialup program
Updated: 2 Dec 1999
A dial-up dialer for connection to Internet providers
VC6, MFC, Dev
 
Alexander Fedorov 4.40
CRRAS v.1.1 for Routing and RAS (RRAS) server under Windows 2000
Updated: 30 Jun 2003
Connect, query and terminate connections on a Windows 2000 RRAS Server
VC6, Win2K, Visual-Studio, MFC, Dev
 
i386.com 4.38
Calling RasHangUp without errors.
Updated: 9 Jan 2000
A way to call RasHangUp without hanging your applications or your modem
VC6, Visual-Studio, MFC, Dev
 
Alexander Fedorov 4.20
Detect RAS Connection
Updated: 2 Jul 2001
Detect internet connection using RAS API
VC6, Win2K, MFC, Dev
 
Gilad Novik 4.19
RasEnumConnections and "632" Error
Updated: 7 Apr 2005
Why RasEnumConnections fails on Win2k and how to fix it.
VC6, Win2K, MFC, Dev
 
pozhit 4.14
Showing Dial-up Connection Status Window
Updated: 4 Dec 2001
How to invoke Dial-up Connection status window programatically by Sundar & Naresh
VC6, Win2K, WinXP, MFC, Dev
 
Parasuraman SundarRajan 4.07
Keeping an eye on the RAS-connections
Updated: 4 Jun 2002
Logs the usage of RAS-connection to an access-database
VC6, Win2K, MFC, Dev
 
Karl Josefsson 3.90
Detecting and Installing Modem and RAS, Dial-up Network.
Updated: 15 May 2002
Detecting whether Modem and Dial-up Networking is installed in your system. If not, installing them programatically.
VC6, Win2K, WinXP, MFC, Dev
 
Parasuraman SundarRajan 3.87
Auto connecting with DUN using InternetAutodial
Updated: 18 Sep 2003
Quick and dirty hack for automatically bringing DUN dialog if not connected to the internet.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, Dev
 
Brian Davis 3.82
Creating Dialup Connections
Updated: 29 Aug 2002
Describes how to create a new phone-book entry, and set it up with the user profile.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Seiya Fujii 3.81
Opening a Dial-Up connection
Updated: 13 Jan 2000
How to open a new dialup connection using RasDial
VC6, MFC, Dev
 
Mileta Radenovic 3.63

C# Programming - Distributed Apps 

top
Title / Updated Author Score  
Using MSMQ for Custom Remoting Channel.
Updated: 10 Dec 2001
This article describes how to design, implement (C#) and configure the Custom Remoting Channel using MSMQ.
C#, VC7, .NET1.0, Win2K, Dev
 
Roman Kiss 4.87
Filio - Distributed File Management
Updated: 11 Aug 2010
Distributed File Management
C# (C#2.0), .NET (.NET2.0), Win32, Threading, Framework, PInvoke, processing, Networking, file-system
 
Huisheng Chen 4.86
dotNETSender - Windows Messenger like GUI for net send command
Updated: 7 May 2002
Windows Messenger like GUI for net send command
C#, .NET1.0, Win2K, WinXP, Dev
 
Sunil TG 4.75
Surviving poison messages in MSMQ
Updated: 29 Jun 2005
What are poison messages, why they are dangerous for MSMQ applications and what to do about it.
C#, .NET1.0, .NET1.1, .NET2.0, Win2K, WinXP, Win2003, Vista, VS.NET2003, VS2005, Architect, Dev
 
Dejan Grujic 4.54
Using Remote Object for Distributed COM+ Event Subscription.
Updated: 8 Jan 2002
This article describes how to design, implement (C#) and configure the Custom Remoting Channel as a bridge to the COM+ Event Subscription.
C#, VC7, .NET1.0, Win2K, Dev
 
Roman Kiss 4.43
How to Pass Managed Objects As a Parameter of a Queued Component.
Updated: 23 Mar 2002
An article on how to pass managed objects through MSMQ to queued components.
C#, .NET1.0, Win2K, WinXP, Dev
 
davyuan 4.42
Remote Objects Part 2
Updated: 1 Apr 2002
This article shows how to create a remote server and MDI window Remote Client using remote objects
C#, Windows, .NET1.0, Dev
 
Jibin Pan 3.90
Remote Objects Part 1
Updated: 19 Mar 2002
This demo shows how to create remote objects with callback functions and use them in the window host.
C#, Windows, .NET1.0, Dev
 
Jibin Pan 3.83
Publish And Subscribe with C#
Updated: 2 Apr 2002
This tutorial will introduce the concepts of publishing and subscribing data over a network using C#
C#, Windows, .NET1.0, Dev
 
Anthony Roach 3.71
Using the Remoting Callbacks in .Net Applications.
Updated: 1 Dec 2001
This article describes how to implement an asynchronous remoting callbacks from different remote objects such as .Net Service (COM+), Web Service and classic .Net object using the C# language.
C#, VC7, .NET1.0, Win2K, Dev
 
Roman Kiss 3.38

Internet & Network - DNS 

top
Title / Updated Author Score  
DNS.NET Resolver (C#)
Updated: 25 Nov 2011
A full implementation of a reusable DNS resolver component and a Dig.Net example application.
C# (C#1.0, C#2.0, C#3.0), Windows, .NET (.NET2.0), Visual-Studio (VS2005), Dev
 
Alphons van der Heijden 5.00
C# .NET DNS query component
Updated: 25 Oct 2005
A reusable component for performing DNS queries.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Rob Philpott 4.89
Peer Name Resolution (PNRP)
Updated: 27 Oct 2005
Introduction to Peer Name Resolution and Microsoft's Peer-to-Peer technology.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 4.84
CDNS 1.0 - An MFC DNS class
Updated: 22 May 2005
An MFC implementation of a DNS class, it can retrieve multiple IPs and hostnames.
VC6, Win2K, WinXP, Win2003, Vista, MFC, Dev
 
.rich.w 4.67
Domain Walker
Updated: 22 Jan 2006
An object that allows you to explore the topology of the internet.
C#, Windows, .NET1.1, .NET2.0, VS.NET2003, VS2005, Dev
 
Ravi Bhavnani 4.54
MonitorRouterIP
Updated: 29 Oct 2010
To help people with dynamic domains keep their DNS entries pointing at their home computer and to check for lost connectivity
XML, IP
 
Paul R Cotter 4.50
Test Your DNS Response Times with DNS Tester
Updated: 27 Mar 2007
Check the response times of your DNS and compare with other servers.
C#, Windows, .NET, Visual-Studio, Dev
 
Charles Putney 4.44
Intercept and Rewrite DNS Requests Using Regular Expressions
Updated: 2 Nov 2006
A tool and code for injecting a DLL into a running Firefox process to rewrite DNS lookups.
C++, WinXP, Win2003, MFC, VS2005, Dev
 
Dan Farino 4.11
A Simple DNS Resolver
Updated: 27 Mar 2004
A simple DNS resolver compiled under Bloodshed C++ and using the Winsock 1.1 API
C++, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
JLèé 4.04
DNS Query MFC based Application
Updated: 8 Nov 2007
This article demonstrates DNS query for specific domain address with MFC GUI interface for convenient usage
VC8.0, Windows, MFC, VS2005, Dev
 
Chesnokov Yuriy 3.93
Peer Graph - Searching
Updated: 6 Jan 2006
Searching record meta-data in a Peer Graph using Microsoft's Peer-to-Peer technology.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 3.80
DNS Resolver RFC 1035
Updated: 14 Aug 2004
DNS resolving by RFC 1035; complete library for all versions of Windows.
VC6, Windows, MFC, Dev
 
Akash Kava 3.50
IDNA resolver client
Updated: 30 Mar 2004
Using non-ASCII in DNS name lookups.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
Gisle Vanem 2.50

Internet / Network - Email 

top
Title / Updated Author Score  
.NET Mail Composer
Updated: 6 Aug 2008
Compose mail messages and send them through your mail account provider.
C# (C#2.0, C#3.0), Windows (Win2K, WinXP, Win2003, Vista, TabletPC), .NET (.NET1.1, .NET2.0, .NET3.0, .NET3.5), Design
 
SHRIDHAR TL 4.94
PopClient - A POP3 companion to SmtpClient
Updated: 19 Nov 2010
PopClient is an asynchronous POP3 library with support for SSL and attachments
C# (C#4.0), .NET, Visual-Studio (VS2010), Architect, Dev, .NET4, MVVM
 
Nish Sivakumar 4.92
Command Line Emailer
Updated: 24 Sep 2003
A console application for sending email from the command line
C#, Windows, .NET, Visual-Studio, Dev
 
Mike Ellison 4.92
Email Templates: A generic solution to handle template files
Updated: 4 Nov 2004
A simple, user-friendly and flexible framework that takes care of all your email template files - once and for all.
C#, Windows, .NET1.1, ASP.NET, WebForms, VS.NET2003, Dev, WinForm
 
Philipp Sumi 4.91
MIME Compliant Parser
Updated: 8 Jul 2008
An attempt to separate MIME parsing from mail protocol.
C#, Windows, .NET2.0, VS2005, Dev
 
smithimage 4.89
POP3 Email Client with full MIME Support (.NET 2.0)
Updated: 8 Oct 2006
C# class reading ASCII emails from a POP3 server and converting them using MIME to aSystem.Net.Mail.MailMessage derived class for further processing. The complete code is provided (pure C# 2.0, only .NET framework DLLs used). If possible, it matches MIME multiparts to body, attachment, etc. of MailM
C#2.0, .NET2.0, Win2K, WinXP, Win2003, Vista, ASP.NET, WebForms, VS2005, Dev
 
Peter Huber SG 4.87
SMTP and POP3 Mail Server
Updated: 29 Sep 2003
An SMTP and POP3 mail server written using the .NET Framework and C#.
C#, .NET1.0, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
Ivar Lumi 4.87
POP3 Email Client (.NET 2.0)
Updated: 4 Aug 2006
C# class making it easy to interact with POP3 email server, like listing of emails, download and deletion. Special attention was given to reliable connection control. The code was tested for several months with Google Gmail, including SSL.
C#2.0, Windows, .NET, Visual-Studio, Dev
 
Peter Huber SG 4.86
Ready-to-use Mass Emailing Functionality with C#, .NET 2.0, and Microsoft® SQL Server 2005 Service Broker
Updated: 7 Sep 2006
This paper demonstrates an extensible mass emailing framework (Smart Mass Email SME). The demo implementation uses cutting edge .NET technologies available today such as C#, .NET 2.0, Microsoft® SQL Server 2005 Service Broker, MS Provider Pattern, Enterprise Library January 2006 etc.
SQL, C#2.0, Windows, .NET2.0, SQL2000, SQL2005, VS2005, Architect, DBA, Dev
 
Shahed.Khan 4.84
Hotmail using C# – A HTTPMail client under .NET
Updated: 25 Mar 2003
A C# client library for access Hotmail using the undocumented HTTPMail protocol.
C#, .NET1.0, Win2K, WinXP, Dev
 
kais 4.83
Simple MAPI.NET
Updated: 30 Mar 2002
Usage of the simple MAPI API.
C#, .NET1.0, Win2K, WinXP, Dev
 
NETMaster 4.83
SMTP: MailMessage done right
Updated: 25 Feb 2005
HTML email payload from a URL.
C#, Windows, .NET, Visual-Studio, Dev
 
Peter Wone 4.82
A POP3 Client in C# .NET
Updated: 9 Feb 2004
A POP3 client in C# .NET for reading and processing emails (including attachments).
C#, .NET1.0, Win2K, Dev
 
Desmond McCarter 4.81
Hotmail Exposed
Updated: 5 Oct 2003
Access Hotmail using C#, the extended version.
C#, .NET1.0, Win2K, WinXP, Visual-Studio, Dev
 
Wouter van Vugt 4.79
Programmatically adding attachments to emails in C# and VB.NET
Updated: 20 Apr 2007
A technique for programmatically adding attachments to emails in C# and VB.NET.
C#, VB, .NET, Win2K, WinXP, Visual-Studio, Dev
 
David M Brooks 4.79
A Library for downloading Mails from a POP3 Server
Updated: 14 Mar 2007
Mail downloading with C#.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
m@u 4.79
A class for sending emails with attachments in C#.
Updated: 28 Feb 2003
A class for sending emails with attachments in C#.
C#, Windows, .NET1.0, Dev
 
Steaven Woyan 4.76
Send E-Mail from your .NET Application using your GMail Account
Updated: 24 May 2006
Send E-Mail from your .NET application using your GMail Account
C#, Windows, .NET, Visual-Studio, Dev
 
Syed Moshiur Murshed 4.76
POP3 Client as a C# Class
Updated: 5 Aug 2003
An article description of a C# class that implements the standard POP3 commands.
C#, VB, Windows, .NET1.0, .NET1.1, VS.NET2003, Dev
 
Bill Dean 4.74
Sending the contents of a webpage with images as an HTML mail
Updated: 23 Dec 2006
This article shows how you can embed images from a web server into your mail message.
C#2.0, Windows, .NET2.0, ASP.NET, VS2005, Dev
 
Five Minute Developer 4.72
POP3 (RFC 1939) & MIME (RFC 2045) Compliant Client
Updated: 27 Nov 2007
POP3 client implemented with the command and state design patterns
C#, Windows, .NET2.0, VS2005, Dev
 
smithimage 4.70
Simple POP3 Email Class
Updated: 13 Mar 2007
A simple POP3 class to download emails from a mail server.
VB8.0, .NET, Win2K, WinXP, Win2003, VS2005, Dev
 
Luke Niland 4.68
SendSmtp - a command line utility to send e-mails via SMTP
Updated: 29 Nov 2006
A command line utility which sends e-mails using the SmtpClient class.
C#, XML, Windows, .NET2.0, VS2005, Dev
 
Andrew Tweddle 4.68
WallaAgent
Updated: 28 Mar 2005
WallaAgent is a Walla free mail checking agent that runs on your computer instead of logging in to the Walla mail site.
C#, Windows, .NET, Visual-Studio, Dev
 
Gil.Schmidt 4.67
Embed HTML Email Images
Updated: 5 Jun 2007
How to embed images in your email newsletter.
C#, Windows, .NET1.1, VS.NET2003, Dev, WinForm
 
mwdiablo 4.65
Send Mails from Windows Application
Updated: 15 Sep 2009
This article enables you to send mails from Windows application which is normally a tedious task
C# (C#1.0, C#2.0, C#3.0, C#4.0), Windows (WinXP, Win2003), .NETCF, .NET (.NET1.1, .NET2.0, .NET3.0, .NET3.5), Win32, Win64, IIS (IIS6), Visual-Studio (VS.NET2003, VS2005, VS2008), WCF, All-Topics, CEO, Architect, DBA, Dev, QA, Design, SysAdmin, Sales, Marketing, WinForm
 
Sushant Joshi 4.62
Custom GMail Vacation Auto-Responder
Updated: 27 May 2009
Use IMAP to auto-reply to unread GMail messages while on vacation
VB (VB8.0, VB9.0), .NET (.NET2.0, .NET3.0, .NET3.5), Visual-Studio (VS2005, VS2008), Dev, SysAdmin
 
_Khallaf 4.60
Sending Email Using Embedded Images
Updated: 25 Mar 2009
How to send embedded images in email using .NET 2.0.
C#, .NET, Dev
 
Rizwan Qureshi 4.54
Email checking program with support for multiple POP accounts
Updated: 18 Apr 2011
A program to check for email messages with multiple POP accounts.
C++, Win32, MFC, Dev
 
Sergey Chepurin 4.50
How to Access Emails Using the IMAP Protocol
Updated: 23 Sep 2008
This article explains how to use the IMAP protocol to access emails. It explains how to use some of the common IMAP commands.
C#, Windows, .NET, Visual-Studio (VS2008), Dev
 
Syed M Hussain 4.46
Sending complex emails in .NET 1.1
Updated: 15 Mar 2006
This article describes complex issues about sending emails in .NET 1.1 (such as using a SMTP server that requires authentication).
C#, Windows, .NET1.1, VS.NET2003, SQL-CE, DBA, Dev
 
Florentin BADEA 4.44
Retrieve Mail From a POP3 Server Using C#
Updated: 19 Jan 2002
A simple program for retrieving mails from a POP3 server, based on RFC 1725.
C#, Windows, .NET1.0, Dev
 
Agus Kurniawan 4.43
Receiving Mail through the POP3 Protocol & MIME Parser
Updated: 29 Sep 2011
This article describes how to create a simple class library to get the mail through the POP3 protocol and MIME parser.
C#, Windows, .NET, Expression blend
 
Alеksey Nemiro 4.43
SMTP Login class
Updated: 21 Jan 2003
Basic SMTP Login class
C#, Windows, .NET1.0, Visual-Studio, Dev
 
Benjamin L. Miller 4.40
How to Send Mails from your GMAIL Account through VB.NET or C#. Windows Programming, with a Bit of Customization
Updated: 19 Mar 2008
Sending Mails from your Windows Application
C#, VB8.0, Windows, .NET2.0, VS2005, Dev
 
Abhishek Sur 4.38
IMAP Client library using C#
Updated: 13 Jan 2005
IMAPLibrary supports the basic IMAP protocol functions to fetch messages from the mailbox.
C#, VC7, .NET1.0, .NET1.1, WinXP, VS.NET2003, Dev
 
Rohit Joshi 4.37
BooProd.BMail - Sending dynamically generated emails
Updated: 22 Aug 2011
This package will help you send all kinds of emails like account creation, order, mailing, reports, ... everything containing dynamic fields. You can configure your own SMTP server, use notification, and add attachments.
C#, .NET1.1, Win2K, WinXP, IIS5.1, VS.NET2003, VS2010, Dev, .NET4
 
Boo! 4.34
Set the Time for E-Mail Sending from your .NET Application
Updated: 3 Apr 2010
Time triggered mailing which can help you to win over first in first come first serve situation
C#, .NET
 
JavierJoung 4.25
Send Inline Image Email (VB.NET 2.0)
Updated: 21 Aug 2007
Send HTML Email with embedded image files instead of external link. Most email client will display inline image directly since there is less security risk. No more broken images.
VB8.0, Windows, .NET2.0, VS2005, Dev
 
WPKF 4.19
Sending Mail Using C# via SMTP
Updated: 19 Dec 2001
A simple application for sending mail via SMTP server using C#
C#, Windows, .NET1.0, Dev
 
Agus Kurniawan 4.19
How to send a simple text email message
Updated: 14 Nov 2004
How to send a simple text email message.
C#, VB, Windows, .NET1.1, VS.NET2003, Dev
 
Chad Z. Hower aka Kudzu 3.91
Email Processing / Automation Using a Minimalistic Approach
Updated: 30 Jun 2006
Imagine that you want to start the defrag or the TV card recording on your home PC via your mobile phone. This is one way to do it.
C++, Windows, Visual-Studio, MFC, Dev
 
Ladislav Nevery 3.85
Creating In-Memory Mail Attachments
Updated: 24 Nov 2007
This article shows how to create mail attachments during runtime without creating files on the file system.
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Sven Grand 3.82
Decoding the "Windows 1255" format
Updated: 11 May 2009
An article on how to decode the "Windows 1255" format.
C#, Windows, .NET, Dev
 
maor tzivony 3.80
Windows Email Client application using .NET (C#)
Updated: 21 Dec 2005
An article on a Windows email client application using .NET.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Fabian Tang 3.74
Get Notified When Client Opens Email
Updated: 15 Jan 2009
In this article we learn how to create a simple HttpHandler that will notify the sender when the email is opened.
C#, HTML, Dev
 
azamsharp 3.47
Mail library using sockets, in C#
Updated: 27 May 2004
My own mail library without CDO and System.Web.Mail.
C#, .NET1.1, Win2003, Visual-Studio, Dev
 
vmlinuxx 3.00
AdHawkMailer - An ASP.NET Component for Sending Emails in VB.NET
Updated: 16 Jun 2008
AdHawkMailer is an ASP.NET component for sending emails in VB.NET.
VB8.0, Windows, .NET2.0, ASP.NET, VS2005, Dev
 
AdamNThompson 2.91
Three Ways of E-Mail Address Validation - Regex, SMTP, POP3
Updated: 9 Feb 2007
Article about the technology of checking email address validation
C++, Javascript, XML, C#1.0, C#2.0, Windows, .NET1.0, .NET1.1, .NET2.0, ASP.NET, SQL-Server, MFC, Ajax, VS.NET2003, VS2005, Architect, DBA, Dev
 
Dmitry Kikhtev 2.90
SuperMail.NET, a bulk emailing app using System.Net.Mail, MS Access, and My.Settings
Updated: 12 Aug 2007
Using the System.Net.Mail namespace, My.Settings, and MS Access to develop a bulk emailing application.
VB8.0, Windows, .NET2.0, VS2005, Dev
 
AdamNThompson 2.52
POP3 Library in C#
Updated: 26 Sep 2003
Complete POP3 Library with Attachment read and Save option
C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
PramodKumarSingh 2.36
Socket Console for SMTP in C#
Updated: 25 May 2004
This is a byproduct while writing a fully functional mail sender. A good example for learning socket communication.
C#, .NET1.1, Win2003, Visual-Studio, Dev
 
vmlinuxx 2.33
Attaching files with a CDO mail
Updated: 22 Jun 2004
Code for who search for CDO mailing attachments.
VBScript, Windows, ASP, Dev
 
rampdci 1.31

Internet & Network - Email & SMTP 

top
Title / Updated Author Score  
CSmtpProxyMT 1.0
Updated: 15 Nov 2001
An SMTP proxy class with ability to insert signatures to outgoing mails. Does not require MFC.
VC6, VC7, Win2K, Visual-Studio, MFC, Dev
 
Nish Sivakumar 4.93
MailMergeLib - A .NET Mail Client Library
Updated: 8 Oct 2010
MailMergeLib is a SMTP mail client library. It makes use of .NET System.Net.Mail and provides comfortable mail merge capabilities. MailMergeLib corrects a number of the most annoying bugs and RFC violations that .NET 2.0 to .NET 4.0 suffer from.
C# (C#2.0, C#3.0, C#4.0), Windows (Win2K, WinXP, Win2003, Vista), .NET (.NET2.0), ASP.NET, Visual-Studio (VS2005, VS2008, VS2010), Dev
 
Norbert Bietsch 4.91
Yet Another Email Client (LINQ to IMAP)
Updated: 4 Jul 2011
Equinox is an SMTP/IMAP client running on the .NET Framework and Mono.
C#4.0, Mono, LINQ, Dev, .NET4, email
 
Alexander Wieser 4.88
En/Decode MIME-Content with MimeSniffer
Updated: 2 Dec 2002
RFC-compliant Mime-En/Decoder
VC6, VC7, Win2K, WinXP, MFC, ATL, Dev
 
Randolph Duke 4.88
MIME Message Composer/Analyser
Updated: 18 Apr 2004
A C++ implementation of MIME
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, Visual-Studio, MFC, STL, Dev
 
nickadams 4.87
Adding Save() functionality to Microsoft.Net.Mail.MailMessage
Updated: 11 Jan 2009
Using a combination of Reflector, Reflection, and C# 3.0 extension methods to add Save(string FileName) functionality to MailMessage in Microsoft.Net.Mail.
C# (C#1.0, C#2.0, C#3.0), .NET (.NET3.5), Dev
 
Allan Eagle 4.87
Email Sender
Updated: 12 Jun 2011
Send email directly to the receiver's SMTP server.
C#, .NET2.0, Dev
 
Liu Junfeng 4.83
SMTP Client with SSL/TLS
Updated: 27 Jun 2011
C++ SMTP client, support SSL and TLS encrypted connection to SMTP server
C++ (VC9.0), Windows (WinXP), Win32, Dev, Networking, Network, TCP/IP
 
David Johns, John TWC 4.83
Mail Monitor++
Updated: 8 Nov 2004
A POP3 Monitor application.
VC6, VC7, VC7.1, VC8.0, Win2K, WinXP, Win2003, MFC, ATL, VS.NET2003, Dev
 
sergiols 4.81
Implementing Outlook 2002/XP Event Sinks in MFC C++ 2003 .NET
Updated: 29 May 2003
How to implement Outlook event sinks to alert your application when new mail has been received.
VC7, VC7.1, Win2K, WinXP, MFC, VS.NET2003, Dev
 
zebbedi 4.79
SMTP Client
Updated: 16 Jul 2010
The CSmtp class allows to send emails with attachments. It only provides the AUTH LOGIN authentication.
VC6, Windows, Linux, Win32, Visual-Studio, Dev
 
Jakub Piwowarczyk 4.76
CPopProxyMT - A multi-threaded POP3 proxy skeleton
Updated: 9 Oct 2002
CPopProxyMT is a skeletal class that wraps a multi-threaded POP3 proxy. You can further modify this class to suite your needs.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Nish Sivakumar 4.69
A POP3 class with WIN32 API (APOP Command support)
Updated: 3 Jan 2003
A POP3 class with WIN32 API
VC6, Win2K, WinXP, MFC, Dev
 
Brandon G. WANG 4.54
Sending Email with Gmail, Yahoo, AOL, and Live Mail Via SMTP
Updated: 27 May 2010
Simple Email with Gmail, Yahoo, AOL, and Live mail via SMTP
C#, VB
 
charles henington 4.53
CFastSmtp - Fast and easy SMTP class...
Updated: 4 Sep 2002
Fast and simple win32 SMTP class with handy local ip/name funtions
VC6, Win2K, Visual-Studio, MFC, Dev
 
Christopher W. Backen 4.39
SMTP Server
Updated: 22 Sep 2007
This article shows how to design an SMTP server
VC8.0, Windows, Visual-Studio, MFC, Architect, Dev, Design
 
Maruf Maniruzzaman 4.33
Getting an MX record (the easy way)
Updated: 27 Feb 2003
Using DNSQuery() to get an MX record
VC6, VC7, .NET1.0, Win2K, WinXP, MFC, STL, Dev
 
Dave Loeser 4.25
CPop3 class
Updated: 31 Mar 2002
This is simple CPop3 class that can connect to a pop3 server and receive messages.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Christopher Zmorzynski 4.17
A Simple But Effective Way to Send an Email using SmtpClient Class
Updated: 9 Aug 2009
A simple but effective way to send an email using SmtpClient class
C#, Windows, Visual-Studio (VS2005, VS2008, VS2010)
 
Md. Marufuzzaman 3.94
SMTP Stress Tool
Updated: 27 Dec 2006
SMTP Stress Tool
C#, Windows, .NET, Visual-Studio, Dev
 
Ivar Lumi 3.82
VB.NET 2005 SMTP Email Message
Updated: 11 Jul 2006
Send an SMTP mail message with multiple recipients and multiple file attachments.
VB, Windows, .NET, Visual-Studio, Dev
 
Edacio 3.50
Send HTML Via SMTP By Extending CMimeMessage
Updated: 18 Jan 2007
Extending the CMimeMessage class to send HTML messages
C++ (VC8.0), Windows (WinXP), Visual-Studio (VS2005), ATL, Dev
 
MBrooker 3.18
Sending Mail With An Embedded Image
Updated: 20 Jun 2007
Sending Mail With An Embedded Image
C#2.0, Windows, .NET, Visual-Studio, Dev
 
Lavate Prashant B. 2.94
An SMTP Email Component in C#
Updated: 21 Apr 2008
A simple e-mail component.
C#, .NET, WinXP, Visual-Studio, Dev
 
Bertus Kruger 2.85
Spam Killer
Updated: 20 Mar 2002
Delete unwanted mails from your PO3 server
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Hirosh 2.40
rEmail Part 2 - rPOP3_Client
Updated: 2 Jun 2005
rEmail is a set of tutorials I am writing describing how I am building tools to download, interpret and send email messages. rPOP3_Client uses rTCPIP to download emails from a POP3 server.
VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Robert James Metcalf 2.17
SMTP server stress tester
Updated: 20 Mar 2002
stress test your SMTP server by sending a large number of emails
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Hirosh 1.91
Digitally Signing Emails
Updated: 29 Mar 2008
Digitally signing Emails using CAPICOM and CDO
C#2.0, .NET (.NET2.0), WinXP, Dev
 
Dan Madden 1.00

Internet & Network - FTP 

top
Title / Updated Author Score  
gzTx - A File Transfer Daemon
Updated: 1 Mar 2008
Using on-the-fly compression during file transfer
Java, Dev
 
st0le 5.00
A Complete FTP Server
Updated: 30 May 2005
This article presents a fully functional implementation of a FTP server.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Pablo van der Meer 4.96
File Transfer Protocol (FTP) Client
Updated: 1 Dec 2011
Connect to FTP server, and download, upload, rename, and delete files or directories.
C#, Windows, .NET, Dev, Internet
 
SercanOzdemir 4.92
FTP Wanderer - FTP Client using WININET
Updated: 30 Jul 2002
This article presents a fully functional implementation of a FTP client.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Pablo van der Meer 4.90
A Windows FTP Application
Updated: 11 Feb 2010
A fully functional FTP application for most Windows systems, inculding a Windows 7 specific built which addresses and uses the new features found in Windows 7!
C#3.0, .NET3.5, Win7, Dev
 
Pathachiever 4.88
An FTP secure client library for C#
Updated: 10 Dec 2008
How to implement an FTP secure connection with an SSL stream class.
C# (C#1.0, C#2.0, C#3.0), .NET, Dev
 
kadaoui el mehdi 4.87
Steganography 17 - FTP Through a Proxy
Updated: 16 Nov 2007
Transporting piggyback data in FTP transfers
C#2.0, Windows, .NET2.0, .NET3.0, VS.NET2003, Dev
 
Corinna John 4.85
FTP Client and HttpFileDownloader Components (Controls)
Updated: 25 Jun 2008
FTP client and HttpFileDownloader components (controls).
C# (C#1.0, C#2.0, C#3.0), Windows, .NET (.NET2.0, .NET3.0), Dev
 
Alex_1 4.82
FTP Client Class
Updated: 5 Dec 2005
A non-MFC class to encapsulate the FTP protocol.
VC7, VC7.1, VC8.0, Win2K, WinXP, MFC, STL, VS.NET2003, Dev
 
otom 4.82
FTP client library for C#
Updated: 27 Mar 2003
FTP client library for C#, including asynchronous operations.
C#, .NET1.0, Win2K, WinXP, Visual-Studio, Dev
 
Dan Glass 4.80
How Proxy Server serves FTP clients?
Updated: 10 Feb 2005
This article describes how Proxy Server deals with PORT and PASV FTP commands
VC6, VC7.1, Windows, VS.NET2003, Dev
 
Hatem Mostafa 4.79
Partial FTP Downloader
Updated: 29 Sep 2008
An article about a partial FTP Downloader
.NET1.1, Dev
 
Elmue 4.79
Using FTP with .NET including sending server commands
Updated: 19 May 2004
How to send and receive files, enumerate directories and subdirectories remotely on demand, send server commands through FTP control port.
C#, VC7.1, .NET1.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
 
Tim Kohler 4.77
TJFTP - A Visual C++ FTP Client
Updated: 14 Nov 2005
A Windows FTP client written without CInternetSession or CFtpConnection classes. Demonstrates manual manipulation of Winsock sockets, FTP principles, and GUI concepts such as List controls with in-place label-editing and column sorting, progress indicators, and reading and writing to the Registry.
VC6, VC7, VC7.1, Win2K, WinXP, MFC, VS.NET2003, Dev
 
shellraker 4.76
FTP Component in C#, for .NET
Updated: 29 May 2002
An FTP component and sample FTP client, in C#.
C#, Windows, .NET1.0, Dev
 
Jerome Lacaille 4.76
C# FTP Client Library
Updated: 5 May 2006
Easy to use FTP client library with features in mind.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
jptros 4.75
Application for uploading modified Files to a FTP Server - Unedited
Updated: 14 Oct 2002
Simple C# Console Application that uses a local MS-Access Database to store modification Dates of Files and uploads modified Files to a FTP Server
C#, Windows, .NET1.0, Dev
 
Uwe Keim 4.73
Retrieving a file via. HTTP
Updated: 24 Feb 2002
A tutorial and class derived from CInternetSession.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Jay Beckert 4.71
A Windows FTP Tool
Updated: 30 Mar 2011
Downloading or uploading a whole folder including subfolders at once
C#, .NET, Visual-Studio, CEO, Architect, DBA, Dev, QA, Design, SysAdmin, Sales, Marketing, file-system
 
Xiangyang Liu 刘向阳 4.60
Advanced FTP Server
Updated: 24 Oct 2009
Enables remote access to your files and folders via FTP
C# (C#2.0), Javascript, XML, HTML, .NET (.NET2.0), ADO.NET, Ajax, SysAdmin
 
SHRIDHAR TL 4.45
An Active FTP and Passive FTP Client in C#
Updated: 14 May 2011
This C# FTP library is a solution I had to come up with for a client; it supports both Passive FTP and Active FTP.
C#, .NET, Dev
 
Michael Ridland 4.20
LightFTPClient: a basic FTP client
Updated: 9 May 2004
LightFTPClient is a basic FTP client.
C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Massimo Beatini 4.16
Console FTP in C#
Updated: 7 Mar 2004
A basic FTP client in C#.
C#, Windows, .NET1.0, Dev
 
Hasani 3.78
How To Retrieve and Change FTP File Attributes by Using WinInet Functions.
Updated: 31 Mar 2006
An article about using the FTPCommand function to send direct commands to the FTP server.
C++, Windows, Visual-Studio, MFC, Dev
 
pkhach 3.50
WSTD-Ftp, A neat FTP server
Updated: 10 Mar 2006
An article about a neat FTP server I've written, called WSTD-Ftp.
VC7, VC7.1, MFC, VS.NET2003, Dev
 
Moagiz 3.45
C# FTP client, based on the WinInet.dll API
Updated: 16 Sep 2003
The WinInet.dll API is able to tunnel through firewalls - this simple FTP client will support file transfer even when your firewall has only port 21open!
C#, Windows, .NET1.1, Visual-Studio, Dev
 
Peter Beedell 3.24
FTP-based Replication with Sharp FTP Server
Updated: 25 Jun 2004
This article explains how to do FTP-based replication through the example of the Sharp FTP Server.
C#, .NET1.1, Win2K, WinXP, TabletPC, VS.NET2003, Dev
 
InActive 3.18
OpenFileDialog for FTP
Updated: 2 Oct 2008
Dialog for selecting a file found on an FTP server.
C#1.0, C#2.0, C#3.0, .NET2.0, Win2K, WinXP, Win2003, Vista, Win32, Dev
 
stebo0728 2.50
Download multiple files from an FTP server in .NET
Updated: 3 Jan 2008
This article is a brief description on how to code to download multiple files from an FTP server using .NET.
C++/CLI, .NET2.0, Win2003, VS2005
 
Aman Sura 2.45
FTP search of older files and delete them
Updated: 24 May 2004
Mark all the files on an FTP site that are older than a specified time and delete if required.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
SathishVJ 1.50

Internet & Network - General 

top
Title / Updated Author Score  
Offline Browser using WinInet, URL Moniker and MSHTML APIs
Updated: 22 Mar 2005
This article describes how to make an offline browser using Visual C++/Win32 APIs.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Muhammad Sheraz Siddiqi 5.00
CSNTPClient - An SNTP Implementation
Updated: 7 Apr 2000
A collection of freeware MFC classes to encapsulate the SNTP protocol.
VC6, MFC, Dev
 
PJ Naughter 5.00
WWW DSL using Irony - Part 2
Updated: 9 Jul 2009
A WinForms sample application for the Domain Specific Language created with Irony.
C#3.0, .NET3.5, Visual-Studio (VS2008), Dev, WinForm
 
Polanek 5.00
Make Site Compatible to IE6, IE7 and IE8
Updated: 5 Jan 2012
How to make a site compatible to IE6, IE7 and IE8
HTML
 
neerajgeit 5.00
Advanced customization of WebBrowser Control in Dialog based app.
Updated: 19 Aug 2003
Shows how to customize the Microsoft WebBrowser control in a dialog based app to allow custom context menus, message boxes, windows, modal dialogs and C++ function calls from JavaScript to your application using window.external.
VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Greg Ellis 4.97
Image and Location Search(aroo) - Unedited
Updated: 11 Jun 2008
Index your website (including images and geographic data), search and display results in Google Earth.
C# (C#2.0, C#3.0), Javascript, .NET (.NET2.0, .NET3.0, .NET3.5), ASP.NET, Ajax, Dev
 
craigd 4.96
Extending Microsoft's Terminal Services Client To Provide Seamless Windows
Updated: 14 Apr 2005
An article that describes a possible approach to extending Microsoft's Terminal Services/Remote Desktop Client to use seamless windows.
VC7, VC7.1, VC8.0, Win2K, WinXP, Win2003, MFC, Dev
 
Martin Wickett 4.95
More on using IP Helper API’s
Updated: 4 Mar 2004
A brief discussion on how to use a few of the functions in the IP Helper suite
VC6, Win2K, MFC, Dev
 
DavidCrow 4.95
CSMTPConnection v1.36
Updated: 3 Mar 2000
An MFC class to encapsulate the SMTP protocol.
VC6, MFC, Dev
 
PJ Naughter 4.94
Using Internet Explorer to download files for you
Updated: 27 Dec 1999
This article presents two methods of using the URLDownloadToFile function in IE3+ to download files.
VC6, Win2K, Visual-Studio, MFC, Dev
 
Michael Dunn 4.94
XWSAError - a DLL for Winsock error lookup
Updated: 6 Jan 2005
Add Winsock error lookup to your C++ or VB app with this DLL.
VB6, VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Hans Dietrich 4.94
CWebUpdate 1.0 - An MFC Update class
Updated: 25 Jun 2005
An easy updating method with a small foot print.
VC6, Win2K, WinXP, MFC, Dev
 
.rich.w 4.94
Remote shell daemon (Rshd)
Updated: 7 Oct 2003
Example to shutdown all computers on the LAN automatically.
VC6, Win2K, WinXP, MFC, Dev
 
Yuantu Huang 4.94
Tool to traverse MIB tree using SNMP
Updated: 11 Dec 2004
This is a simple tool to walk MIB tree. It also demonstrates receiving traps along with client side SNMP requests.
VC6, Win2K, MFC, Dev
 
Ramanan.T 4.94
IP Announce by Email
Updated: 26 Apr 2003
Sends local computer's network information to a remote computer via email.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, Dev
 
Puffel 4.94
CAsyncSocketEx - Replacement for CAsyncSocket with proxy and SSL support
Updated: 5 Apr 2003
CAsyncSocketEx is an MFC-less replacement for CAsyncSocket which does also offer a flexible layer system. With the layer class CAsyncProxySocketLayer, you can connect through proxy servers.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Tim Kosse 4.93
Commands Transfer Protocol (CTP) - A New Networking Protocol for Distributed or Parallel Computations
Updated: 2 Feb 2005
In this article, an improved version of a new networking protocol for distributed or parallel computations is presented. In common, it is suitable just for fast, reliable and featureful interchange of small messages. The protocol's implementation and demo project are provided.
VC6, Win2K, WinXP, Win2003, MFC, STL, Dev
 
dum 4.93
Syslog daemon for Windows Eventlog
Updated: 22 Apr 2007
Syslogd is an installable Windows service which receives and translates syslog messages to Windows Eventlog logs
C#2.0, .NET2.0, WinXP, VS2005, Dev
 
Alphons van der Heijden 4.93
Ripping Data on the Web
Updated: 5 Mar 2003
How to recover and repackage information on the World Wide Web.
C#, Windows, .NET1.0, Dev
 
Mark Mullin 4.93
.NET POP3 MIME Client
Updated: 8 Feb 2008
This article provides an implementation of a POP3 MIME client using .NET 2.0 and C#.
C#2.0, C#3.0, Windows, .NET2.0, .NET3.0, VS2005, Dev
 
Wil Peck 4.92
A Multicast Wrapper Class
Updated: 3 Dec 1999
MFC, Dev
 
Adeel Jamil Siddiqui 4.91
How to install SNMP extension agent DLL
Updated: 11 Dec 2004
This tutorial is all about installing the developed extension agent DLL.
VC6, Win2K, MFC, Dev
 
Ramanan.T 4.91
Raw Ethernet Packet Sending
Updated: 24 Oct 2003
This article explains how to send a raw Ethernet packet using C# and a NDIS Protocol Driver.
C, C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
miahrugger 4.91
Anatomy of a relevant search engine (part 1) - Unedited
Updated: 4 Jun 2009
Information retrieval, semantic search relevance and ranking. About anatomy of a search engine. The simplest search engine source code.
C#, Dev
 
Adrian Pirvu 4.90
RECEME - Remote Command Execution through eMail Exchange
Updated: 25 Sep 2010
A service concept is implemented here for seamless and connectionless computation from anywhere to anywhere.
C#, .NET2.0, .NET3.0, Dev, Application, Patterns
 
arnab_pal 4.90
The Bip Buffer - The Circular Buffer with a Twist
Updated: 9 May 2003
A bi-partite circular buffer for high performance buffering, where it comes from, and why you'd want to use it.
VC6, VC7, Win2K, WinXP, PocketPC-2002, Visual-Studio, MFC, Dev
 
Simon Cooke 4.89
SNTP Client in C#
Updated: 27 Aug 2001
Implementation of the Simple Network Time Protocol (RFC 2030) in C#
C#, VC7, Windows, .NET1.0, Dev
 
Valer BOCAN 4.89
Wake On LAN (WOL)
Updated: 27 Jul 2007
This article will describe steps required to power on remote machines in a local area network.
VC6, VC7, Win2K, WinXP, Win2003, MFC, Dev
 
Hamed Mosavi 4.89
Tracert Component for .NET Framework 2.0
Updated: 25 Jun 2006
This article implements a tracert component based on the Ping class available in .NET Framework 2.0.
C#, VC8.0, .NET2.0, Win2K, WinXP, Visual-Studio, Dev
 
Rama Krishna Vavilala 4.89
WebResourceProvider
Updated: 23 Mar 2007
A framework to allow public web services to be used as objects in your application.
VC8.0, Win2K, WinXP, Vista, MFC, VS2005, Dev
 
Ravi Bhavnani 4.89
fastJSON - Unedited
Updated: 26 Nov 2011
Smallest, fastest polymorphic JSON serializer (with Silverlight4 support)
C#, .NET
 
Mehdi Gholam 4.89
Exploring GoogleGears Wi-Fi Geo Locator Secrets
Updated: 14 Apr 2010
This is a C# application that uses the Google Location service to retrieve location information using Wi-Fi towers.
C#, .NET, WinXP, Vista, Win7, Architect, Dev
 
Mohammad Said Hefny 4.89
A set of Network Management Classes
Updated: 21 Jan 2002
A set of classes that make it easy to work with Network Management.
VC6, VC7, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Carlos Antollini 4.89
CSPServer, State-based Protocol Server Class
Updated: 11 Mar 2003
Class framework for creating client/server protocol servers
VC6, VC7, Win2K, WinXP, MFC, Dev
 
hector santos 4.88
DataLink Simulator
Updated: 7 Feb 2010
A C# simulation for DataLink layer using OpenGl
C# (C#3.0), .NET (.NET3.5), OpenGL
 
Omar Gamil 4.88
Capture an HTML document as an image
Updated: 19 May 2004
Capturing HTML documents as images
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
 
Rob Manderson, Jubjub 4.88
Using IHTMLEditDesigner
Updated: 24 Apr 2004
Using IHTMLEditDesigner to modify IE's editing behaviour
VC7, VC7.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
 
Rob Manderson 4.88
A class to download files from the net
Updated: 16 Apr 2002
A simple class to ease the task of downloading files from the net
VC6, VC7, MFC, Dev
 
Chris Maunder 4.88
Open a URL in a new window
Updated: 10 Jul 2003
An article showing how to launch a URL in a new browser window
VC6, VC7, VC7.1, VC8.0, Win2K, WinXP, Win2003, Visual-Studio, MFC, ATL, WTL, Dev
 
Rob Caldecott 4.88
Simple SIP (VOIP) based phone in C#
Updated: 21 Dec 2010
A C# based simple SIP (VOIP) call-out phone.
C#, .NET, Phone
 
Ivar Lumi 4.87
CAsyncSslSocketLayer - SSL layer class for CAsyncSocketEx
Updated: 1 Jun 2003
This class is an SSL layer for CAsyncSocketEx using OpenSSL.
VC6, VC7, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Tim Kosse 4.87
Using UPnP for Programmatic Port Forwardings and NAT Traversal
Updated: 14 Mar 2006
Universal Plug-n-Play lets your program create and edit port mappings in your router over the network.
VC6, Win2K, WinXP, MFC, Dev
 
Mike O'Neill 4.87
POP3 Server
Updated: 23 Sep 2007
Shows how to implement a POP3 server
VC8.0, Windows, Visual-Studio, MFC, Architect, Dev, Design
 
Maruf Maniruzzaman 4.86
Fake (or Anonymous) NetSend for Windows NT/2000/XP
Updated: 17 Jun 2003
The Fake NetSend is a little utility that can be used to send anonymous (or fake) messages through your Windows Network.
VC6, Win2K, WinXP, MFC, Dev
 
Caio Proiete 4.86
Remote Processes and Machine control of Windows NT based systems (2000/XP)
Updated: 31 Aug 2003
Control certain aspects of machines sitting remotely, without having to install and trigger an application on the remote machine.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, Dev
 
Prateek Kaul 4.85
The "New ipconfig" and the IP Helper API
Updated: 5 May 2003
This article details a class that allows the manipulation of network adapters and uses that class to build a graphical ipconfig utility for anyone using Windows2000 or Windows XP. In order to accomplish this, the IP helper API is used.
VC6, VC7, VC7.1, VC8.0, Win2K, WinXP, MFC, ATL, STL, Dev
 
Joseph Dempsey 4.85
NAT Traversal with UPnP in C#
Updated: 14 Jan 2009
NAT traversal with UPnP in C#, without any libraries.
C# (C#1.0, C#2.0, C#3.0), .NET (.NET2.0), Dev
 
harold aptroot 4.85
How to write a simple but effective TCP/IP port scanner for Win32
Updated: 27 Oct 2001
An article on how to write a TCP/IP port scanner with a GUI, based on the MFC's property sheet paradigm
VC6, Win2K, Visual-Studio, MFC, Dev
 
Luca Piergentili 4.85
IP Multicasting - Using I/O completion ports with UDP
Updated: 24 Feb 2002
How to use I/O completion ports with UDP? ( With an IP multicast example).
VC6, VC7, Win2K, WinXP, MFC, Dev
 
shanthu 4.84
SSL : Convert your Plain Sockets to SSL Sockets in an Easy Way
Updated: 14 Mar 2008
A simple class that allows you to convert an existing SOCKET handle to SSL under Windows
C++, Win32, Dev
 
Michael Chourdakis 4.83
Examples to create your Conferencing System in .NET, C# VOIP & Video Conferencing Systems using H.323 and TAPI 3
Updated: 31 Jan 2007
Four examples to create your Conferencing System in .NET using H.323 and TAPI 3
C#, Windows, .NET, Visual-Studio, Dev
 
Fadi Abdelqader 4.82
W3Mfc v1.11
Updated: 7 Apr 2000
A collection of freeware MFC classes to implement a simple Web server.
VC6, MFC, Dev
 
PJ Naughter 4.82
Simple, Robust and Expandable Winsock Server for Multiple Clients with Easy to Add New Services
Updated: 4 Sep 2006
How to build a simple, robust and easily expandable server for multiple clients
XML, VC8.0, Win2K, WinXP, Win2003, MFC, ATL, STL, VS2005, Architect, Dev
 
Vadim Motorine 4.81
Getting active TCP/UDP connections on a box
Updated: 17 Jun 2003
This article shows an implementation of the main TCP/UDP functions of the IP Helper API that is used to get info about active connections including the process attached to a connection
C++, C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, MFC, Dev
 
Axel Charpentier 4.81
Implementing snap-to-grid in an MSHTML based application
Updated: 24 Apr 2004
How to implement snap-to-grid and draw the grid in MSHTML based applications.
VC7.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
 
Rob Manderson 4.80
Working with MSMQ Triggers
Updated: 25 Mar 2003
This article gives a brief introduction to MSMQ Triggers and how it can be used in your messaging applications.
C++, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Manoj G 4.80
A UDP-based Reliable Data Transfer Library
Updated: 21 Mar 2006
Introduces an open source UDP-based data transfer library.
VC7, VC7.1, VC8.0, .NET1.0, Win2K, WinXP, Win2003, MFC, Architect, Dev
 
lilyco 4.80
Using a Mailslot to read/write data over a network
Updated: 8 Mar 2004
Shows how to use a Mailslot to easily read/write data between two or more networked Windows computers.
C++, C, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
Jeff Glatt 4.79
Getting the Physical (MAC) address of a Network Interface Card and finding out if it is the primary adapter on a multi-homed system
Updated: 14 Mar 2006
This article describes how to obtain a Network Interface Card's (NIC) Physical or Ethernet (MAC) address. It also shows how to identify if a network adapter is the primary adapter on a multi-homed system. If not, it shows how to find and get the primary adapter's IP and MAC addresses.
VC6, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Rafique Sheikh 4.79
NDIS MONITOR .NET 32-bit v1.00
Updated: 27 Apr 2007
NDIS Monitor allows to catch and log the exchange of packet data between NDIS miniport drivers and network protocol modules that occurs in kernel space.
C++, C#1.0, Windows, .NET, Visual-Studio, Dev, WinForm
 
vitoplantamura 4.79
IP list, Check an IP number against a list in C#
Updated: 8 Jul 2002
A class for holding a list of IP numbers, which you can check new IP numbers against.
C#, Windows, .NET1.0, Dev
 
Bo Norgaard 4.79
GeoLocation for your Skype
Updated: 30 Mar 2007
The article describes the retrieval of one's public IP address and geo location and possibly assigning it to one's Skype profile.
C#1.0, C#2.0, Windows, .NET1.0, .NET1.1, .NET2.0, .NET3.0, VS.NET2003, VS2005, Dev
 
AdamNajmanowicz 4.77
How to develop a SNMP extension agent DLL
Updated: 11 Dec 2004
This covers essentials about SNMP and a short tutorial on developing a very simple SNMP extension agent.
VC6, Win2K, MFC, Dev
 
Ramanan.T 4.77
CPing v1.22
Updated: 3 Mar 2000
An MFC class to encapsulate the Ping utility.
VC6, MFC, Dev
 
PJ Naughter 4.76
Winsock Revamped
Updated: 24 Jun 2008
A fairly simple to use Winsock component, allowing simple networked applications. Built modeling the VB6 component of the same name, with enhancements.
VB (VB7.x, VB8.0, VB9.0), .NET (.NET1.1, .NET2.0, .NET3.5), Visual-Studio (VS.NET2003, VS2005, VS2008), Dev
 
Chris Kolkman 4.76
Telnet Console Application
Updated: 31 Jul 2001
A console based telnet application.
VC6, Win2K, MFC, Dev
 
Ibrar Ahmad 4.75
CCmc v1.0 - A CMC Implementation
Updated: 3 Mar 2000
An MFC class to encapsulate sending mail using CMC.
VC6, MFC, Dev
 
PJ Naughter 4.75
CHttpDownloadDlg v1.03
Updated: 3 Mar 2000
A dialog implementation that performs HTTP downloads.
VC6, MFC, Dev
 
PJ Naughter 4.75
CFTPClient
Updated: 21 Jun 2004
An MFC Extension DLL that implements some handy FTP functions
VC6, Windows, MFC, Dev
 
Mustafa Demirhan 4.75
Applications Traffic Watcher
Updated: 17 Jul 2006
Applications Traffic Watcher is a small utility to get information about the amount of data transferred to and from the Internet.
Windows, Visual-Studio, Dev
 
Warlib 4.74
Voice chat using a client-server architecture
Updated: 2 Aug 2003
Voice chat networking
VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Nagareshwar 4.74
How to use the managed RTP API classes in .NET to create your multicasting systems
Updated: 2 May 2008
Create an RTP multicasting presenter (with motion detection).
C#1.0, C#2.0, Windows, .NET1.1, .NET2.0, ASP.NET, WebForms, VS.NET2003, VS2005, Dev, WinForm
 
Fadi Abdelqader 4.73
Simple class to work with the NetShare*() APIs
Updated: 19 Apr 2004
Simple class to work with the NetShare*() APIs.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
 
John Gonzalez 4.73
Remote Desktop Viewer Lite
Updated: 11 Oct 2005
The Remote Desktop Viewer Lite is a system to remotely monitor desktop activity. This system is designed to view a remote desktop's activity.
VC7, VC7.1, Windows, MFC, VS.NET2003, Dev
 
Andy Bantly 4.72
Display an Internet Connection status icon using .NET Framework 2.0
Updated: 20 Jul 2005
This article explains how to use a BackgroundWorker and a StatusStrip to display an Internet connection status icon on a StatusStrip using .NET Framework 2.0.
C#, .NET2.0, Win2K, WinXP, Win2003, Vista, TabletPC, VS2005, Dev, WinForm
 
Juan Roman 4.72
Finding IP Address Information
Updated: 14 Dec 2003
An article on finding IP address information
C#, .NET1.0, .NET1.1, Win2K, WinXP, Visual-Studio, Dev
 
Coskun Oba 4.72
STL WebServer
Updated: 8 May 2000
A set of classes written in STL that implement a web server
VC6, MFC, STL, Dev
 
David Hubbard 4.71
A simple JSON Editor
Updated: 14 Nov 2011
Builds a parse tree from a file based JSON string and allows you to edit as a tree or a string
C#, Windows (WinXP), .NET3.0, Architect, Dev, JSON
 
klinkenbecker 4.71
A simple UDP time server and client for beginners
Updated: 23 Sep 2005
How to implement a simple UDP time server and client using WinSock.
C, VC6, VC7, WinXP, Visual-Studio, MFC, Dev
 
gomorgan89 4.71
Using the Background Intelligent Transfer Service (BITS)
Updated: 3 Jun 2008
Using the BITS system service
VC8.0, Win2K, WinXP, Win2003, Vista, MFC, ATL, WTL, VS2005, Dev
 
caio 4.70
Connect to a UNC Path with Credentials
Updated: 16 Oct 2009
Use NetApi32 to establish and break connections to UNC paths using specified user credentials.
C#, .NET, Win32, Dev
 
hayes.adrian 4.69
An Asynchronous Pluggable Protocol Handler for data: URLs
Updated: 28 Jan 2006
This article describes an asynchronous pluggable protocol implementation to support the data: protocol, as described in RFC 2397, in Internet Explorer.
VC8.0, Windows, Visual-Studio, MFC, ATL, Dev
 
Rama Krishna Vavilala 4.69
MfcCDDB v1.15
Updated: 3 Mar 2000
A freeware MFC class to support access to CDDB servers.
VC6, MFC, Dev
 
PJ Naughter 4.67
Network Renju Game
Updated: 1 Jul 2003
This is a Renju game with network support.
VC6, Win2K, MFC, Dev
 
Mingming Lu 4.67
UT2003 Gameserver Status
Updated: 16 Oct 2002
Getting the current Status of a UT2003 Gameserver via UDP Queries
C#, Windows, .NET1.0, Dev
 
Rüpel 4.66
Enumeration of Computer Names and their IP address
Updated: 28 Jun 2002
Retrieves the Computer names in a network and their corresponding IP addresses
VC6, Win2K, Visual-Studio, MFC, Dev
 
VGirish 4.65
Pause & Resume at Protocol level. (You can implement it in any language)
Updated: 9 Oct 2002
Ever wondered how some of the popular download tools have capability to break download in middle, disconnect from net, later reconnect and restart file transfer from exact point they left earlier.
VC6, VC7, Win2K, MFC, STL, Dev
 
Narendra Chandel 4.64
Access Internet Explorer's History in MFC
Updated: 14 Aug 2004
Getting the History from Internet Explorer in MFC.
VC6, Windows, MFC, ATL, Dev
 
Akash Kava 4.63
Binary Data Marshaling
Updated: 13 Jan 2005
Fast binary data marshaling using simple CMarshal class.
VC7.1, Windows, MFC, VS.NET2003, Dev
 
Hatem Mostafa 4.63
Download a File Using URLDownloadToCacheFile
Updated: 25 Oct 2002
A sample to demonstrate how to use URLDownloadToCacheFile and IBindStatusCallback.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Chen Su 4.62
TAPI 3.0 Application development using C#.NET
Updated: 15 Jul 2005
This is a sample telephony application which will help you to develop applications using TAPI 3.0 API and C#.NET. Here basic knowledge about TAPI is assumed.
C#, .NET1.0, Win2K, WinXP, Dev
 
devang_bison 4.62
Remote processes and machine control of Windows NT based systems (2000/XP)
Updated: 26 Aug 2003
Trigger/monitor/kill processes and shutdown/reboot machines remotely.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, Dev
 
Prateek Kaul 4.61
Failover Socket Client
Updated: 20 Aug 2007
A socket client which fails over to a different host when the connection drops
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Bart Meirens 4.61
Searcharoo 2007 (Medium Trust and Office 2007 indexing) - Unedited
Updated: 28 Apr 2007
Remove Binary Serialization to solve Medium Trust problem; index OpenXML document formats in ASP.NET/C# free search engine
C#2.0, Windows, Office, .NET2.0, ASP.NET, WebForms, VS2005, Dev
 
craigd 4.59
NT Telnet server and client
Updated: 22 Nov 1999
CTelnetView is a class derived from CView that implements a telnet client session with history.
VC6, MFC, Dev
 
Randy More 4.57
CSslSocket - SSL/TLS enabled CSocket
Updated: 24 Nov 2001
CSocket derived class with SSL/TLS extension
VC6, Win2K, MFC, Dev
 
Martin Ziacek 4.57
CNamedPipe v1.0
Updated: 3 Mar 2000
A Freeware MFC class to encapsulate Named Pipes.
VC6, MFC, Dev
 
PJ Naughter 4.56
Retrieve the number of bytes sent/received (and other useful infos) for any network adapter
Updated: 29 Oct 2003
Using Iphlpapi.dll to retrieve network adapters info
VC6, Win2K, MFC, Dev
 
Massimiliano Conte 4.56
Single Server, Multiple Clients - Win32/MFC classes for client/server communication with Unicode support - Unedited
Updated: 26 Jan 2005
An implementation of Liyang Yu's classes for client/server communication for both Win32 and MFC, with Unicode and ANSI support.
VC6, Win2K, WinXP, MFC, Dev
 
Hans Dietrich 4.54
ASP.NET C# Search Engine (Highlighting, JSON, jQuery & Silverlight)
Updated: 9 Mar 2009
More professional ASP.NET C# search with proper document summary, query highlighting and RIA display options
C# (C#2.0), Javascript, .NET (.NET2.0), ASP.NET, WebForms, Ajax, Silverlight, Dev
 
craigd 4.54
Create WAP Push SMS Messages
Updated: 25 Jul 2004
How to generate a WAP Push SMS message for sending content to mobile phones.
C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Adam Bird 4.54
WhoIS Class for MFC
Updated: 29 Feb 2000
A simple MFC class for WhoIS processing for the Internet.
VC6, MFC, Dev
 
Ed Dixon 4.54
Spoofing the ARP Table of Remote Computers on a LAN
Updated: 30 Mar 2004
This article explains what ARP Spoof is and how to use WinArpSpoof based on CBuildPacket.
VC7, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
Gorden 4.52
How to use serial port to communicate between two computers
Updated: 30 Sep 2005
Using the serial port and cable to send a file from one computer to another.
VC6, WinXP, MFC, Dev
 
gomorgan89 4.50
Simple Upload File to Rapidshare Account Method using C#
Updated: 2 Apr 2009
By using this C# (.NET 2.0) method, you can easily upload your files to Rapidshare.com account
C#, .NET (.NET2.0, Mono, DotGNU, .NET3.0, .NET3.5), ASP.NET, WebForms, WinForm
 
Ghasem Heyrani Nobari 4.50
Understanding Amazon Web Services - Unedited
Updated: 23 Dec 2011
This article is to show all the cloud products in Amazon web service family to let developers have a big picture of Amazon cloud computing solution.
Cloud, Dev, Amazon
 
Henry He 4.50
Set Keep-Alive Values
Updated: 12 Oct 2010
The SetKeepAliveValues method enables or disables the per-connection setting of the TCP keep-alive option which specifies the TCP keep-alive timeout and interval
C# (C#1.0, C#2.0, C#3.0, C#4.0), .NET (.NET1.0, .NET1.1, .NET2.0, .NET3.0, .NET3.5), Network, TCP/IP, .NET4
 
Tarek Najem 4.50
How to use IDirectoryObject
Updated: 13 Jun 2002
How to use the IDirectoryObject interface instead of using the IADs(IDispatch) objects
VC6, VC7, Win2K, WinXP, Visual-Studio, MFC, ATL, Dev
 
Wictor Wilén 4.50
Detecting the IE Refresh button using IWebBrowser2 and DWebBrowserEvents2 events.
Updated: 14 Oct 2004
An article explaining how to capture a click on Internet Exporer's Refresh button, using DWebBrowserEvents2.
C++/CLI, VC6, .NET, Win2K, WinXP, MFC, Dev
 
SteveFox 4.50
ISAPI Filter for Logging using MFC
Updated: 9 Aug 2007
Implementing ISAPI Filter in IIS 5.x/6.x for logging HTTP/HTTPS request & response data
C++, Windows, Visual-Studio, MFC, Dev
 
Paramesh Gunasekaran 4.50
How to get a list of users from a server
Updated: 27 Nov 2001
How to get a list of users and their details from a specified server.
VC6, Win2K, MFC, Dev
 
Derek Lakin 4.48
CTraceRoute v1.0
Updated: 7 Apr 2000
A freeware MFC class to implement traceroute functionality.
VC6, MFC, Dev
 
PJ Naughter 4.48
WinBattle
Updated: 22 Dec 2003
A multi-player game tutorial and reusable framework
VC6, Win2K, WinXP, MFC, Dev
 
Ken Reed 4.46
Yahoo! Weather Viewer
Updated: 31 Aug 2007
An article on retrieving the weather data using Yahoo! Weather RSS feed
VC6, Windows, Visual-Studio, MFC, Dev
 
darkoman 4.45
How to Parse the Bookmarks File of Mozilla into a Datatable
Updated: 14 Sep 2007
An article describing how to parse a Mozilla bookmarks file into a datatable
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Pierpaolo Romanelli 4.43
XIPAddressCtrl - an enhanced IP address control based on CIPAddressCtrl - Unedited
Updated: 5 Jan 2005
XIPAddressCtrl adds string handling and profile read/write functions to CIPAddressCtrl.
VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Hans Dietrich 4.43
Applications Traffic Watcher Lite
Updated: 14 Jul 2006
Applications Traffic Watcher is a small utility to get costs of the internet traffic consumed by different applications
Windows, Visual-Studio, Dev
 
Warlib 4.41
A brief discussion on how to use three of the network management functions
Updated: 2 May 2004
A brief discussion on how to use NetShareEnum, NetConnectionEnum, and NetFileEnum
VC6, Win2K, MFC, Dev
 
DavidCrow 4.41
An Introduction to Mutual SSL Authentication
Updated: 8 Feb 2012
Provides a brief introduction to mutual SSL authentication and its handshake messages
C#, Windows, IIS (IIS7)
 
Elvin Cheng 4.40
Sending Anonymous net send messages in WTL
Updated: 26 Jun 2003
This article explains how you can can send anonymous net send messages to any host
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, WTL, Dev
 
abc876 4.40
IOCPNet - Ultimate IOCP
Updated: 17 Jan 2006
Easy to use, high performance, large data transfer by using IO Completion Port.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
 
sleepyrea (new) 4.39
EnetstatX
Updated: 9 Jun 2004
Enhance netstat and packet filtering.
VC6, WinXP, MFC, STL, Dev
 
y0da 4.39
Classes for Writing HTTP Clients in C++
Updated: 3 Jan 2009
Wrapper classes for Win32 HTTP calls, URL encoding, etc.
VC6, MFC, Dev
 
AnOldGreenHorn 4.36
Terminal Control Library (C# VT100/ANSI/XTERM SSH Telnet)
Updated: 2 Jan 2009
This is based on Poderosa Project http://sourceforge.net/projects/poderosa/
C#, VB, .NET2.0, WinXP, Vista, VS2005, Dev, WinForm
 
Columbus-MCSD 4.34
Connecting to MSN messenger with the MSNP9 protocol
Updated: 4 Nov 2003
This article explains how you can connect to MSN using the MSNP9 protocol. It also refers to another article I wrote.
C#, Windows, .NET1.0, Visual-Studio, Dev
 
Paul Wijntjes (dominion99) 4.34
CSplitURL - split a URL into component parts
Updated: 10 Nov 2002
Wrapper class for the WinInet InternetCrackUrl function
VC6, VC7, Win2K, WinXP, MFC, WTL, Dev
 
Rob Caldecott 4.34
CPop3Connection v1.19
Updated: 3 Mar 2000
An MFC class to encapsulate the POP3 protocol
VC6, MFC, Dev
 
PJ Naughter 4.33
Advertise your Applications Webinterface on the Local lan using UPnP
Updated: 3 Feb 2011
Make application more user friendly by providing easier access to the webinterface
VB, Windows, Dev
 
Tieske8 4.33
WebResourceProvider goes .NET
Updated: 17 Feb 2008
A a simple yet powerful framework for retrieving useful information from public sources on the web.
C#, Windows, .NET1.1, .NET2.0, VS.NET2003, VS2005, Dev
 
Ravi Bhavnani 4.31
CFTPTransferDlg v1.0 - The FTP Protocol
Updated: 3 Mar 2000
A dialog implementation that performs a FTP file transfer.
VC6, MFC, Dev
 
PJ Naughter 4.31
Retrieve a Web Pages' Shortcut Icon
Updated: 17 Oct 2008
This article will show you a couple of ways to extract a web pages' icon
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Johan "BJ" Vorster 4.31
CommScript
Updated: 3 Apr 2010
A simple scripting engine for automating communication (e.g. Telnet)
C#, .NET (.NET3.5), Dev
 
PIEBALDconsult 4.30
CServerMailslot & CClientMailslot
Updated: 3 Mar 2000
Freeware MFC wrapper classes for Win32 Mailslots.
VC6, MFC, Dev
 
PJ Naughter 4.30
xLANInfo
Updated: 25 Nov 2003
A useful tool for enumerating LAN information such as IP,MAC,Shared resources.
VC6, Win2K, WinXP, Win2003, MFC, Dev
 
YangTze 4.29
CIMDBSearch Class
Updated: 6 Jun 2008
An article on a simple C++ IMDB search class
C++, Windows, Dev
 
darkoman 4.29
Serial Communication in .NET 2.0
Updated: 25 Sep 2006
Describes the use of a timer instead of using handshaking protocols.
C#2.0, Windows, .NET2.0, VS2005, Dev
 
mikepc 4.28
Beginners Intro to HTTP calls
Updated: 26 Nov 2002
A beginers explaination to the segements of a HTTP call.
VC6, Win2K, WinXP, MFC, Dev
 
Michael A. Barnhart 4.27
ShareIT
Updated: 31 Oct 2001
Demonstrates usage of NetShare APIs.
VC6, Win2K, MFC, Dev
 
Farooque Khan 4.27
Ping for Windows
Updated: 15 Feb 2001
A simple Windows based ping program
VC6, Win2K, MFC, Dev
 
Norm .net 4.25
Blogging to LiveJournal.com Using C# Code
Updated: 20 Jan 2005
This article shows you how to blog programmatically to LiveJournal.com using C#.
C#, .NET1.1, .NET2.0, Win2K, WinXP, Win2003, VS.NET2003, VS2005, Dev
 
Kelvin Tsang 4.23
Change Internet Proxy settings
Updated: 11 Feb 2003
Shows code snippets to programmatically change IE proxy settings
VC6, Windows, Visual-Studio, MFC, Dev
 
onega 4.19
Serializing classes across a network socket (TCP/IP)
Updated: 7 Mar 2004
This article gives example and code for sending a class across a network connection using TCP/IP and the CBlockingSocket class.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
mellertson 4.19
Using GetIpInterfaceEntry with P/Invoke for getting an interface metric
Updated: 22 Aug 2008
Using GetIpInterfaceEntry to get an interface metric, and then calculating dwForwardMetric1 for creating routes in Vista/Windows Server 2008.
C#, Windows (Vista), Visual-Studio (VS2008), Dev
 
Gautham Jayaraman 4.18
Get all IP numbers of your machine and how to pass through an authenticating proxy
Updated: 30 Sep 2002
An article on how to find all IP numbers of your machine. Will also show you how to pass through an authenticating proxy server.
VC6, Win2K, WinXP, MFC, Dev
 
Nico Cuppen 4.17
Using http://www.yourname.com instead of http://localhost/
Updated: 14 Oct 2001
Setting up IIS and PWS so that it recognises full domain names as belonging to your machine.
C++, Windows, IIS, Visual-Studio, MFC, Dev
 
Sameers.ME 4.15
Java Style Socket Programming in C++
Updated: 15 Nov 2007
An article on socket programming in raw C++ on the Windows platform
VC6, Windows, Java SE, MFC, Dev
 
AnOldGreenHorn 4.13
NetFM - Internet Broadcasting
Updated: 10 May 2004
Basic framework for implementing Internet Broadcasting using UDP & Multiple Unicasting
VC7, VC7.1, Windows, Visual-Studio, MFC, Dev
 
shoonya 4.13
Fast Ring Buffer for Incoming Winsock Textual Data
Updated: 14 May 2002
A fast ring buffer designed for receiving texual data in a Winsock server application.
VC6, .NET1.0, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Larry Antram 4.11
Creating Client/Server Application using Winsock - Unedited
Updated: 4 Nov 2001
This article shows you how to use Winsock in a client server environment, we will create two separate applications, one of which will be a server and the other will be a client.
VB6, C++, Win2K, ASP, MFC, Dev
 
S.S. Ahmed 4.10
S.I.V. : Simple program version checking
Updated: 19 May 2004
Simplicity Is Virtue: How to check for a new version of your app in a simple manner (over the internet).
VC6, Windows, MFC, Dev
 
T1TAN 4.09
Retrieving the HTML source code
Updated: 30 Nov 2004
An article on how to retrieve the full source code of a web page.
VC6, Windows, MFC, Dev
 
Geno Carman 4.09
CAsyncProxySocket - CAsyncSocket derived class to connect through proxies
Updated: 18 Dec 2001
This class allows you to establish connections through SOCKS4/5 and HTTP 1.1 proxies.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Tim Kosse 4.09
Simple syslog client
Updated: 3 Sep 2003
A BSD-compatible syslog client
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
Gisle Vanem 4.08
Basics of uploading files to and downloading from an ftp server
Updated: 30 Jul 2002
This tutorial helps you to upload and download files from an FTP server.
VC6, VC7, Win2K, WinXP, Visual-Studio, MFC, Dev
 
VGirish 4.06
Winsock2 Network Events
Updated: 1 May 2001
Tutorial on the use of Network Events under Winsock2
VC6, Win2K, Visual-Studio, MFC, Dev
 
Joseph Dempsey 4.05
IPEnum v1.01 - IP Address Enumeration
Updated: 3 Mar 2000
An MFC class to allow enumeration of IP addresses.
VC6, MFC, Dev
 
PJ Naughter 4.00
Multithreaded TCP/IP Telnet Server - Chess Game Example
Updated: 22 Jan 2001
Chess Game Example
VC6, MFC, Dev
 
Lee Patterson 4.00
Entropy based Multipath Routing for Mobile Adhoc network in Omnet++ - Unedited
Updated: 9 Oct 2011
This is a simulation model demonstrating the working of Multipath MANET routing with Entropy as cost Metric
C++
 
integrated ideas 4.00
Manage WiFi with Native API WIFI on Windows XP SP2
Updated: 16 Apr 2010
This article will demonstrate the ability to establish and operate a WiFi connection from a C# program using the Wireless LAN API on a Windows XP Embedded SP2 \ Windows XP Pro SP2.
C#, .NET (.NET1.1)
 
Alo1980 4.00
Introduction to AT commands and its uses
Updated: 4 Jun 2010
In this article, I will give you a brief introduction of AT commands and its uses.
All-Topics, Dev
 
Syeda Anila Nusrat 4.00
WSSE Authentication for WebRequest/Response
Updated: 25 Jun 2007
An implementation of WSSE authentication method for AtomAPI using IAuthenticationModule interface
C# (C#2.0), VB (VB8.0), Windows, .NET (.NET2.0), VS2005, Dev
 
rei_codeproject 4.00
WWW (HTTP/HTTPS/FTP) Client using WININET
Updated: 3 May 2004
Synchronized/asynchronized WWW client: HTTP/HTTPS GET, POST, POST multiparts/form-data supported. FTP GET FILE, PUT FILE supported too.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, STL, Dev
 
Yongseon Heo 3.98
Socket Programming with MFC (Part 1)
Updated: 9 Nov 2005
An article on Socket Programming with MFC
VC6, Windows, MFC, Dev
 
Jobin Wilson 3.98
IP Hole Finder and Port Scanner
Updated: 12 Mar 2001
Security
VC6, Win2K, MFC, Dev
 
Alex Douma 3.93
Traceroute - Using RAW Socket & UDP
Updated: 21 May 2007
Traceroute using RAW Socket and UDP. Raw UDP packets with increasing TTL values are targetted at strange port numbers. The resulting ICMP responses from intermediate hosts contain host identity in the form of its IP address.
VC6, Win2K, MFC, Architect, Dev
 
Vinod Vijayan 3.90
Timers & Sockets
Updated: 8 Apr 2005
Control of timers, timings, offered services, and used services.
VB6, VC6, Win2K, WinXP, MFC, Dev
 
Lymington 3.88
Change TCP/IP network settings remotely.
Updated: 8 May 2000
Do you want to change a Host name, DHCP or static IP settings?
Embedded, Visual-Studio, MFC, Dev
 
Gert Boddaert 3.86
VideoIPPhone
Updated: 12 Mar 2005
VOIP using Microsoft TAPI
C++ (VC7), Win2K, WinXP, MFC, Dev
 
Park NoYoon 3.86
Simple Instant Messaging using MailSlots
Updated: 3 Aug 2004
An article on using Windows MailSlots to create a basic Instant Message Client
VC7, VC7.1, Windows, MFC, Dev
 
telemacher 3.85
HTML5 Canvas Self-drawn Persistent Background
Updated: 5 Jul 2011
How to make an HTML5 canvas draw its own background "layer"
All-Topics, Web, HTML5
 
DLChambers 3.80
Creating a new protocol for Mozilla Firefox in C++
Updated: 18 Feb 2005
New protocol for Firefox.
VC6, WinXP, MFC, Dev
 
anindya_sengupta 3.79
Enhance netstat
Updated: 16 Nov 2003
This article shows an implementation of the main TCP/UDP functions of the IP Helper API that is used to get info about active connections including the process attached to a connection.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, Dev
 
y0da 3.78
basiCommunication: A Fully-Featured Chat Network
Updated: 7 Dec 2006
Supports file sharing, instant messaging, and a virtual chalkboard.
VC6, MFC, Dev
 
AsmCoder8008 3.72
IOCompletion Port Technique and Asynchoronos I/O Operartion
Updated: 28 Jul 2005
The purpose of this article is to explore the IO Completion Port mechanism provided in Windows and compare it with the other mechanisms available to wait for an IO completion.
VC6, Windows, MFC, Dev
 
Dinesh Ahuja 3.71
Generate and add keyword variations using AdWords API - Unedited
Updated: 17 Dec 2009
This article will explain the basics of AdWords platform. It will explain how to add keywords to it. Presented is a demo application which adds different Keyword variations to AdWords account.
C#, Dev
 
JosipK 3.67
CEQD v1.0 - Earthquake Data Downloader
Updated: 3 Mar 2000
A Freeware MFC class to support retrieval of recent Earthquake data from the USGS.
VC6, MFC, Dev
 
PJ Naughter 3.67
VoIP For You - Full duplex 8bit/8KHz VoIP application for Windows98 & DirectX
Updated: 31 Aug 2003
Sending and receiving voice under TCP/IP and Windows 98 & Direct X.
C++/CLI, VC6, .NET, MFC, Dev
 
Georgi Petrov 3.64
CUpgradeApplication - Remotely Upgrade Applications
Updated: 7 Sep 2002
How to remotely upgrade applications from a web server with just two lines of code! Does not use MFC.
VC6, VC7, Win2K, WinXP, Visual-Studio, MFC, Dev
 
voodoopriestess 3.60
.NET TCP Connection Pooling
Updated: 5 Apr 2009
Pooling TCP connections to increase performance.
C#, .NET, Dev
 
Wael Al Wirr 3.57
IP Configuration Information using IP Helper APIs
Updated: 25 Aug 2007
This article shows you how to create an ipconfig like utility that displays detailed network adapter information.
C# (C#2.0), Windows, .NET (.NET2.0), Visual-Studio (VS2005), Dev
 
Arunkumar Viswanathan 3.56
Sonork VB Engine
Updated: 7 Nov 2001
VB engine for the Sonork Instant Messenger
VB6, .NET, Win2K, WinXP, MFC, Dev
 
Migs 3.56
Transparent Cookie Encryption Via HTTP Module
Updated: 5 Jul 2009
A C# HTTP module that encrypts and decrypts cookies transparently to an application
C#1.0, .NET (.NET1.1), ASP.NET, Dev
 
Phil 101 3.55
Loading dynamic XML from the Internet
Updated: 20 Jun 2002
A simple example of loading XML data from an ASP page on an IIS Server.
VC6, Win2K, WinXP, MFC, Dev
 
Tom Welch 3.53
TrafficWatcher
Updated: 15 Nov 2002
A tool to measure network traffic by service (FTP, mail, news, web, UDP etc)
VC7, Win2K, WinXP, MFC, Dev
 
SteveKing 3.52
One Click SSL Certificate Registration using WinHTTP
Updated: 29 Feb 2008
Register self-signed SSL certificates from a remote web browser.
C++ (VC6, VC7, VC7.1, VC8.0), C++/CLI, C, Windows, Win32, Visual-Studio, MFC, Dev, SysAdmin
 
KeithPirkl 3.50
Selective Offline Browser
Updated: 6 Jan 2000
An useful application to download only selected files for offline browsing.
VC6, MFC, Dev
 
Rajiv Ramachandran 3.50
Get Information About the Currently Logged-on Users - Part 2
Updated: 17 Apr 2006
Get information about the currently logged-on users - in remote computer
VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Le Thanh Cong 3.47
CAnonymousPipe - Anonymous Pipe Implementation
Updated: 3 Mar 2000
A Freeware MFC class to encapsulate Anonymous Pipes
VC6, MFC, Dev
 
PJ Naughter 3.45
CFinger v1.01 - The Finger Protocol
Updated: 3 Mar 2000
An MFC class to encapsulate the Finger protocol.
VC6, MFC, Dev
 
PJ Naughter 3.44
POP3 Client Over Firewall
Updated: 21 Jul 2007
A webservice implementation to connect to POP3 servers
C#, XML, Windows, .NET1.1, ASP.NET, ADO.NET, WebForms, VS2005, Architect, Dev, Design, WinForm
 
carlosmsr 3.43
A Simple Speedtest Application
Updated: 18 Oct 2007
In this article, you will learn how to create a simple speedtest app.
C# (C#2.0), .NET, WinXP, VS2005, Dev
 
Kristian Sixhoej 3.42
Internal Details of Sockets
Updated: 4 Feb 2003
How sockets are implemented internally.
VC6, VC7, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Samar Aarkotti 3.41
Creating a global Whois class
Updated: 6 Dec 2003
Lookup a domain name for any tld (top level domain)
C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, Dev
 
yetanotherchris 3.39
A COM component offering Internet download utilities
Updated: 22 Dec 2002
A COM component written in C++ that offers functions for multiple parallel downloads, Internet cache access, URL and path resolving.
VB6, VC6, VC7, VC7.1, VC8.0, Win2K, WinXP, MFC, ATL, Dev
 
Philipos Sakellaropoulos 3.38
GroupTalk - A multicast based group conference application
Updated: 17 Jun 2004
A multicast based group conference application
VC6, WinXP, MFC, Dev
 
Nagareshwar 3.35
PiGeOn mail server executable and client DLL
Updated: 7 Apr 2005
LAN/WAN wide task/process message server and user message function DLL
VB6, VC6, Win2K, WinXP, MFC, Dev
 
Lymington 3.33
A class for getting the RSS feed list of a website
Updated: 14 Aug 2007
A very simple class for listing the RSS feed from a website.
C#2.0, .NET1.1, .NET2.0, WinXP, VS2005, Dev
 
Paw Jershauge 3.33
WinSniff :The packet capturing application for Windows
Updated: 22 Jun 2004
A packet capturing application for Windows.
VC6, Windows, MFC, Dev
 
Nagareshwar 3.33
Network Stream Class
Updated: 6 May 2003
A stream class to prepare data to be sent over the network
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Sendel 3.27
An easy to use class to list Active Directory Users
Updated: 1 Apr 2004
A very simple class which can list all the Active Directory users just by calling a single member function.
VC7, Win2K, WinXP, Win2003, MFC, Dev
 
Muhammad Ahmed 3.27
Downloader Class
Updated: 22 Dec 2009
A simple class that can download files to your PC.
C#, Windows, .NET, Dev
 
Simon Cooksey 3.26
Trace Route using raw sockets
Updated: 28 Jul 2003
This Article Looks at a way to Trace Route by Raw Sockets
VC6, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Babar Qaisrani 3.24
SMTP Server Transport Events - Simple Scripting
Updated: 26 Dec 2002
An article on SMTP Server Events
VBScript, VC6, VC7, Windows, Visual-Studio, MFC, Dev
 
Dan_P 3.23
Multithreaded Non-blocking Socket Server and Client, Based on Synchronized Socket
Updated: 11 Mar 2002
Non-blocking socket class using synchronized socket.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Kevin Hua 3.22
Checking IPX communication and obtaining node addresses
Updated: 28 Dec 1999
How to obtain IPX node addresses of network stations
VC6, MFC, Dev
 
Zoran M. Todorovic 3.21
Cluster Computing
Updated: 20 Sep 2005
Cluster is a term meaning independent computers combined into a unified system through software and networking. Clusters are typically used for High Availability for greater reliability or High Performance Computing to provide greater computational power than a single computer can provide.
C++, Windows, Visual-Studio, MFC, Architect, Dev
 
Lubna Luxmi Chowdhry 3.19
A Network Chat Program using Windows Sockets
Updated: 29 Aug 2000
A program that allows users across a homogeneous network to communicate with each other using the TCP/IP protocol
VC6, Win2K, MFC, Dev
 
Shankar Chandra Bose 3.18
Indexing your complete browser history using MSN Desktop Search
Updated: 15 Jul 2005
Indexing your complete browser history using MSN Desktop Search.
VC7.1, Win2K, WinXP, MFC, VS.NET2003, Dev
 
Sean McLeod 3.17
Programmatically Changing IP address, Domain Name Server and Gateways
Updated: 15 Jul 2004
This article shows how we can change the IP address with corresponding subnet mask, gateway with corresponding metric, and DNS of local computer through programming.
VC6, Win2K, WinXP, MFC, ATL, Architect, Dev
 
ThatsAlok 3.16
ICMP the ping-tracert
Updated: 22 Feb 2006
Make an ICMP request to make a ping or tracert.
C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
zitun 3.11
Deadlocks and race condition scenarios with a WebSockets server
Updated: 11 Jul 2011
This article describes the challenges I faced while programming a simple, concurrent WebSockets server in C++, and concludes with a complete working solution.
C++, Windows, Dev
 
trevor.n.webster 3.11
IP Helper API - Retrieve TCP/IP/UDP Statistics, Interface details, ARP Table and Route Table
Updated: 28 Feb 2002
Retrieve TCP/IP/UDP statistics, interface details, ARP table, and Route table.
VC7, Win2K, WinXP, MFC, Dev
 
shanthu 3.09
Connecting To A Network Time Server
Updated: 11 Jul 2008
This simple article explains how to connect to a network time server
C#2.0, .NET, WinXP, VS2005, Dev
 
Syed M Hussain 3.09
Statistic Consol Sniffer – No Driver Installation is Needed
Updated: 22 May 2004
Statistic consol sniffer – no driver installation is needed
C++, Windows (Win2K, WinXP, Win2003), Visual-Studio, MFC, Dev
 
OneManDo 3.09
Portbinding Shell
Updated: 16 Sep 2007
cmd.exe invisibly binds to port 5555 and waits for connections. Telnet, PuTTY, or Netcat and get a shell.
C#2.0, .NET2.0, WinXP, Vista, VS2005, Dev
 
Paul Chin PC 3.06
Using WinInet HTTP functions in Full Asynchronous Mode
Updated: 29 Jan 2001
Using WinInet functions asynchronously is a nightmare since no samples exist. Here's one!
VC6, Win2K, Visual-Studio, MFC, Dev
 
Benjamin Mayrargue 3.00
Bare Bones BOOTP Daemon/Server
Updated: 17 Jul 2007
This project presents a bare bones BOOTP daemon/server. Bootp is a protocol to assign an IP address to a device via its MAC address.
VC8.0, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Dennis Kuppens 3.00
Get information about the currently logged-on user - Part 1 - Unedited
Updated: 16 Apr 2006
Get information about the currently logged-on user - Local computer
VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Le Thanh Cong 2.97
CSyncSocket
Updated: 15 Jun 2005
A simple TCP class for multithreading usage.
VC6, WinXP, MFC, Dev
 
punokio 2.95
Server & Client IP Sockets
Updated: 6 Apr 2005
Offers services by servers, use of services by clients, via IP sockets.
VB6, VC6, Win2K, WinXP, MFC, Dev
 
Lymington 2.93
Serial Port Communication and Implementation of the Win32 DCB Structure in C#
Updated: 25 Aug 2008
This article contains a C# implementation of the Win32 DCB structure.
C#, Windows, .NET, COM, Dev
 
Aftab Zaheer Satti 2.92
HTTP Spy
Updated: 6 Dec 2008
Find out the Web server configuration
VC6, Win2K, Win2003, MFC, Dev
 
Vinod Vijayan 2.90
PopWatch v1.01
Updated: 9 Mar 2000
A freeware application to monitor your POP3 mailbox.
VC6, Visual-Studio, MFC, Dev
 
PJ Naughter 2.88
Troubleshooting Cookies - A Case study - Unedited
Updated: 15 Jan 2007
How to troubleshoot Cookie related issues
Windows, .NET, ASP, ASP.NET, IIS, Visual-Studio, WebForms, Dev, QA
 
Rahul Soni @ Microsoft.com 2.87
VB Port Scanner
Updated: 20 Jan 2007
Scan for open ports on a host.
VB.NET, Windows, .NET, Visual-Studio, Dev
 
Dave@VB 2.85
rEmail Part 3 – MIME Introduction
Updated: 11 Jun 2005
rEmail is a set of tutorials I am writing describing how I am building tools to download, interpret and send email messages. MIME is the format email messages are encoded in and this article describes the design of my class to decode it.
VC6, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Robert James Metcalf 2.85
FTP File Download Made easy
Updated: 16 Jul 2001
A simple function for downloading files from ftp sites using wininet classes
VC6, Win2K, Visual-Studio, MFC, Dev
 
Ali Issa 2.82
Using IP Helper API’s
Updated: 31 Oct 2001
This article demonstrates the usage of the Internet Protocol Helper API's
VC6, Win2K, Visual-Studio, MFC, Dev
 
Farooque Khan 2.77
Toggle Internet Proxy settings - an alternate approach
Updated: 19 Feb 2003
A code snippet for programmatically toggling IE proxy settings, while storing the previous state.
VC6, VC7, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Daniele Alberto Galliano 2.75
Review of the network adapter parameters
Updated: 6 May 2003
This article describes a program that shows the information about different network interfaces operating at the current moment.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Brigsoft 2.70
Extending the IPAddress object to allow relative comparisons of two IP addresses
Updated: 1 Jun 2008
This article outlines how to extend the IPAddress object to provide additional functionality for relative numeric comparisons of two IP addresses.
C# (C#2.0), Win2K, WinXP, Win2003, Vista
 
jaydenm 2.60
Error Reporter - Enables Back-2-Base Error Reporting
Updated: 25 Sep 2002
Allows users to send bug reports to manufacturers without having to manually create bug reports. Requires only four lines of code to be added to your application and works with all versions of Microsoft Windows. No MFC.
VC6, VC7, Win2K, WinXP, Visual-Studio, MFC, Dev
 
voodoopriestess 2.60
Know How DNS Works
Updated: 2 May 2004
Domain name Servers (DNS) are an important but invisible part of the internet, and form one of the largest databases on it
C++, Windows, Visual-Studio, MFC, Dev
 
Pawan Bangar 2.60
Get IP Address from Web host name
Updated: 10 Apr 2002
Using network classes.
C#, Windows, .NET1.0, Visual-Studio, Dev
 
nhgiang 2.53
WYSIWYG HTML Editor in .NET 2.0 C# version - Unedited
Updated: 18 Jul 2007
Barebones Example on how to use .NET 2.0 Components to build a WYSIWYG HTML Editor
C#2.0, .NET2.0, Win2K, WinXP, Win2003, COM, VS2005, Dev, WinForm
 
ssalakasharp 2.53
Modifying Wininet,dll to implement Pause & Resume at FTP Protocol leve - Unedited
Updated: 16 Aug 2005
Wininet API can not support the function of resume but we can modify wininet.dll to support it.
VC6, Win2K, WinXP, Win2003, Vista, MFC, Dev
 
bbinn 2.47
Where have my kids been surfing - Unedited
Updated: 9 Apr 2006
Parent readable internet explorer history
VC6, VC7, VC7.1, VC8.0, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Bob Lewis 2.43
IO Completion Port Example code walkthrough - Unedited
Updated: 21 May 2006
This article give you a complete walkthrough of the example code provided by Microsoft
C++, Windows, Visual-Studio, MFC, Dev
 
tsxy 2.42
Serial Communication in C#
Updated: 11 Nov 2007
Serail communication in .NET by connecting GSM modems.
C#1.0, C#2.0, Windows, .NET1.1, .NET2.0, WCF, VS.NET2003, Dev
 
Ranjan.D 2.41
Identify User Machine without using Cookies
Updated: 2 Sep 2007
Identify User Machine without using Cookies
C# (C#1.0, C#2.0, C#3.0), Windows (WinXP), .NET, Visual-Studio (VS.NET2003, VS2005), Architect, Dev, QA, Design
 
Anees Haider 2.40
Getting Addresses IP informations
Updated: 5 Mar 2003
IP, protocols installed, some useful informations
VC6, VC7, WinXP, MFC, Dev
 
PhR 2.37
Exploring Network Configuration with the INetCfg COM Interface
Updated: 24 Aug 2007
Getting information about installed network drivers on a PC.
VC7.1, Win2K, WinXP, Vista, MFC, COM, VS.NET2003, VS2005, Dev
 
KarstenK 2.33
Get MAC Address
Updated: 11 May 2002
Get MAC address function
VC6, Win2K, Visual-Studio, MFC, Dev
 
Ryszard Krakowiak 2.29
Send a content type “multipart/form-data” request from C#
Updated: 5 Mar 2007
How to send a content type “multipart/form-data” request from C#.
C#1.0, C#2.0, Windows, .NET1.0, .NET1.1, .NET2.0, .NET3.0, VS.NET2003, VS2005, Dev
 
Pablo Russoniello 2.25
DNS if u need it - Unedited
Updated: 1 Oct 2002
Simple quering DNS servers for retrieve information about host's DNS records
VC6, VC7, Win2K, WinXP, MFC, Dev
 
DarkSn0w 2.16
10 Measures to Reduce Credit Card Fraud for Internet Merchants - Unedited
Updated: 26 Jul 2006
solution to prevent chargebacks and to reduce fraud for online merchants
C++, Windows, .NET, ASP.NET, Visual-Studio, MFC, Architect, Dev
 
fraudlabs 2.16
Download files from internet - Unedited
Updated: 2 Dec 2004
Download the files from internet
VC6, Win2K, MFC, Dev
 
Eswar_Illuri 2.06
Messaging with TCP socket
Updated: 21 Dec 2004
An article on sending messages with TCP and message handling.
VC6, Win2K, WinXP, MFC, Dev
 
mohamad hajibegloo 2.00
How to auto-generate communication protocol source code
Updated: 1 Nov 2007
This article explains how to auto-generate communication protocol source code.
C++, Windows, Visual-Studio, MFC, Dev
 
upredsun 2.00
Intranets - Unedited
Updated: 2 May 2004
What exactly is an intranet? It's one of those terms that's more thrown around than understood, and has become more of a buzzword than a commonly understood idea
C++, Windows, Visual-Studio, MFC, Dev
 
Pawan Bangar 1.88
JMessenger - Unedited
Updated: 29 Sep 2007
This is a Java Based Client-Server Chatting application
C#, .NET, Dev
 
Govardhana Reddy 1.87
rEmail Part 1 - rTCPIP
Updated: 22 May 2005
rEmail is a set of tutorials I am writing describing how I am building tools to download, interpret and send email messages. rTCPIP is the first of the set and describes a very simple class that uses Windows Sockets to establish and communicate over TCP/IP connections.
VC6, WinXP, Visual-Studio, MFC, Dev
 
Robert James Metcalf 1.80
Use BITS to improve online update of your product - Unedited
Updated: 22 Oct 2002
Use BITS to improve online update of your product.
VC7, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Leo Wang 1.75
Windows Messenger Private API
Updated: 2 Oct 2005
Explains how to use Windows Messenger's private API, and provides a wrapper class for the challenge-response process
C#, VC7.1, .NET1.1, WinXP, COM, VS.NET2003, Dev
 
DL! 1.73
Network Location Awarness - Unedited
Updated: 25 Nov 2007
Getting notification about network location
VC8.0, Windows, .NET2.0, MFC, VS2005, VS2008, Dev
 
Umeshgtank 1.67
Extracting country and city name from IP address
Updated: 9 Sep 2007
This sample decribes how to get the country and city name from an IP.
C#2.0, Windows, .NET2.0, VS2005, Dev
 
John.Jiang 1.53
Send a request to an SSL page from C#
Updated: 2 Feb 2007
How to send a request to an SSL page from C#.
C#1.0, C#2.0, C#3.0, Windows, .NET1.0, .NET1.1, .NET2.0, .NET3.0, VS.NET2003, VS2005, Dev
 
Pablo Russoniello 1.44
Hello world application for socket programming in windows - Unedited
Updated: 20 Oct 2007
Application for newbies in the world of
VC7.1, Windows, .NET1.1, MFC, VS.NET2003, Dev
 
DharmeshC 1.42
Class to Determine a Local Machine's IP Address - Unedited
Updated: 23 Aug 2002
This is a class for determining a local machine's IP address using iphlpapi or sockets and to convert between a couple of standard formats
VC6, Win2K, WinXP, MFC, Dev
 
niverson 1.39
Multiple Client and Single Server in TCP and Broadcast - Unedited
Updated: 1 Nov 2007
Multiple Client and Single Server in TCP and Broadcast
VC6, WinXP, MFC, Dev
 
sherton 1.33
Fast and basic ftp client through GUI - Unedited
Updated: 6 Apr 2005
It doesn't use any MFC class for ftp connection.It works on tcp connection.this is really fast.
VC6, Win2K, MFC, Dev
 
Nipun 1.30
How to include 404 encoding in your application - Unedited
Updated: 18 Jul 2001
Add 404 encoding to your application with this DLL
VC6, Win2K, Visual-Studio, MFC, Dev
 
(Steven Hicks)n+1 1.27
Go-Back-N Simulator - Unedited
Updated: 6 May 2007
GO - BACK - N Simulator
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Mustafa Sait Ozen 1.14
A simple chat program - Unedited
Updated: 10 Jun 2004
A simple chat program
VC6, WinXP, Visual-Studio, MFC, Dev
 
gamitech 1.07
Get a TCPServer's Connected Client's IP Address in C#
Updated: 21 Sep 2007
An article on getting tcpip client address on the server machine
C#2.0, Windows, .NET2.0, Visual-Studio, Dev
 
Dean van Rooyen 1.04
PHP + Microsoft Overview - Unedited
Updated: 26 Oct 2009
An overview of the Microsoft interoperability story for Open Source community and PHP Developers.
SQL-Server, IIS, ADO, PHP, Dev
 
dougturn  
How to use NotifyAddrChange in C#
Updated: 7 Apr 2009
A C# class designed to facilitate the use of NotifyAddrChange through PInvoke.
C#, Windows, .NET, Dev
 
Ski_Hog  
How to Embed Video Search in Web Application
Updated: 23 Aug 2010
An article on how to embed video search in web application
All-Topics
 
NikhilJohari  
Node Classification in Open Hypermedia System - Unedited
Updated: 4 Jan 2010
we propose our node classification technique which help users in identifying different nodes’ type, hence providing navigational assistance
Java, Architect, Design
 
Member 3058755  
URL Auto Mapping
Updated: 17 Jan 2010
A URL query string to object mapper.
C#, Windows, .NET, Dev
 
Alexey Kadyrov  
MSN MessengerLive Factotum AddIn
Updated: 28 Feb 2007
An MSN MessengerLive Addin: featuring links, bots, and encryption
C#2.0, Windows, .NET, VS2005, Dev
 
gamon02  

Internet / Network - HTTP 

top
Title / Updated Author Score  
Bi-directional HTTP Connection
Updated: 22 Jan 2004
An article about a bi-directional communication using a single open connection.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Wytek Szymanski 5.00
C# search engine: refactored to search Word, PDF and more
Updated: 17 Mar 2007
Refactor Searcharoo C# search engine code to make it easier to extend, and add ability to index/search Microsoft Office documents, PDFs, etc.
C#2.0, Windows, .NET2.0, ASP.NET, WebForms, VS2005, Dev
 
craigd 4.95
Developing a SOHO HTTP filter step by step
Updated: 26 Aug 2007
The main goal of this article is to explain the practical details of low level network security programming.
C, VC7.1, Win2K, Win2003, MFC, VS.NET2003, Dev
 
eternalnetworker 4.94
Static-Site Search Engine with ASP.NET/C#
Updated: 29 Jun 2004
Simple, free, easy to install Search page in C#.
C#, .NET, Win2K, WinXP, Win2003, ASP.NET, WebForms, VS.NET2003, Dev
 
craigd 4.93
Posting to an ASP website via Windows sockets in C
Updated: 13 Feb 2011
Posting data to an Internet server made easy with a slick C/C++ class wrapping a call to Windows sockets.
C++, C, Windows, Win32, Dev
 
Sergio Mach 4.90
A Simple Crawler Using C# Sockets
Updated: 19 Mar 2006
A multi-threaded simple crawler with C# sockets to solve the WebRequest.GetResponse() locking problem.
C#, Windows, .NET, Visual-Studio, Dev
 
Hatem Mostafa 4.90
HTTPeep - an HTTP inspector
Updated: 14 Mar 2005
Handy C# utility to perform custom HTTP requests and view the raw HTTP response.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
Ashley van Gerven 4.89
MiniHttpd: an HTTP web server library
Updated: 30 Dec 2005
A portable and flexible HTTP web server library written in 100% managed C#.
C#, .NET1.1, Win2K, WinXP, Win2003, Vista, Mono, VS.NET2003, Dev
 
reinux 4.89
Webio - An embedded web server
Updated: 20 Jul 2008
A C-language web server with embedded files and CGI.
C++ (VC6), Dev
 
jbartas 4.87
HTTP File Downloader Class for .NET
Updated: 23 Sep 2007
HTTP File Downloader Class for .NET (HTTPFileDownloader)
C#, Windows, .NET, Visual-Studio, Dev
 
Alex_1 4.83
An Asynchronous HTTP Request WinINet Wrapper in C++
Updated: 25 Aug 2011
An asynchronous HTTP download class for C++
C++ (VC7, VC8.0, VC9.0), Windows, WinMobile, Win32, MFC, ATL
 
crazybit 4.82
SharpBITS.NET - A Wrapper for the BITS API
Updated: 7 Oct 2010
A BITS wrapper library for .NET 2.0.
C#, Windows, .NET2.0, Visual-Studio, COM, IIS6, Dev
 
xidar 4.79
Populating a Search Engine with a C# Spider
Updated: 1 Jul 2004
How-to build an ASP.NET search engine link-spider using C#.
C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, ASP.NET, WebForms, VS.NET2003, Dev
 
craigd 4.79
A C++ Embedded Web Server
Updated: 1 Jun 2010
Give a C++ application its own web page
C++ (VC6, VC7, VC7.1, VC8.0), Windows (WinXP), Win32, Dev
 
ravenspoint 4.77
Simple HTTP Server in C#
Updated: 22 Dec 2010
Threaded synchronous HTTP Server abstract class, to respond to HTTP requests
C#, .NET, Dev
 
David Jeske 4.77
How to Connect to a SiteMinder Protected Resource Using an HTTP Request
Updated: 10 May 2010
This article, along with example code, explains how to use HttpWebRequest and HttpWebResponse in .NET, using VB, to access a SiteMinder protected URL.
VB, Windows, .NET, Dev
 
rsidie 4.75
Communicating from the Browser to a Desktop Application
Updated: 17 May 2009
A very simple application that uses text to speech to speak out loud the currently selected block of text in your web browser.
C#, Javascript, .NET, Dev
 
MarkGladding 4.74
Adding features to a C# search engine/web spider
Updated: 24 May 2006
Adding advanced search-engine features (and persistent catalog) to Searcharoo project
C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, ASP.NET, WebForms, VS.NET2003, Dev
 
craigd 4.72
Socket-based HTTP Client with Bandwidth Limit
Updated: 10 Aug 2010
A simple HTTP client implementation based on sockets with ability to limit upload/download speed
C#, .NET, WebForms, Architect, Dev, Threading, Web-Development, socket, WinForm
 
Petr Bříza 4.70
C#/VB - Automated WebSpider / WebRobot
Updated: 15 Mar 2004
Build a flexible WebRobot and process an entire site using a WebSpider
C#, VB, Windows, .NET1.1, VS.NET2003, Dev
 
David Cruwys 4.63
How to use HttpWebRequest and HttpWebResponse in .NET
Updated: 28 Mar 2004
This article, along with real code, explains to you how to use HttpWebRequest and HttpWebResponse in .NET, using C#.
C++, C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
munishk 4.51
Threaded WebDownload class with Progress Call-backs
Updated: 19 Jul 2002
Implementation of a C# class that performs an asynchronous download of a file (over HTTP) providing call-backs with progress and when complete.
C#, VC7, .NET1.0, Win2K, WinXP, Dev
 
Ray Hayes 4.47
C# Customizable Embedded HTTPServer
Updated: 14 Nov 2007
A customizable embedded HTTPServer for C#.
C#, VC8.0, Windows, .NET2.0, VS2005, Dev
 
Mark Swaanenburg 4.14
Embedded .NET HTTP Server
Updated: 14 Jul 2008
A simple HTTP server that can be embedded in any .NET application.
C#1.0, C#2.0, C#3.0, .NET1.1, Dev
 
BobJanova 4.08
A single-threaded HTTP server
Updated: 18 Dec 2005
An implementaion of a simple, single-threaded HTTP server.
C#, Windows, .NET, Visual-Studio, Dev
 
Alexey A. Popov 3.81
Downloading Multiple Files over HTTP Connection
Updated: 25 Mar 2009
An application that can download the files, as listed on an HTML page, over an HTTP connection.
C# (C#1.0, C#2.0, C#3.0)
 
A. Kwan 3.75
Web Extractor using Regular Expressions
Updated: 27 Mar 2009
A flexible opensource web extractor that allows you to specify your own regular expressions
C#2.0, Windows, .NET2.0, Dev
 
ConnectCode 3.57
A Simple Windows HTTP Wrapper Using C++
Updated: 31 Jul 2008
Gets the content of a web page into a project without the WinHttp APIs mixed in my source code using a WinHttp wrapper.
C++, Windows, ATL, COM, Dev
 
shicheng 3.44
Asynchronous WinHTTP Library
Updated: 10 Dec 2009
Tiny WinHTTP API wrapper library for asynchronous HTTP with callback handler
C++, Windows, Win32, Dev
 
zoufeiyy 3.33
RSS Feed Server - Unedited
Updated: 11 Mar 2008
Creating a RSS Feed Server using .Net
C# (C#1.0, C#2.0, C#3.0), .NET (.NET2.0)
 
Arif Habib Shadan - www.i-arif.com 1.42

Internet & Network - HTTP / HTTPS 

top
Title / Updated Author Score  
Embeddable web server
Updated: 21 Jan 2009
A web server with HTTPS, MVC, and REST support.
C# (C#2.0, C#3.0), .NET, Dev
 
jgauffin 4.95
Discover WEB. HTTP GET-POST Utility
Updated: 25 Jun 2002
This article presents a utility that lets you retrieve raw information from web servers using HTTP's GET and POST commands.
VC6, Win2K, WinXP, MFC, Dev
 
Adrian Bacaianu 4.92
A Fully Featured Windows HTTP Wrapper in C++
Updated: 22 Sep 2010
A fully featured and easy-to-use Windows HTTP wrapper in C++
C++, Windows, ATL, Dev
 
shicheng 4.88
Loading and parsing HTML using MSHTML. 3rd way.
Updated: 11 May 2002
Explains how to load HTML code from memory and parse it using MS technologies
C++/CLI, VC6, .NET, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Philip Patrick 4.80
Multithreaded server class with example of HTTP server
Updated: 12 Aug 2001
Multithreaded server class with example of HTTP server
VC6, Win2K, MFC, STL, Dev
 
Souren Abeghyan 4.78
URL/Web Addresses Logger
Updated: 3 Nov 2006
This application can be used to track web URLs of the current user and store them in a log file on the root or in any folder.
VC6, Win2K, WinXP, MFC, Dev
 
farhanx 4.78
Implementing a Multithreaded HTTP/HTTPS Debugging Proxy Server in C#
Updated: 3 Feb 2011
A complete proxy server except instead of SSL Tunneling, will perform a "man-in-the-middle" decryption on SSL traffic allowing you to inspect the encrypted traffic
C#, .NET, Dev, SysAdmin, Threading
 
matt-dot-net 4.77
ASP Web Server
Updated: 7 Jul 2003
This article presents a Web server with ASP support.
VC6, Win2K, WinXP, MFC, Dev
 
Pablo van der Meer 4.72
Embedding a Webserver in your C++ Application
Updated: 16 Jul 2011
Embedding a webserver in your C++ application using the Lacewing networking library
C++, Windows, Linux, Win32, Dev, HTTP
 
JAMcLaughlin 4.63
Connecting to a HTTPS server with SSL using Wininet, sending client certificate and reading response
Updated: 2 Apr 2003
A sample class which illustrates how to connect to a HTTPS server, the class sends the desired client certificate and authenticates the user.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Ayhan AVCI 4.63
Discover WIN32. How to use a sync/async retrieve HTTP content in your ASP & VB projects.
Updated: 19 May 2002
This article shows how to create one ATL COM component using the WinInet functions, how to use it in ASP programs and how to test it from the Visual Basic client. It also shows how to use multithreading support in this component.
VB6, VC6, Win2K, MFC, ATL, Dev
 
Adrian Bacaianu 4.60
AmHttpUtilities
Updated: 3 Sep 2001
A small class that handles HTTP POST, GET and HEAD operations.
VC6, Win2K, Visual-Studio, MFC, Dev
 
Anders Molin 4.57
WinHttpGateway Library - Unedited
Updated: 30 Apr 2009
WinHttp API wrapper library with asynchronous call mechanism and support of HTTPS protocol
C++ (VC6, VC7, VC7.1, VC8.0), C++/CLI, C, Windows (Win2K, WinXP, Win2003), Win32, Visual-Studio, MFC, STL, Architect, Dev
 
klizardin 4.00
Generate and Configure Digital Certificate - Unedited
Updated: 15 Feb 2008
Generate and configurate digital certificate using IIS 6.0
HTML, ASP, ASP.NET, IIS (IIS6, IIS7), Ajax, Dev, Design
 
Ahmed Kahwaji 3.86
Simple HTTP Client using WININET
Updated: 2 Sep 2003
Simple HTTP Client, HTTP GET, HTTP POST, HTTP POST-MultiPartFormData
VC6, Win2K, Visual-Studio, MFC, STL, Dev
 
Yongseon Heo 3.69
Web Data Extraction by Crawling using WINHTTP and Document Object (DOM) Instantiation
Updated: 20 Jul 2003
An article on how to extract data from a web URL using the WINHTTP library and how to extract the DOM of the crawled document.
VC6, Win2K, WinXP, Visual-Studio, MFC, ATL, Dev
 
Prabhdeep Singh 3.47
WinInet wrapper class to handle HTTP GET/POST, Part 1
Updated: 13 Mar 2005
A simple class to handle HTTP GET and POST.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
 
Uraan Software Solutions 3.35
Extendable Webserver
Updated: 6 Mar 2003
An example of an extendible webserver using PJ Naughter's MFC library
VC6, VC7, Win2K, WinXP, MFC, Dev
 
ETA 2.14
Connect the Gmail with IWebBrowser2
Updated: 16 Jun 2004
Use the IWebBrowser2 to connect Gmail
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
Dofu 1.38

Internet 

top
Title / Updated Author Score  
PrismServer: A Chat Client and Server Solution for .NET 2.0
Updated: 8 May 2008
PrismServer is a complete solution for adding chat and other general purpose multi-user messaging to your .NET applications. Concepts like creating and entering chat rooms, and management of user profiles, are abstracted and exposed as simple properties, methods and events.
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Dion Kurczek 4.97
Using the Asterisk IAXClient library in C#
Updated: 13 Nov 2006
A C# wrapper for the Asterisk IAXClient library.
C#, .NET2.0, WinXP, VS2005, Dev
 
Andre Azevedo 4.89
Ping Monitor
Updated: 20 Jul 2007
Yet another Ping Monitor utility written in VB.NET on .NET Framework 2.0
VB8.0, Windows, .NET2.0, VS2005, Dev
 
Alberto Venditti 4.89
Yahoo! Finance Managed
Updated: 26 Nov 2010
Download stock quotes, historic data, rates of exchanges and technical analysis charts from Yahoo! Finance
C#, VB, .NETCF, .NET (.NET2.0), Mobile, Dev
 
MaasOne 4.89
An easy-to-use URL file downloader class for .NET
Updated: 17 Aug 2007
A simple to use resumable file downloader class that provides progress feedback for .NET 2.0 or .NET 1.1
VB, C#1.0, C#2.0, .NET1.1, .NET2.0, Win2K, WinXP, Win2003, Vista, Mono, DotGNU, VS.NET2003, VS2005, Dev
 
Scott Dorman 4.85
An API for Google Image Search
Updated: 11 Mar 2007
Querying images from Google programmatically.
C#, .NET2.0, WinXP, VS2005, Dev
 
Ilan Assayag 4.85
An FTP client library for .NET 2.0
Updated: 20 Mar 2006
Provides a useful wrapper to the FtpRequest in .NET 2.0.
C#, VB, Windows, .NET2.0, VS2005, Dev
 
Howard Richards 4.84
Easy-to-use resumable .NET file downloader
Updated: 25 Oct 2006
A simple, easy-to-use, resumable .NET file downloader.
C#, Windows, .NET1.0, .NET1.1, .NET2.0, Mono, Visual-Studio, Dev
 
Phil Crosby 4.81
The Ultimate Socket Library
Updated: 13 Jun 2004
All what you need to know about sockets.
VB, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, Dev
 
The Silence 4.79
Modbus TCP class
Updated: 6 Nov 2006
A Modbus TCP class.
C#1.0, Windows, .NET1.1, VS.NET2003, Dev
 
Stephan Stricker 4.78
A C# Google Bookmarks Class
Updated: 25 Mar 2008
An article on how to implement Google Bookmarks in your application
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Jim Weiler 4.74
An API for Yahoo Image Search
Updated: 10 Jul 2011
Querying images from Yahoo! programmatically.
Javascript, CSS, HTML, .NET, ASP, ASP.NET, Ajax, VS2010
 
Marshall Rosenstein 4.74
Harvesting Web Content into MHTML Archive
Updated: 18 Feb 2006
Capture and archive web resources by saving them in RFC-2557 (MHTML) compliant format. This library includes a framework for augmenting the capture process and allowing programmatic control, from downloading through saving. A replacement for CDOSYS/CDONTS.
C#, .NET, WinXP, Visual-Studio, Dev
 
Peter Rilling 4.69
Bandwidth throttling
Updated: 2 Apr 2007
Save bandwidth and get QoS with bandwidth throttling.
C#1.0, C#2.0, Windows, .NETCF, .NET1.0, .NET1.1, .NET2.0, ASP.NET, VS.NET2003, VS2005, Dev, WinForm
 
P.J. van de Sande 4.68
Seekafile Server 1.0 - Flexible open-source search server
Updated: 8 Mar 2006
A Windows Service that indexes DOC, PDF, XLS, PPT, RTF, HTML, TXT, XML, and other file formats. Desktop and ASP.NET search samples included.
C#, Windows, .NET, Visual-Studio, Dev
 
Dan Letecky 4.64
Using VB.NET to Encode SMS and EMS
Updated: 31 May 2005
An article on SMS and EMS Encoders.
VB, Windows, .NET1.1, VS.NET2003, Dev
 
hesicong 4.60
UDP Send and Receive using threads in VB.NET
Updated: 26 Nov 2004
This article describes how to send and receive data without making the user interface to halt, in VB.NET using UDP..
VB, .NET1.1, Win2K, VS.NET2003, Dev
 
Kumudu Gunasekara 4.58
Send a Text Message to a Cell Phone from a VB.NET Application
Updated: 23 Aug 2006
This article describes a simple way to send text messages to a cellular phone from within a VB.NET desktop application.
VB, Windows, .NET2.0, VS2005, Dev
 
salysle 4.54
Exploiting the Blogger Atom API
Updated: 12 Dec 2005
A .NET based API for interacting with Blogger.com.
C#, .NET1.1, WinXP, Win2003, VS.NET2003, Dev
 
Ali Shojaeddini 4.54
Using VB.NET to Decode PDU string
Updated: 22 Feb 2005
Decode PDU string using VB.NET.
VB, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
hesicong 4.50
Implement POP3 and SMTP in .NET
Updated: 4 Jan 2006
Using socket to implement POP3 and SMTP protocol.
VB, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
TonyTonyQ 4.48
Simple C# DLL to download data from Google Finance using an alternative, undocumented method
Updated: 6 Jul 2011
Download historical and real time prices from Google Finance using an alternative method to the "Download to spreadsheet" link in the "Historical prices" page.
C#, Windows, .NET2.0, Dev, Internet, WinForm
 
Juan1R 4.43
Using Amazon FPS (WinForms, ASP.NET, and C#)
Updated: 21 Dec 2007
Using Amazon FPS as an alternate to Paypal and Google Checkout.
XML, C#2.0, Windows, .NET2.0, VS2005, Dev
 
Keng_Mycos 4.43
TinyUDP - Simple UDP Client/Server Components for .NET
Updated: 7 Jun 2005
Simple UDP client/server components for .NET 1.1.
VB, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev, WinForm
 
tupacs01 4.40
SEO Tutorial - Part 1
Updated: 10 Apr 2009
SEO Tips and Techniques, andnd end-to-end SEO guide
Javascript, CSS, HTML, XHTML, ASP, ASP.NET, WebForms, Ajax
 
Syed Rafey Husain 4.31
YaCy P2P Search Sample in C#
Updated: 10 Sep 2010
A C# sample of how to query a YaCy peer.
C#, XML, .NET, Dev, peer-to-peer
 
Nathan Staudt 4.29
Using the Internet Connection Sharing (ICS) and Internet Connection Firewall (ICF) COM Interfaces
Updated: 6 Nov 2004
The NetworkConnectionCollection is a strongly-typed interface that is meant to simplify access to the Internet Connection Sharing and Internet Connection Firewall interfaces for each of the network connections registered on the machine.
VB, .NET1.1, WinXP, COM, VS.NET2003, Dev, WinForm
 
Tony Selke 4.25
APOD - Get Astronomy Picture of the Day
Updated: 16 Sep 2009
Retrieving the astronomy picture of the day
C# (C#1.0, C#2.0, C#3.0), Windows, .NET, Win32, Dev
 
Marco Manso 4.20
Get the client's IP address using TcpClient in VB.NET
Updated: 4 May 2006
How to get the client's IP address using TcpClient in VB.NET.
VB, .NET, WinXP, Visual-Studio, Dev
 
Perry Marchant 4.17
Event-Based Asynchronous WebRequest
Updated: 10 Nov 2006
A sample project that includes a BackgroundWebRequest component that can be used in a WinForms project to perform asynchronous WebRequests. The project shows how to use the WebRequest and WebResponse objects as well as how to implement the Event-Based Asynchronous Pattern as described on MSDN.
VB, Windows, .NET2.0, VS2005, Dev, WinForm
 
Brian Brewder 4.17
SEO Tutorial - Part 2
Updated: 10 Apr 2009
SEO Tips and Techniques, and end-to-end SEO guide
HTML, XHTML, ASP, ASP.NET, WebForms, Ajax
 
Syed Rafey Husain 4.13
Accessing LDAP User list using VB.NET
Updated: 6 Oct 2004
This article will explain how to access LDAP service using VB.NET.
VB, Windows, .NET1.0, .NET1.1, VS.NET2003, Dev
 
Chandrashekhar Kulkarni 3.75
Building Client/Server applications with VB.NET for secure private file sharing
Updated: 24 Nov 2005
How to build secure private file sharing client/server using a freeware SDK
VB, Windows, .NET, Visual-Studio, Dev
 
Ganyob 3.65
TCP/IP with VB.NET
Updated: 12 Aug 2004
TCP/IP with VB.NET.
VB, Windows, .NET1.0, .NET1.1, VS.NET2003, Dev
 
uno freeware 3.50
IBM Messenger in VB.NET
Updated: 27 Oct 2004
IBM Messenger in VB.NET.
VB, Windows, .NET1.0, Dev
 
Kourosh K Tari 3.42
How to test the reachability of a VPN-Connection?
Updated: 15 May 2004
Program to test the availability of hosts in a network on the basis of ICMP-Pings.
C++, VB, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, MFC, Dev
 
thomasdev 3.30
VB.NET SNTP Broadcast server
Updated: 25 Jul 2006
Broadcasting SNTP UDP packets using VB.NET
VB, Windows, .NET2.0, Visual-Studio, Dev
 
patrickbinnendijk 3.18
ComEdRTP Tools
Updated: 23 Dec 2009
Tool for monitoring the Real Time Price for ComEd electricity.
VB, .NETCF, .NET
 
cjbarth 3.00
A TCP client that uses MSN protocol
Updated: 19 Jul 2004
A TCP client that uses MSN protocol
VB, Windows, .NET1.0, .NET1.1, VS.NET2003, Dev
 
Luna Thong 2.90
Sending email with an embedded image through ASP.NET
Updated: 6 Mar 2007
An article to send email from ASP.NET 2.0 by embedding an image in the content
VB, Windows, .NET2.0, ASP.NET, Visual-Studio, WebForms, Dev
 
jebarson 2.56
Read raw SHOUTcast Stream
Updated: 25 Jul 2005
How to read raw SHOUTcast stream.
VB, Windows, .NET, Visual-Studio, Dev
 
Dani Forward 2.56
Implementation of spamd client (spamc) in VB.NET
Updated: 27 Jun 2004
.NET implementation of SpamAssassin's network client.
VB, Windows, .NET1.0, Dev, Virtualization, virtual-machine
 
Michal Altair Valášek 2.50
Remote interactive SSH command in Java
Updated: 18 Dec 2009
Implement an interactive SSH command in Java.
Java, Dev
 
wallywl 1.57
C# Google Sitemap Class
Updated: 29 Nov 2006
An article that describes a C# class to simplify Google Sitemap file generation.
C#, Windows, .NET2.0, VS2005, Dev
 
teongkee 1.51

.NET - Internet & Network 

top
Title / Updated Author Score  
TelnetSocket
Updated: 3 Apr 2010
A wrapper for a System.Net.Sockets.TcpClient that performs simple Telnet negotiation and is scriptable.
C#, .NET (.NET3.5), Dev
 
PIEBALDconsult 4.95
Java Remote Desktop Administration
Updated: 2 May 2009
Control And View Another Computer Remotely
Java, Java SE (J2SE5), Dev
 
Lemo Stein 4.95
Programming control point application using the UPnP Control Point API - Unedited
Updated: 13 Jul 2009
The article describes how to use the Microsoft's UPnP Control Point API for finding and controlling UPnP devices, and includes a description of simple library to facilitate the application of Control Point API in your own programs, together with an example of MFC and WinForms applications.
C++, C++/CLI, C#, Windows (WinXP, Win2003, Vista), WinMobile, .NET (.NET2.0), Win32, Visual-Studio (VS.NET2003, VS2008), MFC, ATL, STL, COM, Dev, WinForm
 
amatecki 4.90
Introduction to SIP for Java, C#, and VB Developers
Updated: 19 Aug 2010
This article is a technical overview of the Session Initiation Protocol, and is designed for Java, C#, and VB programmers who want a quick low-level guide to the workings and details of the protocol.
C++, C#, Java, VB.NET, Dev
 
Jesper A Nielsen 4.85
Packet Sniffing with Winpcap Functions Ported to a .NET Library
Updated: 25 Mar 2009
Using Winpcap functions in the .NET Framework
C#, .NET1.0, Win2K, WinXP, Dev
 
Victor Tan 4.84
Multi-threaded .NET TCP Server Examples
Updated: 15 Sep 2002
Examples on multi-threaded TCP Server with doomed connections reclaiming task, Thread Pooling, Multi-thread Servicing Queue
C#, .NET1.0, Win2K, Visual-Studio, Dev
 
Yuen Chiu So 4.83
Introduction to SDP for Java, C#, and VB Developers
Updated: 30 Jul 2010
This article is a technical overview of the Session Description Protocol, and is designed for Java, C#, and VB programmers who want a quick low-level guide to the workings and details of the protocol.
C#, Java, VB.NET, Dev
 
Jesper A Nielsen 4.78
How to use the Windows NLM API to get notified of new network connectivity
Updated: 31 Mar 2009
Use the Windows NLM API to tell if a machine has internet connectivity.
C#, Windows, .NET, Dev
 
ryhuang 4.75
Chatting using CSocket
Updated: 16 Dec 2011
This is a simple application to demonstrate about socket, socket types, and general flow diagram of socket communication, CSocket, CAsyncSocket and its API call in the easiest manner.
C++
 
shanmugarajaa 4.71
A simple .NET based WebClient with JavaScript support
Updated: 26 Mar 2006
A simple .NET based WebClient with JavaScript support.
C#, Javascript, Windows, .NET, Visual-Studio, Dev
 
Christian Birkl 4.69
Introduction to .NET Web Services
Updated: 25 Jun 2003
Introduction to .NET web services.
C#, VB, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, ASP.NET, Visual-Studio, Dev
 
Saumendra Poddar 4.69
Basic internet requests
Updated: 24 Jul 2011
Classes for making simple internet calls using Wininet.
C++, Windows, Win32, Dev
 
Cristian Amarie 4.67
Peer Graph - Importing and Exporting a Database
Updated: 24 Jan 2006
Importing and exporting a Peer Graph database using Microsoft's Peer-to-Peer technology.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 4.64
Turn On Your PC/Computer Programmatically / Automatically –Wake On LAN ( WOL ) Over Internet- Wake On WAN ( WOW)
Updated: 10 Aug 2009
Start your Computer by C , C++ , JAVA , .NET ..
Java SE (JavaSE6, J2SE5, J2SE4, J2ME, J2EE), Swing
 
Asu-H 4.63
Peer Name Resolution (PNRP) - netsh
Updated: 10 Nov 2005
Peer Name Resolution, netsh and Microsoft's Peer-to-Peer technology.
C#, .NET, WinXP, VS.NET2003, Dev
 
Adrian_Moore 4.43
Practical .NET Remoting Caching Sink
Updated: 27 Jun 2003
A cache mechanism for .NET Remoting
VC7, VC7.1, Windows, .NET1.0, .NET1.1, Visual-Studio, Dev
 
zhi 4.36
TCP/IP Stack, FAT16 System on a Microcontroller
Updated: 31 Jul 2011
TCP/IP Stack, FAT16 System on a Microcontroller
C, Mobile, Dev
 
Lewis Liu (yyiu002) 4.36
How to obtain the current TCP/IP configuation for all adapters
Updated: 18 Aug 2003
An article on obtaining the current TCP/IP configuration for all .NET supported OSs.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
Gary Caldwell 4.25
Peer Collaboration - People Near Me
Updated: 18 Apr 2006
An introduction to Microsoft's Peer-to-Peer Collaboration technology in Windows Vista.
C#, .NET, Vista, Visual-Studio, Dev
 
Adrian_Moore 4.22
Peer Graph - Search Criteria Helper
Updated: 16 Jan 2006
Expression conversion to XML search criteria for a Peer Graph, using Microsoft's Peer-to-Peer technology.
C#, VB, XML, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 4.17
Batch Net Send
Updated: 23 Mar 2004
Send network messages to several recipients
C#, .NET1.0, Win2K, WinXP, Dev
 
Francisco Prata 3.96
Making Peer-to-Peer Chatting Easy
Updated: 16 Apr 2006
Using Microsoft's Peer-to-Peer technology and Adrian Moore's encapsulation, to create an easy to use library for chatting.
C#, .NET2.0, WinXP, Vista, VS2005, Dev
 
DanLash 3.88
SMTP Mailer with Authentication
Updated: 25 Oct 2003
.NET assembly, 100% managed code. Send mails using a SMTP server that requires authentication.
C#, VB, VC6, VC7, VC7.1, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, ASP.NET, VS.NET2003, Dev
 
pjutard 3.79
Develop high performance distributed applications with batching, asynchrony, and parallel computation
Updated: 27 Sep 2004
Performance comparison between SocketPro and .NET remoting.
C#, SQL, VC6, Windows, .NET1.1, COM, SQL2000, VS.NET2003, DBA, Dev
 
Yuancai (Charlie) Ye 3.65
About .NET Remoting: Three concepts Compared and Simplified
Updated: 6 Apr 2005
An article on .NET remoting which discusses and compares the three ways, by which .NET remoting can be used to access a Server-side object from the clients- Singleton, SingleCall and Client Activation.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Javed Akhter Siddiqui 3.50
Sending SMS using .NET
Updated: 11 Jun 2007
This article covers some of the ways of sending SMS using .NET
C#, VC8.0, VB8.0, .NET2.0, Win2K, WinXP, Win2003, Vista, ASP.NET, WebForms, VS2005, Dev
 
PooranPrasad 3.47
An app to see who has files open on a network server
Updated: 29 Jun 2005
An app to see who has files open on a network server.
C#, VB, Windows, .NET1.1, VS.NET2003, Dev
 
kubben 3.43
.NET WebScheduler for scheduled downloading of web sites and files through HTTP and FTP
Updated: 28 Oct 2005
An article describing a ScheduledTask class for writing a WebScheduler application, for example a Windows Service.
VB, XML, .NET1.1, .NET2.0, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
David van Leerdam 3.36
Remote Monitoring of Terminal Exchanges: Microsoft .NET & Java – Part 1
Updated: 16 Aug 2005
This article discusses the Terminal Exchange and Remote Monitoring terminology and the use of the latter in Terminal Exchange.
Windows, Java SE, .NET, Visual-Studio, Dev
 
Narayana Rao Surapaneni, Praveena Surapaneni 3.26
Peer Graph - Peers and Connections
Updated: 17 Nov 2005
Peer Graph - Peers and Connections using Microsoft's Peer-to-Peer technology.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 3.19
A TraceListener that sends messages via UDP
Updated: 28 Jul 2004
An implementation of a TraceListener that sends messages across the network.
C#, Windows, .NET1.0, .NET1.1, Visual-Studio, Dev
 
Mayank Gupta 3.15
Retrieving Mail with POP3
Updated: 2 Jul 2005
In this article I will demonstrate how to quickly and easily retrieve mail messages using the POP3 protocol.
C#, Windows, .NET, Visual-Studio, Dev
 
Chad Z. Hower aka Kudzu 3.04
Wireless Sensor Network Localization Simulator v1.1
Updated: 14 Jul 2011
Wireless Sensor Network Localization Simulator v1.1
C#, Dev
 
Abdelhady Naguib 3.00
FTP Windows Forms Client, using Managed Assembly
Updated: 22 Apr 2004
This is a FTP downloading Winform application utilizing Indy.Sockets.dll.
C#, Windows, .NET1.0, .NET1.1, VS.NET2003, Dev
 
Fakher Halim 2.97
Quick Mail
Updated: 7 Apr 2003
Easy way to send mails using SMTP, in .NET.
C#, Windows, .NET1.0, Dev
 
Ashraf Mohamed 2.96
.NET Wrapper DLL for the WNet API
Updated: 18 Aug 2003
A simple wrapper DLL containing most of the functions in the WNet API.
C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Calishar 2.69
Posting newsgroup messages with NNTP using Indy
Updated: 24 Jul 2005
In this article, I will demonstrate how to quickly and easily post a message to a newsgroup, including an attachment, using the Indy open source library.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Chad Z. Hower aka Kudzu 2.63
UDP Client and Server and Remote BSOD prank too!
Updated: 16 Feb 2005
Demonstrates how to use a UDP client, and a UDP server. The example is named "Remote BSOD Invocator", or simply RBSOD for short. RBSOD can be used to trigger fake (and funny) BSODs on your colleagues' (or enemies') computers.
C++/CLI, C#, VB, Windows, .NET1.0, .NET1.1, .NET2.0, VS.NET2003, VS2005, Dev
 
Chad Z. Hower aka Kudzu 2.60
A Simple Chat Application Using .NET Remoting
Updated: 13 Nov 2001
This application demonstrates .NET remoting in LAN.
C#, .NET1.0, Win2K, Dev
 
Anil Kumar 2.40
Email Component for .NET
Updated: 27 Oct 2003
cpSphere.Mail is a comprehensive and extendable implementation of MIME, POP and SMTP RFCs. This is architected to provide a framework for all email related development. This component could be used with default options with less or no knowledge of underlying MIME, POP, SMTP protocols.
C#, Windows, .NET1.0, Dev
 
Kamraan 2.34
No RFC Chatserver With .NET Client, Or Java Client
Updated: 3 Jun 2005
A chat server that can be setup as a service or application. Opens listening port and awaits connections from Java clients or .NET clients. You could setup even a HTML refresh with a little JavaScript knowhow. I've included the server only because I would like some feedback on the way I do threads.
VB, Java SE, .NET1.1, Win2003, GDI+, VS.NET2003, Dev
 
supernova5666 2.18
Calculating the broadcast address for a subnet
Updated: 22 Aug 2008
How to calculate the broadcast address for a subnet.
C#, .NET, Dev
 
Daniel Wernle 1.00

Internet and networks 

top
Title / Updated Author Score  
MaChat - a chat with a browser for LANs
Updated: 30 Jul 2002
This article shows how to create a Chat for Local Area Networks which uses the WebBrowser control to display the messages.
C++/CLI, VC7, .NET, Win2K, WinXP, Dev
 
Michael Mac 4.96
MC++ TCP server talking to MFC & MC++ TCP clients
Updated: 1 Jul 2002
Basic demonstration of the TcpListener/TcpClient classes.
C++/CLI, VC7, Windows, .NET1.0, MFC, Dev
 
Nish Sivakumar 4.92
SSL/TLS client/server for .NET and SSL tunnelling
Updated: 31 Jul 2003
SSL/TLS Client/Server classes for .NET that uses Windows SSPI for SSL/TLS protocol
C++/CLI, C#, .NET1.0, Win2K, Dev
 
Leon Finker 4.89
How to do Synchronous and Asynchronous web downloads
Updated: 28 Jun 2002
Explains the usage of WebRequest, WebResponse and related classes.
C++/CLI, VC7, Windows, .NET1.0, Dev
 
Nish Sivakumar 4.83
Packet Filtering in .NET
Updated: 19 Jul 2003
Class library to implement packet filtering funcionality in your .NET applications
C++/CLI, VC7, VC7.1, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, Dev
 
Jesus Oliva 4.83
An HTML5 Remote Desktop - Part I
Updated: 11 May 2010
A Remote Desktop software built on AJAX, JSON and HTML5
Win32, GDI, Ajax, Architect, Dev, Delphi
 
Gustavo Ricardi 4.38
Using TCP/IP or UDP to Communicate with Serialized Objects
Updated: 26 Sep 2005
An article on transfering any serialized object through client and server.
C++, C++/CLI, Windows, .NET, Visual-Studio, MFC, Dev
 
Roy Ganor 4.24
An HTML5 Remote Desktop - Part II
Updated: 13 Aug 2010
A Remote Desktop software built on AJAX, JSON and HTML5
C, Javascript, Windows, Ajax, jQuery, CEO, Architect, Dev, Design, Delphi, JSON
 
Gustavo Ricardi 4.00
How to create a simple proxy in Managed C++
Updated: 20 Apr 2002
How to create a simple proxy to parse HTTP to another server using Managed C++
C++/CLI, Windows, .NET1.0, Visual-Studio, Dev
 
Albert Pascual 3.98
Serial Port to Network Interface
Updated: 15 Mar 2009
Implementing a serial port to network user interface.
VC6, VC7, VC7.1, VC8.0, Dev
 
Paul Van Bellinghen 3.87
Stunner: A STUN Library and Client
Updated: 6 Feb 2008
Stunner is a simple STUN library on top of which a STUN client is built.
C++ (VC8.0), C, Windows, Win32, Dev
 
Hitesh Sharma 3.69
Sending mail in Managed C++ using SMTP
Updated: 25 Apr 2002
Sending mail in Managed C++ using SMTP
C++/CLI, VC6, VC7, .NET, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Albert Pascual 3.63
Using Asynchronous Sockets for Peer-to-Peer - CollaborativeNotes
Updated: 15 Dec 2007
This article presents a peer-to-peer application sample with asynchronous sockets
C# (C#2.0), Windows, .NET (.NET2.0), Dev
 
Filipe Pereira 3.25
Network Message
Updated: 1 Dec 2004
Netsend message in LAN
VC6, Win2K, MFC, Dev
 
Eswar_Illuri 2.57
Game Server Scanner
Updated: 22 Aug 2004
Port scanner to find game servers on a LAN.
C++/CLI, VC7.1, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
gfx_sikander 2.08
Easy Port Forwarding and Managing Router with UPnP
Updated: 24 Jun 2008
This article describes what port forwarding is. UPnP source code is also given.
VC6, VC7, VC7.1, VC8.0, Dev
 
upredsun 1.96

Internet & Network - LDAP 

top
Title / Updated Author Score  
An RFC 2253 Compliant Distinguished Name Parser
Updated: 27 Mar 2009
A set of classes to parse and manipulate LDAP distinguished names
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Pete Everett 4.81
Storer.ActiveDirectory - Active Directory User/Group Encapsulation Classes
Updated: 12 Apr 2007
A couple of classes to handle Users and Groups in Active Directory
C#2.0, Windows, .NET2.0, ASP.NET, Visual-Studio, GDI+, WebForms, Dev
 
John Storer II 4.79
Active Directory Tool
Updated: 25 Apr 2009
Active directory tool - helps manage active directory oparations (query, update and delete) with easy to use GUI
C# (C#3.0), .NET (.NET3.5), SQL-Server (SQL2005), Visual-Studio (VS2008)
 
Yair Rozenberg 4.60
GroupMembers
Updated: 21 Mar 2007
Enumerating and searching groups in Active Directory
C++, Windows, Visual-Studio, MFC, Dev
 
perle1 4.00
Implementing Interoperable LDAP Applications
Updated: 14 Apr 2002
Implementing Ldap wrapper classes for both W2K and Unix
C++, Win2K, Visual-Studio, MFC, Dev
 
esob 3.59

Internet & Network - MAPI 

top
Title / Updated Author Score  
Another simple MAPI class
Updated: 27 Feb 2004
Adding MAPI functionality to your application.
VC6, Win2K, WinXP, Win2003, Visual-Studio, MFC, Dev
 
Rob Manderson 4.95
MAPIEx: Extended MAPI Wrapper
Updated: 5 Dec 2009
A (hopefully) complete extended MAPI wrapper for WinXP, WinCE, and .NET
C#, VC7.1, eVC4.0, Mobile, .NET1.1, WinXP, MFC, VS.NET2003, VS2005, Dev
 
Noel Dillabough 4.94
Using MAPI properties and events in .NET with the MAPI Store Accessor
Updated: 24 Jan 2008
A simple WinForms application that shows MAPI folders and items in your mail profile.
C++/CLI, C# (C#2.0, C#3.0), VB (VB8.0, VB9.0), Windows (Win2K, WinXP, Win2003, Vista), .NET (.NET2.0, .NET3.0), Visual-Studio (VS2005, VS2008), Dev
 
Andrei Smolin 4.83
Sending Email using MAPI - A COM DLL
Updated: 29 May 2003
How to automatically send customized emails messages and attachments?
VC6, Win2K, WinXP, MFC, ATL, Dev
 
Aisha Ikram 4.80
Sending and receiving e-mails from your program
Updated: 5 Nov 2002
A simple reusable MAPI client
VC6, Win2K, MFC, ATL, Dev
 
Xiangyang Liu 刘向阳 4.71
Process Microsoft® Outlook® Messages Automatically (via App. or a NT Service).
Updated: 28 Apr 2001
An article showing you how to process (Outlook®) E-mail messages automatically by using an MFC dialog or NT service.
VC6, Win2K, MFC, Dev
 
Dan Madden 4.68
CMapi v1.01 - A MAPI Implementation
Updated: 3 Mar 2000
An MFC class to encapsulate sending mail using Simple MAPI.
VC6, MFC, Dev
 
PJ Naughter 4.65
CMapiAdmin - MAPI wrapper
Updated: 25 Jan 2000
A class to encapsulate extended MAPI functions.
VB6, VC6, MFC, Dev
 
Jason Troitsky 4.65
Programmatically adding attachments to emails
Updated: 18 Jan 2006
A technique for programmatically adding attachments to emails.
C++, Win2K, WinXP, Visual-Studio, MFC, WTL, Dev
 
David M Brooks 4.62
Junior Outlook
Updated: 23 Apr 2007
Send e-mails easily from your application using MAPI ( Messaging API ).
VC6, WinXP, MFC, Dev
 
Nibu babu thomas 4.59
Outlook 2000 bulk exporter
Updated: 22 Nov 2001
Escape the confines of Outlook 2000
VC6, Win2K, Visual-Studio, MFC, Dev
 
Justin Kirby 4.47
Using Account Management API (IOlkAccountManger) to List Outlook Email Accounts
Updated: 28 Aug 2008
An article on how to use the IOlkAccountManger to get email accounts configured in Outlook
C++ (VC8.0), Windows, COM, Dev
 
Ashutosh Bhawasinka 3.54

Internet & Network - MSMQ 

top
Title / Updated Author Score  
agsMSMQ v1.1 - A Message Queue Implementation
Updated: 19 Jan 2002
Class wrapper for Message Queue (MSMQ)
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Agus Kurniawan 4.83
Simple Example Demonstrating MSMQ Message Routing
Updated: 8 Apr 2008
This article demonstrates the use of writing reusable components, in this case, a message router, for forwarding messages from one Message Queue to another.
C# (C#1.0, C#2.0, C#3.0), .NET2.0, Win32, VS2005, Dev, QA, Design
 
Gupta_Prateek 4.41
Round Trip Messaging with SAFMQ
Updated: 24 Jan 2006
Describes the process for implementing a round trip, query-response message interaction with SAFMQ.
VC6, MFC, Dev
 
mattbattey 4.13
Accessing Outgoing Message Queues (MSMQ)
Updated: 16 Jan 2008
An article describing how to access messages in the Outgoing Message Queue.
C# (C#1.0, C#2.0), Windows (WinXP, Win2003), COM, Dev
 
M. Aamir Malik 3.75
Using MessageQueue in the .NET Framework 2.0
Updated: 24 Feb 2008
Provides access to a queue on a message queuing server.
VB (VB8.0), .NET (.NET2.0), Dev
 
Imran A Momin 3.44
Using a Message Queue Asynchronously in .NET Framework 2.0
Updated: 25 Feb 2008
Provides access to a queue on a Message Queuing server. We will see how to access it asynchronously.
VB8.0, .NET2.0, Dev
 
Imran A Momin 2.91
Sending Newsletters from MSMQ Using C# 2.0
Updated: 15 Nov 2007
This article provides sample code to use MSMQ to send newsletters.
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Pasan Yasantha 2.42
Chat Using MSMQ
Updated: 17 Nov 2008
Communation between two machines using MSMQ.
C#2.0, WinXP, ASP.NET, Dev
 
kapil_b_khadgi 2.29
Message queuing: A message notification system and a brief introduction
Updated: 21 Aug 2007
A simple application which can be a used for furture expansion and also an introcudtion to MSMQ.
C#, Windows, .NET, Visual-Studio, Dev
 
zezeziza1 2.20

Internet / Network - Network 

top
Title / Updated Author Score  
Simple Network Programming
Updated: 6 Dec 2011
A simple way to do network programming
VB.NET, .NET, Dev, Networking
 
formlesstree4 5.00
Using a NetworkStream with raw serialization, GZipStream, and CryptoStream
Updated: 26 Mar 2006
Using a NetworkStream with raw serialization, GZipStream, and CryptoStream.
C#, Windows, .NET, Visual-Studio, Architect, Dev
 
Marc Clifton 5.00
Unraveling the Netflix API - Part II - Accessing the Netflix Title Catalog
Updated: 9 Sep 2009
Demonstrates how to access the Netflix Catalog resources
C#, XML, .NET (.NET2.0), Visual-Studio (VS2005), Dev
 
NetDave 5.00
Unraveling the Netflix API - Part III - Accessing Subscriber Account Information
Updated: 9 Sep 2009
Demonstrates how to access the Netflix subscriber's account information
C#, Windows, .NET (.NET2.0), Visual-Studio (VS2005), Dev
 
NetDave 5.00
Unraveling the Netflix API - Part IV - Managing User Account Information
Updated: 28 Feb 2010
Demonstrates how to manage a Netflix subscriber's movie queue
C#, XML, Windows, .NET (.NET2.0), Visual-Studio (VS2005), Dev
 
NetDave 5.00
Network Shares and UNC paths
Updated: 11 Nov 2003
Classes to enumerate network shares on local and remote machines, and convert local file paths to UNC paths.
C#, .NET1.0, Win2K, WinXP, Visual-Studio, Dev
 
Richard Deeming 4.96
SharpPcap - A Packet Capture Framework for .NET
Updated: 14 Sep 2011
A framework for capturing, injecting and analyzing network packets for .NET applications based on the WinPcap packet capture driver
C#, Windows, .NET, Visual-Studio, Dev
 
Tamir Gal, chmorgan 4.93
sharpSsh - A Secure Shell (SSH) library for .NET
Updated: 29 Oct 2005
A C# implementation of the SSH2 protocol.
C#, VC7, .NET, Win2K, WinXP, Win2003, Visual-Studio, Dev, QA
 
Tamir Gal 4.88
Network Stuff (easy socket v3)
Updated: 2 Jun 2005
A class with event handlers for TCP, UDP or ICMP sockets; includes ping, traceroute, whois, ARP, and IPHelper functions and raw packets forging/ capturing.
C#, VC7, VC7.1, VC8.0, .NET1.0, .NET1.1, WinXP, VS.NET2003, Dev
 
rantanplanisback 4.88
C#/.NET Network File System (NFS) Server
Updated: 3 Jan 2012
A basic implementation of an NFS server in C#.
C#, Windows, .NET, Linux, Dev, udp, NFS
 
PeteBarber 4.86
Quick tool : A minimalistic Telnet library
Updated: 6 Jun 2007
Send commands to your servers from your programs using the Telnet protocol
C#2.0, Windows, WinMobile, .NET2.0, .NET3.0, VS2005, Dev, WinForm
 
Tom Janssens 4.85
WCF Killer
Updated: 11 Feb 2011
A simple high performance drop-in TCP protocol handler for client server communications with POCO objects and no messy proxy classes like WCF.
C#, .NET, Dev, Network
 
Mehdi Gholam 4.84
RawSocket Class-Create Network Monitoring (Packet Sniffing) Apps
Updated: 11 Apr 2002
A class for creating Network Monitoring Programs
C#, .NET1.0, Win2K, WinXP, Dev
 
Lyle Brown 4.83
Simple Network Status Monitor Example
Updated: 5 Jun 2011
Shows how to implement a system to generate events when network interfaces change.
C#3.0, C#4.0, Windows, .NET2.0, .NET3.0, .NET3.5, Win32, LINQ, Dev, Threading, multithreading
 
Simon Bridge 4.83
Search Engine for Local Area Network ( LAN )
Updated: 25 Jan 2007
Searches for files and folders shared over a Local Area Network ( LAN )
C#2.0, .NET2.0, WinXP, VS2005, Dev, WinForm
 
AmitDey 4.82
Ping and Traceroute
Updated: 21 Feb 2008
In this article, we will see how Ping and Tracert networking tools work and we will create our own replicas for them.
C++, Dev
 
Hitesh Sharma 4.82
An introduction to Microsoft's Peer-to-Peer Graphing technology
Updated: 9 Nov 2005
An introduction to Microsoft's Peer-to-Peer Graphing technology.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Adrian_Moore 4.80
Peer Group - Identities
Updated: 8 Feb 2006
Understanding Peer Group Identities and Microsoft's Peer-to-Peer technology.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 4.80
Wake-On-Lan Class
Updated: 27 Oct 2003
Class to wake up a remote machine by sending a Wake-On-Lan packet.
C#, Windows, .NET1.0, .NET1.1, Dev
 
mkruppa 4.75
A collection class for listing all the computers and servers in your network, with category information
Updated: 20 Sep 2006
A collection class for listing all the computers and servers in your network, with category information.
C#, .NET, Win2K, WinXP, Win2003, Visual-Studio, Dev
 
H. S. Masud 4.72
Net Spy: Your Network Spy
Updated: 16 Feb 2008
This is a Windows based tool to continuously monitor your shared folders in a network and generate a log for different folders.
C#2.0, .NET2.0, Dev
 
Abhijit Jana 4.71
The Simplest TcpServer
Updated: 19 Mar 2006
A really basic TCP server, just the core
C#, Windows, .NET2.0, VS2005, Architect, Dev
 
Marc Clifton 4.68
Retreiving a list of network computer names using C#
Updated: 26 Oct 2006
An article which describes how to obtain a list of network computer names using C# and the NetServerEnum function from the Netapi32.dll.
C#, Windows, .NET1.1, .NET2.0, VS.NET2003, VS2005, Dev
 
Sacha Barber 4.66
Network computer picker control
Updated: 15 Jul 2004
A Windows class library for selecting networked computers.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Marc Merritt 4.63
Implementation and Subscription for the SENS Network Events Component
Updated: 24 May 2006
How to detect network connections using the SENS Network Events component.
C#, Windows, .NET, Visual-Studio, COM, Dev
 
--==## Andy74 ##==-- 4.58
How to Scan Computers in Your Network Using the Registry or WMI
Updated: 24 Oct 2007
A command-line tool that scans computers in your network using either a remote registry connection or the Windows Management Instrumentation (WMI).
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Henrik Thomsen 4.47
IPConfigEx
Updated: 5 Jul 2007
A simple hybrid between the ipconfig and the arp commands.
VC6, VC7, VC7.1, Win2K, WinXP, Win2003, MFC, STL, VS.NET2003, VS2005, Dev
 
Zoltan Balazs 4.46
Network Sniffer and Connection Analyzer
Updated: 30 Jan 2005
Network sniffer and connection analyzer.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
syanar 4.38
File Synchronization using a NAnt Task
Updated: 3 May 2006
Codes for file synchronization between local and local/remote target directory trees that can be run under the NAnt or a console are provided.
C#, SQL, Windows, .NET1.1, Visual-Studio, SQL2000, DBA, Dev
 
S. Ying 4.33
Server Traffic Redirector
Updated: 21 Oct 2005
An article on how to redirect external network traffic to an internal network.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Tomas Brennan 4.33
Peer Graph - Exchanging Private Data
Updated: 12 Dec 2005
Exchanging private data in a peer graph using Microsoft's Peer-to-Peer technology.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 4.23
Associating Attribute Meta-Data in a Peer Graph using Microsoft's Peer-to-Peer technology
Updated: 6 Jan 2006
Associating attribute meta-data in a Peer Graph using Microsoft's Peer-to-Peer technology.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 4.17
Peer Group - Create, Open, and Delete
Updated: 9 Feb 2006
Creating, opening and deleting Peer Groups using Microsoft's Peer-to-Peer technology.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Adrian_Moore 4.09
Peer Collaboration - Contacts
Updated: 24 May 2006
Contact Management using Microsoft's Peer-to-Peer Collaboration technology in Windows Vista.
C#, .NET2.0, Vista, VS2005, Dev
 
Adrian_Moore 4.00
A Network Based Multi-Player Eater Game
Updated: 10 Jan 2005
An article on network game programming.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Abfam 3.97
Wake On Lan sample for C#
Updated: 27 Oct 2003
Wake On Lan utility using C#.
C#, .NET1.0, Win2K, WinXP, Visual-Studio, Dev
 
maxburov 3.70
Azure Virtual Network - Connecting Local Database
Updated: 27 Sep 2011
Windows Azure Virtual Network allows us in establishing IP-based network connectivity between on-premises and Windows Azure resources. In this example we can learn the basics to connect our local SQL Server database with the Cloud application by using TCP port.
C#, Windows, Azure
 
Rajasekhar_Pediredla 3.67
MFC Telnet Application
Updated: 8 Nov 2007
The article demonstrates an MFC GUI Telnet application with server capabilities for incoming connections support.
VC8.0, WinXP, Vista, MFC, VS2005, Dev
 
Chesnokov Yuriy 3.60
Simple Network Scanner
Updated: 24 Apr 2008
Scans given workgroup for computer names, with IP and MAC addresses
C# (C#1.0, C#2.0, C#3.0), .NET (.NET2.0), Visual-Studio (VS2005), Dev
 
mamirbalouch 3.56
Toggle Network Connections
Updated: 31 Oct 2007
A class that can enable/disable a Local Area or wireless connection.
VB.NET, Windows, .NET2.0, VS2005, Dev, WinForm
 
Seth Rowe 3.46
HostName, IP, and MAC Address
Updated: 23 Jan 2005
This will guide you to understand and trace network host information, IP, and MAC address information.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
MahendranG 3.38
A simple class for using serial COM ports
Updated: 13 Oct 2008
This article introduces and explains the use of the serial_interface class. An easy way to add serial port interfaces to your C++ code.
C++ (VC9.0), Windows, COM, Dev
 
Jason Hamilton 3.33
Collecting Remote System Information With WMI
Updated: 15 Nov 2004
An article explaining how to connect and collect information from a remote computer using the WMI interface.
C++, C#, VB, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Crazyloon (N. Smith) 3.21
Trouble-free Network Communication - XNet
Updated: 12 Feb 2006
Want a quick solution to setting up basic network communication between two machines? Check XNet out...
C++ (VC7.1), Windows (WinXP), Visual-Studio (VS.NET2003), MFC, Dev
 
Gabriyel 3.06
Peer Collaboration - Applications
Updated: 24 Apr 2006
Registering applications using Microsoft's Peer-to-Peer Collaboration technology, in Windows Vista.
C#, Windows, .NET, VS2005, Dev
 
Adrian_Moore 2.75
List Peer Servers and their IP Addresses inside a Workgroup.
Updated: 26 Aug 2002
How to list the peer servers and IP addresses in the workgroup - A simple approach.
C#, VC6, VC7, .NET, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Ragavendran Vaidhyanadhan 1.91
Enumerate All of the IP Addresses on the Network W/O ActiveDirectory
Updated: 6 May 2004
This will enumerate all of the IP Addresses on the network without using ActiveDirectory.
C#, .NET, Win2K, WinXP, Win2003, Visual-Studio, Dev
 
MichaelCoder 1.36
PortQry Implementation using TcpClient, Socket, and Exception Handling
Updated: 3 Jun 2010
Query an endpoint service via TCP and determine if it is available for connection, refusing connectivity, or filtered by a firewall.
C# (C#2.0), .NET (.NET2.0), Dev
 
xk2600  

Internet / Network - NNTP 

top
Title / Updated Author Score  
NNTP library that supports post retrieval with attachments and a lot more
Updated: 24 Mar 2004
NNTP library for .NET
C#, Windows, .NET, Visual-Studio, Dev
 
HKcow 4.25
Handling basic NNTP commands
Updated: 5 Aug 2003
A C# class to wrap around some of the basic NNTP commands.
C#, .NET, Win2K, WinXP, Win2003, Visual-Studio, Dev
 
TY Lee 4.00
Getting the list of groups in a news server
Updated: 1 Jul 2003
Introduction to Socket programming
C#, Windows, .NET1.0, Dev
 
Ly Hoang Hai 3.75

Internet & Network - Peer to Peer 

top
Title / Updated Author Score  
VideoNet
Updated: 29 Jun 2004
Peer to peer video conference application.
VC6, WinXP, MFC, Dev
 
Nagareshwar 4.92
Talk2Me: Java instant messenger
Updated: 3 Feb 2004
A near to perfect clone of the very popular Yahoo messenger. Purely written in Java and SWING, this messenger also uses the capabilities of JNI and JAWT to provide some features.
C++, Java, Java SE, Visual-Studio, JNI, Swing, Dev
 
alfreds 4.72
Voice conference using Multicasting Technique
Updated: 31 Jul 2003
Using multicasting to create a voice conference
VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Nagareshwar 4.29
Peer-to-Peer Communicator and File Transfer
Updated: 14 Aug 2001
Get youself a peer-to-peer communicator and exchange files across a network.
VC6, Win2K, MFC, Dev
 
Marat Bedretdinov 4.23
FiveLoaves v1.0
Updated: 2 Jul 2002
FiveLoaves is an Internet utility designed to meet the most common needs of internet users - primarily secure connectivity
VC6, Win2K, WinXP, MFC, Dev
 
Brian Aberle 3.96
Windows Media video chatting tool
Updated: 20 Feb 2004
Videochat app using Windows Media technology.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
mystro_AKA_kokie 3.35
Peer2Peer socket sample
Updated: 30 Dec 2004
A fully error handled and easy to use peer2peer2 library.
VC6, Win2K, WinXP, MFC, Dev
 
mohamad hajibegloo 3.16

Internet & Network - Proxy / Firewall 

top
Title / Updated Author Score  
Internet Traffic Firewall and Sniffer
Updated: 23 Oct 2007
The article demonstrates internet packets interception with firewall capabilities based on IpFilterDriver driver and sending TCP/UDP/ICMP packets using raw sockets with IP spoofing support.
VC8.0, WinXP, MFC, VS.NET2003, VS2005, Dev
 
Chesnokov Yuriy 4.89
Negotiating proxies in the form of a Whois client
Updated: 19 May 2006
An article on dealing with proxies.
C++, Win2K, WinXP, Visual-Studio, MFC, Dev
 
Fred Ackers 4.89
Simple Reverse Proxy in C# 2.0 (description and deployment)
Updated: 28 Nov 2008
This article describes how to develop a reverse proxy in C# using the IIS HTTPHandlers.
C# (C#1.0, C#2.0, C#3.0), .NET, ASP.NET, IIS (IIS5.1, IIS6, IIS7), Dev
 
Denis Voituron 4.86
Developing Firewalls for Windows 2000/XP
Updated: 3 Nov 2003
An article about developing Firewalls for Windows 2000/XP
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Jesus Oliva 4.85
An Adventure: How to implement a Firewall-Hook Driver?
Updated: 28 Oct 2004
Firewall-Hook driver is a completely unknown method to develop simple packet filtering applications. With this article, I want to tell you how this driver works and what you need to do to use it in your applications.
C, VC6, Win2K, WinXP, Win2003, MFC, Dev
 
Jesus Oliva 4.82
SOCKS Proxy + SSL Tunnel
Updated: 22 Feb 2000
A full featured SOCKS 4 & 5 proxy server written in Java.
Java, Java SE, Dev
 
Svetoslav Chekanov 4.68
Writing a Parental Control Software for Windows
Updated: 8 Jul 2010
Writing a parental control software: The beginning of the adventure
C++/CLI, C#, Windows, Architect, Dev, Win-SDK, Virtualization, virtual-machine
 
Pascal Ganaye 4.67
HTTP Tunneling
Updated: 14 Jun 2000
This article describes how to open arbitrary TCP connections through proxy servers
VC6, Win2K, MFC, STL, Dev
 
Alex Turc 4.66
Change Internet Explorer 7 Proxy Setting without Restarting Internet Explorer
Updated: 4 Oct 2007
An article to explain how to change Internet Explorer 7 settings with Registy & WinINet API
C#2.0, .NET2.0, WinXP, VS2005, Dev
 
Manuel C 4.61
Using PAC files proxy
Updated: 4 Nov 2005
This article explains how to set a proxy using PAC files.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
Glaxalg 4.56
Reverse Proxy in C# .NET v2.0
Updated: 20 Apr 2007
Implementing Reverse Proxy Server in C# .NET v2.0 through HTTP Handler in IIS
C#2.0, Windows, .NET2.0, Dev
 
Paramesh Gunasekaran 4.39
Simple Packet - Filter Firewall
Updated: 27 Sep 2004
A simple packet filtering based open source Firewall. It uses Filter hook driver for its basic working
VC6, Win2K, WinXP, MFC, Dev
 
sudhirmangla 4.35
Programmatically disable/enable Windows firewall
Updated: 24 Jan 2007
This article teaches you how to disable and enable your Windows firewall programmatically.
VB, Windows, .NET, Visual-Studio, Dev
 
petersunde 4.28
HTTP Tunneling (HTTP Proxy Socket Client)
Updated: 14 Aug 2004
An easy way to pass through HTTP Proxy to connect to outside world, in a LAN.
VC6, Windows, MFC, Dev
 
Akash Kava 4.22
Bypass Restricted Firewall / Proxy using HTTP Tunneling and SSL Bridge
Updated: 2 Aug 2009
How to access any restricted web site from behind firewall Proxy using HTTP tunneling and SSL bridge
HTML, Java SE (JavaSE6, J2SE5, J2SE4, J2ME, J2EE), Swing
 
Asu-H 3.86
Useful Lite Effective Firewall .NET
Updated: 5 Jan 2007
Take control of your computer using iphlpapi.dll
C, Windows, Visual-Studio, Dev
 
Oz Jundi 3.67
C# class for connecting via a SOCKS5 Proxy Server
Updated: 26 Jan 2004
C# class for connecting via a SOCKS5 Proxy Server
C#, Windows, .NET, Visual-Studio, Dev
 
ZAhmed 3.10
Firewall using Vista's Windows Filtering Platform APIs
Updated: 2 Sep 2008
An article on using Windows Filtering Platform of Vista to write a simple firewall
C++, C, Windows, Win32, Dev
 
MaheshSatya 3.06
A multi-threaded HTTP proxy server based on Win32
Updated: 5 Dec 2007
Demostration of a multi-threaded HTTP proxy server implemented with WinSock on Windows.
VC6, VC7, VC7.1, VC8.0, Win2K, WinXP, Win2003, Vista, Win32, Dev
 
zlike 3.00
Socks Wrapper
Updated: 18 Jan 2005
Establishes socket through Socks Proxy version 4 and version 5.
VC6, VC7, VC7.1, VC8.0, Win2K, WinXP, Win2003, Visual-Studio, MFC, ATL, COM, Dev
 
M Ravi Kiran 2.27
Access proxy / firewall restricted internet sites using tunelling or onion routing
Updated: 4 Nov 2005
This article is intended for network administrators and internet users. It shows how users can bypass the firewall to get access to the restricted internet sites. This article is just an overview and does not cover the technical details.
C++, Windows, Visual-Studio, MFC, Dev
 
Anup Shinde 2.23
XML Serialization and Firewalls
Updated: 7 Jul 2007
A sample on transmitting binary content over firewalls
C#2.0, Windows, .NET2.0, ASP.NET, WebForms, VS2005, Dev, Design, WinForm
 
carlosmsr 2.13

Internet & Network - Regular Expressions 

top
Title / Updated Author Score  
Simple and Useful JavaScript Regular Expression Tutorial
Updated: 1 Jun 2011
This post discusses some simple and useful JavaScript Regular Expressions
Javascript
 
Afshin Mehrabani 3.56
Use regular expression in your C++ program
Updated: 25 Jan 2001
how to use the Microsoft regular expression object in your C++ program
VC6, Win2K, Visual-Studio, MFC, ATL, Dev
 
Sherwood Hu 2.88

Remoting 

top
Title / Updated Author Score  
Remoting Compression Channel Sink
Updated: 12 Nov 2008
An article explaining a Remoting extensible channel sink architecture and an implementation of the compression channel sink.
C# (C#1.0, C#2.0, C#3.0), .NET2.0, .NET3.0, .NET3.5, Architect, Dev, Design
 
aschmidt 5.00
Grid Computing Using C# Script and .NET Remoting
Updated: 10 Apr 2010
Using the C# script engine inside a network using .NET Remoting.
C#, Windows, .NET3.5, Dev
 
Ali Aboutalebi 5.00
Running Any Command Line exe Remotely Using the Process Class
Updated: 23 Dec 2011
Builds on the existing RunRemote project to run commands on a remote server.
C#, Windows, .NET2.0, Win32, COM, Dev, SysAdmin, redirecting, Commands, Network, TCP/IP, .bat, RemoteControl, Services, Console
 
Dan Randolph 5.00
Remoting Management Console
Updated: 11 Apr 2003
This is a MMC Snap-in to manage a remoting host process and its configuration file. Like the COM+ catalog, the Remoting Management Console will create and administrate the host process to publish your remoting objects.
C#, .NET1.0, Win2K, WinXP, Dev
 
Roman Kiss 5.00
Two-way Remoting with Callbacks and Events, Explained
Updated: 19 Jul 2006
A demonstration of how separate applications on different machines are able to effectively communicate with one another.
C#, Windows, .NET, Visual-Studio, Architect, Dev
 
marcel heeremans 4.98
Watchdog Management
Updated: 1 Jul 2003
The Watchdog Management gives your architecture an event driven mechanism to control your business processing within the specified time. Using the Remoting Watchdogs allow to distribute an exception or acknowledge result asynchronously in the remoting manner.
C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, Dev
 
Roman Kiss 4.97
Remoting Probe
Updated: 10 Sep 2002
Using the remoting probe to publish details of the "talking" between the remoting object and its consumer. Here is its design, implementation and usage in the Remoting Analyzer Studio.
C#, .NET1.0, Win2K, Dev
 
Roman Kiss 4.96
Web-Cam SecureChat
Updated: 12 Mar 2010
This article will explain how to create a simple chat program using this remoting technology, which supports web-cam and sending files.
C#3.0, .NET3.5, Dev
 
Paulo Zemek 4.93
.NET Remoting with an easy example
Updated: 12 Jul 2006
This article explains .NET remoting with a simple example. The article tries to cover all aspects of remoting in a brief way, whereas the sample project is a very simple example of remoting.
C#, .NET, WinXP, Visual-Studio, Architect, Dev
 
Syed Nadeem ul Hassan 4.90
Step By Step Guide to Factory Pattern Client Activated Object (CAO) Creation
Updated: 8 Sep 2003
Guide to creating a CAO object through an SAO class factory
C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Allen Anderson 4.90
Setting Exchange Folder Permissions Remotely
Updated: 3 Feb 2005
A way to remotely set permissions on folders in the Exchange Server using an Exchange SDK-based COM in-proc wrapped into a .NET class and exposed to a client with Remoting technique.
C++, C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Igor Ladnik 4.90
Building a Distributed Object System with .NET and J2EE Using IIOP.NET
Updated: 1 Jul 2003
This article demonstrates the use of IIOP.NET
C#, Java, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, Visual-Studio, Dev
 
Patrik Reali 4.88
Instant Messaging / Chat using Remoting, for LAN
Updated: 13 Jul 2006
Instant messaging / chat using Remoting, for LAN.
.NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
AmitDey 4.88
MSMQ Channel - New Version
Updated: 20 Jun 2003
New version of the MSMQ Custom Channel for the event driven distributed architecture.
C#, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Roman Kiss 4.88
Remoting Proxy Support for Rhino Mocks
Updated: 17 Dec 2007
Rhino Mocks version 3.3 can mock any MarshalByRefObject.
C# (C#1.0, C#2.0, C#3.0), VB (VB7.x, VB8.0, VB9.0), .NET (.NET2.0, Mono, DotGNU, .NET3.0, .NET3.5), ASP.NET, Architect, Dev, Design
 
Ivan Krivyakov 4.88
.NET Remoting Customization Made Easy: Custom Sinks
Updated: 20 May 2003
.NET Remoting customization – it doesn't have to be so hard!
C#, Windows, .NET1.0, Dev
 
Motti Shaked 4.87
Remoting with GUIs
Updated: 6 Jun 2005
This article illustrates how remoting is used in a GUI environment. It illustrates how a server can reflect what is happening to a remote object that it controls. The use of synchronous and asynchronous calls is also examined along with code design improvements.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Frank McCown 4.84
A Simple But Useful Example of .NET Remoting Part 2
Updated: 16 Nov 2004
Introduces .NET remoting via a simple but potentially useful example.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
Lim Bio Liong 4.83
Extensible .NET remoting framework
Updated: 30 Apr 2003
This article is about installable transport connections
C#, Windows, .NET1.0, .NET1.1, Dev
 
Wytek Szymanski 4.83
Absolute beginner's introduction to remoting
Updated: 4 Apr 2002
Introduces .NET remoting and the use of asynchronous callbacks using simple code snippets
C#, Windows, .NET1.0, Visual-Studio, Dev
 
Nish Sivakumar 4.82
Push and Run .NET Code on Remote Machine
Updated: 10 Mar 2005
Execute an assembly on a remote machine without any special hooks - works on existing assemblies!
C#, .NET1.1, .NET2.0, Win2K, WinXP, Win2003, PocketPC-2002, WinMobile2003, VS.NET2003, Dev
 
Jim Wiese (aka Spunk) 4.82
Workflow Adapter/Connector Pair
Updated: 19 Apr 2007
The Workflow Adapter/Connector pair are custom WF Activities for a Business-To-Business Logical Connectivity based on the Interface Contract. The connectivity handles the invoking and consuming of Workflows, Remoting objects, WCF Services in the transparent manner based on the configuration.
C#2.0, Windows, .NET3.0, WCF, VS2005, Dev
 
Roman Kiss 4.81
Simple but potentially useful example of .NET Remoting
Updated: 21 Nov 2004
Introduces .NET remoting via a simple but potentially useful example.
C#, VC7, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
Lim Bio Liong 4.80
.NET Remoting and Cross Domain Marshalling
Updated: 10 Apr 2006
An article about how to marshal a remote client request from one AppDomain to another.
C#, Windows, .NET2.0, VS2005, Dev
 
Wytek Szymanski 4.79
Persistent .NET Events in Stateless Remoting Server
Updated: 5 Jan 2003
This article demonstrates usage of .NET events in the stateless remoting server, thus allowing to use .NET event mechanism in highly available and scalable distributed applications.
C#, Windows, .NET1.0, Dev
 
Alexander Arlievsky 4.76
Introduction to Remote Administration and Monitoring Systems
Updated: 21 Oct 2009
Introduction to Remote Administration and Monitoring Systems
C++, C#, Windows, PHP, Dev, Virtualization
 
csrss 4.75
Remoting Architecture in .NET
Updated: 26 Jul 2007
An introduction to the .NET Remoting architecture.
C#, XML, Windows, .NET2.0, VS2005, Dev
 
Skpananghat 4.74
.NET Remoting: Passing through the obstacles path from version 1.0 to 1.1
Updated: 31 Mar 2004
Houston, we have a problem. One small step for mankind, one Giant irritation for developers.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Cohen Shwartz Oren 4.73
Remote Mail (.NET Remoting + MAPI)
Updated: 30 Jun 2003
This project is supposed to be a part of messaging-enabled server-client applications. Users in local network will be able to send messages without Internet access and without mail client installed and configured through server.
C#, VC7, .NET1.0, .NET1.1, Win2K, WinXP, Win2003, Dev
 
WiB 4.71
Applying Observer Pattern in .NET Remoting
Updated: 10 Dec 2002
This article describes the steps to develop simple chat applications using .NET remoting and the Observer pattern.
C#, .NET1.0, Win2K, WinXP, Dev
 
Liong Ng 4.71
AppLogger, a Simple Distributed Application Logger - Part 2 (Using MSMQ)
Updated: 15 Jul 2004
Concluding article for simple distributed application logging
C#, .NET, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
sebma 4.67
Mixing ACE/TAO and .NET Clients and Servers
Updated: 13 Dec 2005
Demonstrates mixing C++ ACE/TAO clients and servers with C# IIOP.NET clients and servers on Windows and Linux.
C++, C#, .NET, WinXP, Visual-Studio, Dev
 
Stephen Bogner 4.66
Dynamic Generation of Interfaces Using a Pool of Objects
Updated: 3 Oct 2007
An article introducing a mechanism for on-the-fly interface generation
C#2.0, Windows, .NET, Visual-Studio, Dev
 
Omer Tripp 4.64
A Remoting Event (Simple and Efficient for Enterprise Solutions)
Updated: 21 Aug 2006
This article contains the simplest solutions for: the security problem for DelegateSerializationHolder, the IO problem, and the messaging speed problem. Note: Messaging speed problem will appear when your application has worked for a long time.
C#1.0, C#2.0, Windows, .NET1.0, .NET1.1, .NET2.0, VS.NET2003, VS2005, Dev, WinForm
 
Hossein Ghahvei Araghi 4.64
Hosting multiple services in separate AppDomains
Updated: 20 Jun 2007
An article that discusses hosting multiple services in separate AppDomains
C#2.0, Windows, .NET2.0, Visual-Studio, Dev
 
Wytek Szymanski 4.61
Pfz.Remoting - Stateful Remoting by interface
Updated: 29 Oct 2009
This article explains the concept of a stateful remoting framework capable of doing the remoting of any object by interface, and how to use the classes.
C#3.0, .NET3.5, Dev
 
Paulo Zemek 4.60
How to stop a service using .NET Remoting
Updated: 31 Jan 2006
This article summarizes techniques on stopping a service without terminating the hosting process.
C#, Windows, .NET1.1, VS.NET2003, Architect, Dev
 
Tamas Koszoru 4.60
.NET Remoting Relay Server
Updated: 5 Jul 2006
An article about re-deploying remote services with the help of a relay server.
C#, Windows, .NET2.0, VS2005, Dev
 
Wytek Szymanski 4.60
AppLogger, a Simple Distributed Application Logger - Part 1
Updated: 6 Jul 2004
An article on distributed application logging
C#, Windows, .NET1.0, VS.NET2003, Dev
 
sebma 4.56
Chaining channels in .NET Remoting
Updated: 5 Aug 2002
This article describes how to design and implement remoting over chained channels (standard and custom) using the logical url address connectivity.
C#, .NET1.0, Win2K, WinXP, Dev
 
Roman Kiss 4.50
Remote Execution Using .NET Remoting
Updated: 3 Jan 2006
Using .NET Remoting to create a client-server application which takes advantage of using Asunchronous Callback methods.
C#, XML, Windows, .NET1.1, VS.NET2003, Dev
 
Majid Shahabfar 4.50
Chat Application with Windows Services, .NET Remoting in C#
Updated: 13 Aug 2009
A chat application with Windows Services, .NET Remoting in C#.
C#1.0, C#2.0, C#3.0, Windows, .NET2.0, Dev, WinForm
 
Nadeem Alvi 4.50
.NET Remoting Sample
Updated: 14 Apr 2005
Shows how to use .NET Remoting for beginners.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Helmut Güldenagel 4.49
Laptop Backup
Updated: 19 Jun 2005
A file backup system using remoting.
C#, VC7.1, .NET1.0, .NET1.1, WinXP, VS.NET2003, Dev
 
pseudonym67 4.49
.NET Remoting – Basic Maneuvers
Updated: 6 Oct 2003
A tutorial on .NET Remoting
C#, Windows, .NET1.0, Dev
 
raymond.fung, Norman Fung 4.45
Dynamic insertion of a client channel sink provider
Updated: 10 Apr 2003
Workaround to specify a desired channel for connecting to a remote object
C#, Windows, .NET1.0, Dev
 
Wytek Szymanski 4.42
Just .NET Remoting
Updated: 28 Aug 2007
The simplest .NET Remoting project possible.
C#2.0, Windows, .NET2.0, VS2005, Dev
 
redredlobster 4.35
A Bare Bones Introduction to Remoting - The Simplest Working Sample
Updated: 18 Jan 2006
A working remoting sample. Ready to use in your projects.
C#, .NET, Win2K, WinXP, Win2003, Visual-Studio, Dev
 
Chris Levin 4.29
.NET Remoting: design decisions and best practicies
Updated: 7 Dec 2005
An article on how to go about your .NET remoting design choicies and development specification upon your requirments.
C#, Windows, .NET, Visual-Studio, Architect, Dev
 
alaac# 4.27
.NET Remoting Using Broker Pattern
Updated: 23 Feb 2005
.NET remoting using Broker pattern.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Thoths 4.24
A .NET Remoting Component Server
Updated: 5 Jun 2006
An article about a simple and installable component server.
C#, Windows, .NET2.0, VS2005, Dev
 
Wytek Szymanski 4.20
Simple Sample for .NET Remoting
Updated: 14 Feb 2007
This article is for beginners
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Manoj Kumar Raju 4.17
Delegate Remotable Objects in Simple English (Really, it's that simple)
Updated: 26 Jun 2003
Made easy: How to solve the FileNotFoundException error when Remoting.
C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Daniel Ang Chee Meng 4.15
The case for a channel-schema concept
Updated: 17 May 2003
An article about .NET remoting channel schemas
C#, Windows, .NET1.0, Dev
 
Wytek Szymanski 4.13
Remoting from IIS Hosted component to ASP.NET Client application
Updated: 17 Apr 2003
A walkthrough to set up a remoting server app on IIS, consumed by an ASP.NET client web application.
C#, .NET, Win2K, WinXP, Visual-Studio, Dev
 
Mads Nissen 4.07
Using Windows Controls Remotely With .NET Remoting
Updated: 3 Apr 2007
The article describes how to share windows control functionality using .NET Remoting
C#2.0, Windows, .NET2.0, Dev
 
Hossein Ghahvei Araghi 4.00
Implementing a Publisher/Subscriber model for .NET Remoting
Updated: 13 Jun 2005
An article about event propagation in a distributed environment.
C#, Windows, .NET1.1, VS.NET2003, Dev
 
Wytek Szymanski 3.85
.NET Remoting : Long-duration invocations
Updated: 7 Oct 2003
Sometimes server needs to perform lengthy calculations in reply to the client’s request. If such calls are rare or do not take too much time, it’s not a problem. If your solution shows a tendency to have about 20-30 such invocations being performed concurrently at the same time, you should read this
C#, Windows, .NET1.0, Dev
 
Dmitry Belikov 3.78
Remote Controlled Windows Application
Updated: 1 Jul 2004
How to let your Windows application be remote controlled
C#, Windows, .NET1.0, .NET1.1, VS.NET2003, Dev
 
Joel Brandenberger 3.58
Remote methods and events in C#
Updated: 6 Sep 2003
An article on Remoting in C#
C#, Windows, .NET, Visual-Studio, Dev
 
san77in 3.48
.NET Remoting Message Redirection Channel Sinks
Updated: 20 Jun 2003
An upper logic layer transparent way to redirect .NET remoting calls, enabling exposure of .NET remoting services behind firewall/NAT, to anywhere.
C#, VC7, VC7.1, Windows, .NET1.0, .NET1.1, Dev
 
zhi 3.48
TCP Remoting Windows Service Host with Server GC
Updated: 14 Apr 2004
Implement Server GC for TCP Remoting Host.
C#, VC7.1, .NET1.1, WinXP, Win2003, ATL, VS.NET2003, Dev
 
jqd2001 3.40
RemoteConsole
Updated: 28 Aug 2007
Remote console allows to send commands to a remote computer located on the Internet
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Maze 3.20
Socket stream redirection using .NET remoting
Updated: 4 May 2004
Redirecting socket stream over HTTP channel with .NET remoting.
C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Navise 3.17
.NET Remoting - Events. Events? Events!
Updated: 3 Nov 2003
You have the server and several clients. You want the server to fire an event and all of the clients or only some specific must receive it. This article describes several approaches to the problem.
C#, Windows, .NET1.0, Dev
 
Dmitry_Belikov 3.00

Internet & Network - Security 

top
Title / Updated Author Score  
Build your own cryptographically safe server/client protocol
Updated: 21 Jun 2006
This article presents all you need to implement your own secure protocol using variable keysize RSA encryption/decryption, digital signing, multi precision library, Diffie-Hellman key exchange, Rijndael, and more. Everything is converged into a secure IOCP client/server chat server.
VC6, Win2K, WinXP, Visual-Studio, MFC, Dev
 
spinoza 4.95
WinINet Test Application
Updated: 12 Apr 2008
A WTL application to test asynchronous WinINet functionality.
C++, Windows (WinXP, Win2003), Visual-Studio (VS2005), WTL, Dev
 
Gene OK 4.77
MonitorIPScanner
Updated: 24 Apr 2007
Article to control and monitor system features.
VC8.0, Windows, Visual-Studio, MFC, Dev
 
Shanmuga Sundar.V 4.54
Network Security Fundamentals
Updated: 22 Sep 2002
The first in a series on network security for web developers
C++, .NET1.0, Win2K, WinXP, ASP, ASP.NET, Visual-Studio, MFC, Dev
 
Megan Forbes 4.50
PortScanner : Efficient TCP port scanner based on popular TCP Half Open scanning method
Updated: 17 Jun 2004
A TCP port scanner
VC6, Windows, MFC, Dev
 
Nagareshwar 4.46
HTTP Request Query String Protection
Updated: 9 Feb 2008
Add one layer of security to your Web application
C#, SQL, .NET1.1, .NET2.0, WinXP, Vista, .NET3.0, ASP.NET, Visual-Studio, Architect, Dev, Design
 
Riad MS Afyouni 4.44
SeQureLayerProxy
Updated: 7 May 2002
Adding more privacy to users of existing messengers (yahoo only at this stage)
VC6, Win2K, WinXP, MFC, Dev
 
Alboaie Sînicã 4.25
Single Sign-On with MSN Protocol 15
Updated: 24 Mar 2008
How to authenticate with your MSN account through SSO and MSNP15.
C# (C#1.0, C#2.0, C#3.0), Windows, .NET, Dev
 
dasd wdawdq 3.29
MYSQLIDS - A quicklook approach to Intrusion Detection Systems
Updated: 6 Jun 2004
An IDS scenario using SNORT, Mysql, MyODBC and MYSQLIDS
VC6, Win2K, WinXP, MFC, MySQL, Dev
 
robert k lewis 3.25
Network Security for Small and Medium sized Businesses
Updated: 6 Feb 2005
This article will give beginners in network a simple Security strategy for network security for their small businesses and home use. These ideas were developed for our own small business network.
C++, Windows, Visual-Studio, MFC, CEO, Architect, DBA, Dev
 
slw1234@sbcglobal.net 3.00

Internet & Network - Third-party libraries (free) 

top
Title / Updated Author Score  
CGoogle: A Google Search class
Updated: 8 Dec 2005
A simple class to perform Google searches without the official Google API.
VC6, MFC, Dev
 
Stuart Konen 4.93
Serial communication for Win32 with modem support
Updated: 13 Feb 2002
Free source code (C++) for WIN32 serial communication. Manages also a modem. Example project provided.
VC6, VC7, Win2K, WinXP, MFC, Dev
 
Thierry Schneider 4.83
Event Based Socket Streams: SocketLib
Updated: 1 Feb 2011
A C++ TCP socket stream library.
C++, Windows, Linux, Dev, Networking
 
Cem Kalyoncu 4.77
Programmatically Upload Pictures to Picasa
Updated: 11 Nov 2011
Quick and efficient way to upload an entire folder to Picasa / Google+
Linux
 
Lino Barreca 4.75
Unraveling the Netflix API - Part I - Netflix API Basics
Updated: 9 Sep 2009
How to use the Netflix APIs
C#, .NET, Visual-Studio (VS2005), Dev
 
NetDave 4.67
The Code Project Kevin Bacon Game (Part 3) - Unedited
Updated: 28 Jun 2008
A Code Project orientated Kevin Bacon game utilising the CodeProject.dll
C#, SQL, Windows (Win2K, WinXP, Win2003, Vista), .NET (.NET2.0, .NET3.0, .NET3.5), Win32, Win64, CEO, Architect, DBA, Dev, QA, Design
 
Derek Bartram 4.48
Use of free SocketPro package for creating super client and server applications
Updated: 23 Feb 2002
A set of socket libraries for writing distributed computing applications over the internet
VB6, VC6, Win2K, WinXP, MFC, ATL, Dev
 
Yuancai (Charlie) Ye 4.46
A Code Project Article Information Library (Part 2) - Unedited
Updated: 1 May 2008
This library provides a framework for using Code Project article information in applications, and provides a utility for extracting user information
C#, Windows (Win2K, WinXP, Win2003, Vista), .NET (.NET2.0, .NET3.0, .NET3.5), Win32, Win64, Architect, Dev
 
Derek Bartram 4.18
Sample tutorial about application of SocketPro for client and server sides development
Updated: 23 Feb 2002
Development guide with SocketPro
VB6, VC6, Win2K, WinXP, MFC, ATL, Dev
 
Yuancai (Charlie) Ye 3.50
Fundamentals about data communication using socket with SocketPro
Updated: 23 Feb 2002
Socket, Data communication, internet/intranet, non-blocking
VC6, Win2K, WinXP, Visual-Studio, MFC, ATL, Dev
 
Yuancai (Charlie) Ye 3.24
A Code Project Article Information Library (Part 1) - Unedited
Updated: 27 Apr 2008
This library provides a framework for using Code Project article information in applications, and provides a utility for monitoring articles
C# (C#2.0, C#3.0), Windows (Win2K, WinXP, Win2003, Vista), .NET (.NET2.0, .NET3.0, .NET3.5), ASP.NET, Win32, Win64, WPF, Architect, Dev
 
Derek Bartram 3.05
Gnucleus Tutorial (Part 1)
Updated: 26 Jul 2002
Tutorial of Evolve Dialog of Gnucleus - Gnutella Client.
VC6, Win2K, MFC, Dev
 
Masaaki Onishi 3.00
Sample WPF Application Consuming Bing Maps Web Services
Updated: 13 May 2010
Here is a sample WPF application that consumes GeocodeService, SearchService, ImageryService and RouteService that are part of Bing Maps web service
C#, Windows, .NET (.NET3.0), WPF, Ajax, Dev
 
Raj Dhrolia 3.00

Internet / Network - UDP 

top
Title / Updated Author Score  
Real time communications over UDP protocol - Unedited
Updated: 15 Nov 2011
Introducing UDP-RT protocol for efficient and reliable communications in real time systems
All-Topics, Dev
 
Michael Pan 4.90
How to craft UDP packets and send them with WinPCap
Updated: 21 Dec 2008
An article describing how to create custom UDP packets and then send them through the Internet using WinPCap.
C++, Windows, Dev
 
Emmanuel Herrera 4.89
A Chat Application Using Asynchronous UDP sockets
Updated: 29 Dec 2006
This article shows how to develop a chat application using UDP sockets.
C#, Windows, .NET, Visual-Studio, Dev
 
Hitesh Sharma 4.81
Scalable Server Events with .NET UDP Sockets
Updated: 21 Nov 2006
An article on notifying WinForms clients on a network that an event which concerns them has transpired.
C#, .NET1.1, Win2K, WinXP, Win2003, VS.NET2003, Dev
 
Joon du Randt 4.68
Basic UDP Receiver
Updated: 9 Dec 2010
A simple receiver for UDP packages sent by a transmitter.
C#, Windows, .NET, Dev
 
Amund Gjersøe 4.67
A Simple UDP Messaging Client Toolkit
Updated: 15 Oct 2010
A simple set of classes to make creating Peer to Peer messaging easy using UDP. Features built-in message concatenation and delivery receipts for reliable transmission.
C# (C#1.0, C#2.0, C#3.0, C#4.0), .NET (.NET1.0, .NET1.1, .NET2.0, .NET3.0, .NET3.5), Dev, C#3.5, Threading, Framework, peer-to-peer, threads, socket, udp, .NET4, Message
 
Andre Trollip 4.50
A Small DHCP Server Using UDP With Asynchronous Callbacks and Events
Updated: 11 Sep 2007
A UDP server.
C#2.0, Windows, .NET2.0, .NET3.0, VS2005, Dev
 
marcello_c 4.46
How to easily exchange data among .NET applications
Updated: 28 Jul 2010
A simple way of connectionless communication through the UDP protocol is described here.
C#, .NET3.5, Visual-Studio (VS2008), Dev, peer-to-peer
 
aquant 4.25
Getting the active TCP/UDP connections using the GetExtendedTcpTable function
Updated: 12 Jun 2006
This article shows how to use some TCP/UDP functions of the IP Helper API to get the active connections and the processes attached to a connection.
C#, .NET, WinXP, Win2003, Vista, VS2005, Dev, WinForm
 
Warlib 4.10
RawUDP - A Class to Craft Custom UDP Packets
Updated: 23 Dec 2008
An article showing how to use the RawUDP class to quickly create UDP packets and then how to send them with WinPCap
C++, Windows
 
Emmanuel Herrera 3.80
Simple client-server UDP socket program
Updated: 5 Jun 2008
A simple MFC application for sending and receiving UDP datagrams.
VC6, WinXP, Win2003, Vista, MFC, Dev
 
buntyrolln 3.33

Internet / Network - Utilities 

top
Title / Updated Author Score  
UpnpStat – List and Modify Port Mappings on your UPnP Enabled Router
Updated: 16 Sep 2010
A simple console utility that allows you to query and modify port mappings on a UPnP enabled home networking router.
C#, .NET, Visual-Studio (VS2010), Dev, .NET4
 
Alex Soya 5.00
MyDownloader: A Multi-thread C# Segmented Download Manager
Updated: 12 Feb 2008
Sample application that manages multiple segmented downloads and supports HTTP, FTP and YouTube video downloads
C#2.0, .NET2.0, Win2K, WinXP, Win2003, Vista, GDI+, VS2005, Dev
 
Guilherme Labigalini 4.97
Tracert Map: View the IP network path on a map
Updated: 4 Jul 2006
This utility geo-locates the IP addresses on the path of a network packet in an IP network and displays them on a map.
C#, Windows, .NET2.0, VS2005, Dev
 
Rama Krishna Vavilala 4.94
A Network Sniffer in C#
Updated: 11 Feb 2008
A simple network sniffer which can parse IP, TCP, UDP, and DNS packets.
C#, Windows, Visual-Studio, Dev
 
Hitesh Sharma 4.90
Simple Ping Utility with GUI
Updated: 3 Feb 2012
Using the Ping class in .NET Framework
C#2.0, Windows, .NET2.0, Visual-Studio, Dev
 
Mladen Jankovic 4.90
Network Activity Indicator for Windows 7
Updated: 27 Jan 2010
Displays the old "two monitors" icon in Windows 7 that flashed blue to show network activity on the System Tray.
C++ (VC6, VC9.0), Windows (Win7), Win32, Dev, Sales, Marketing
 
Igor Tolmachev 4.89
Send and Read SMS through a GSM Modem using AT Commands
Updated: 30 Aug 2010
In this article, you can send and read SMS through a GSM modem using AT commands and without using any third party library.
C#3.0, WinXP, .NET3.0, Visual-Studio (VS2005), Dev, WinForm
 
Syeda Anila Nusrat 4.83
Zeta Twitpic - Unedited
Updated: 20 Feb 2010
Small tool to monitor the clipboard for images and upload them to Twitpic
C#, .NET, Dev, WinForm
 
Uwe Keim 4.81
WPF Version of IPMessager
Updated: 27 Feb 2010
Redeveloped the IPMessager program using C# and WPF
C#, .NET, WPF
 
Liu Junfeng 4.80
Creating Your Own Custom Wireshark Dissector
Updated: 22 Jul 2007
This article describes how to create a Wireshark dissector as well as how to setup the Wireshark build environment.
C++, Windows, Visual-Studio, MFC, Dev
 
KenThompson 4.77
.NET Network Monitor
Updated: 22 Jul 2011
A simple network monitor.
C#, Windows, .NET, Dev
 
Cloud Hsu 4.76
Service DashBored
Updated: 5 Jan 2009
A lightweight desktop application to help keep you aware of server and application availability across your network.
C# (C#2.0), XML, Windows, .NET (.NET2.0), Dev, QA, SysAdmin, WinForm
 
James Kolpack 4.75
TCP Session Reconstruction Tool
Updated: 22 Sep 2007
A TCP session reconstruction tool for C#.
C++/CLI, VC8.0, C#2.0, Windows, .NET2.0, VS2005, Dev
 
Saar Yahalom 4.70
Screen Cast Server with Control
Updated: 29 Sep 2009
A screen cast server with mouse, keyboard, and clipboard control
C# (C#1.0, C#2.0, C#3.0), .NET, Dev
 
Linoxxis 4.62
Host Switcher
Updated: 19 Jan 2011
Quickly and easily alternate between servers in the hosts file.
C#, .NET, Dev, SysAdmin, WinForm
 
Daniel Carvalho Liedke 4.60
Zeta Twitter - Unedited
Updated: 5 Nov 2009
Auto Follow Keywords On Twitter
C# (C#1.0, C#2.0, C#3.0)
 
Uwe Keim 4.60
Iserver Cyber Cafe
Updated: 6 Apr 2005
Cyber café software to keep track of buisness.
C#, SQL, .NET1.0, .NET1.1, Win2K, WinXP, SQL2000, VS.NET2003, DBA, Dev
 
goodtime68 4.54
SyncBox - An Online Storage Alternative
Updated: 27 Dec 2009
An alternative way to get Online Storage on top of a version control system like Subversion
C++/CLI, Windows, .NET, Dev, WinForm
 
Attila Kúr 4.54
Secure VNC Viewer
Updated: 29 Apr 2007
Helper application to automatically establish SSH or SSL tunnels for VNC connections.
C#2.0, .NET2.0, Win2K, WinXP, Win2003, VS2005, Dev
 
Luke Stratman 4.52
Ping.exe replica in C# 2.0
Updated: 3 May 2007
Usage example of the System.Net.NetworkInformation.Ping.
C#2.0, Windows, .NET2.0, VS2005, Dev
 
Stefan Prodan 4.52
Edit (Add/Remove/Modify) ARP Tables
Updated: 18 Jan 2008
A tool to display and modify IP-to-Physical address translation tables used by the Address Resolution Protocol (ARP).
C++ (VC6, VC8.0), Windows (Win2K, WinXP, Win2003), Win32, MFC, Dev
 
Usama El-Mokadem 4.44
How to change a user's password on a remote computer
Updated: 29 May 2006
Password Changer - A reusable tool for changing a user password's remotely.
VC7, VC7.1, VC8.0, Win2K, WinXP, Win2003, MFC, VS.NET2003, VS2005, Dev
 
Steffen Lange 4.43
RDP Manager
Updated: 11 Oct 2006
Simple RDP and VNC connection manager built on .NET 2.0.
VB, Windows, .NET2.0, VS2005, Dev
 
jjanofs 4.38
AIM Session Tracker Utility
Updated: 2 Mar 2009
Tracks the status of an AIM user (online, away, offline).
C#2.0, C#3.0, .NET2.0, WinXP, Win2003, Vista, .NET3.0, .NET3.5, Win2008, Win32, Dev, WinForm
 
jason9825 4.33
Google Translator
Updated: 10 Mar 2010
An object that harnesses the power of Google's online natural language translation tools.
C#, Windows, .NET1.1, .NET2.0, .NET3.0, .NET3.5, VS2008, Dev
 
Ravi Bhavnani 4.25
Basic URL Utilities
Updated: 24 Nov 2008
Basic URL string utilites (getParameter, setParameter, removeParameter, and others).
Java, Dev
 
JamesVV 4.20
802.11 Packet Injection for Windows
Updated: 3 Jun 2009
Insert custom packets in the 802.11 frame
C++, C, Windows (Vista), Win32, Dev
 
Ryan Grevious 4.09
Weather Update application
Updated: 26 Apr 2003
This article is intended to show you how you can use the Internet to gather and display dynamic content.
C#, .NET1.0, Win2K, WinXP, Dev
 
Manster 3.86
DNS and MTU Network Configuration Tool
Updated: 13 Jun 2009
Tool to administer DNS and MTU configuration
VB, Windows (WinXP), .NET, ASP.NET, Dev
 
Jeff Cator 3.86
Trace Utility to Trace IP Packet Path
Updated: 29 May 2002
Using the ICMP protocol to trace the routing of packets.
C#, Windows, .NET1.0, Visual-Studio, Dev
 
Sanjay Ahuja 3.75
Simple ICMP Service Monitor
Updated: 6 Jul 2005
An example of a moderately useful network utility.
C#, .NET1.0, Win2K, WinXP, Dev
 
bill2006 3.75
Simple RSS
Updated: 15 Jan 2006
Build your own RSS reader with a couple of easy-to-use classes!
C#, Windows, .NET1.1, .NET2.0, VS.NET2003, VS2005, Dev
 
Ravi Bhavnani 3.65
Internet Explorer Activity Monitor
Updated: 29 Oct 2005
The Internet Activity Monitor captures what you are doing on Internet Explorer like opening a browser, requesting a Website and closing the browser.
C#, .NET1.1, WinXP, VS.NET2003, Dev
 
Ali Raza Shaikh 3.42
Buffering to HDD and then reading back - Unedited
Updated: 13 Jan 2012
A set of classes designed to provide buffering to HDD when the channel to the receiving host is broken.
C#, .NET, Architect, Dev, Design
 
kosmoh 3.40
Network Adapter MAC / IP Address Info Display Application Using C# and .NET
Updated: 14 Aug 2007
Network Adapter MAC / IP Address Info Display Application in C# .NET
C#, Vista, Visual-Studio, Dev
 
Brian Riek 3.39
Google Map Joiner
Updated: 20 Dec 2007
Merge some small print-screen maps to a big one
C# (C#1.0, C#2.0, C#3.0), .NET (.NET1.0, .NET1.1, .NET2.0, Mono, DotGNU, .NET3.0, .NET3.5), COM, Design
 
kesmellon 3.32
A small application for downloading website images automatically
Updated: 30 Jan 2010
If you see a website with a lot of nice images which you want to store on your computer, this application will help.
C#4.0, Windows, Dev
 
AYK_161 3.29
A simple crawler class
Updated: 27 Dec 2009
A multi-threaded crawler that downloads pages and saves them localy while preserving the site tree structure.
C#3.0, Windows (WinXP), VS2008, Dev, WinForm
 
Haim Nachum 3.00
Google Position Monitor
Updated: 19 Jul 2004
To find position of a website in Google search results for given keywords.
C#, .NET1.1, Win2K, WinXP, VS.NET2003, Dev
 
Haja 3.00
Which machines in my LAN are running X DBMS
Updated: 10 Jun 2009
Use NetServerEnum to find servers running particular services.
VC6, WinXP, MFC, Dev
 
DavidCrow 3.00
A C# Ping Control
Updated: 9 Feb 2007
This source code/control is provided to make it easy for programmers in C# to ping remote hosts and get the response time in milliseconds.
C#1.0, C#2.0, .NET1.0, .NET1.1, .NET2.0, Win2K, WinXP, Win2003, VS.NET2003, VS2005, Dev
 
daniel.byrne 2.67
WAN/Internet IP Emailer Using a GMail Account
Updated: 23 Aug 2008
Obtains a new WAN/Internet IP and sends it to a specified email address using a GMail account.
C#2.0, .NET2.0, Win2K, WinXP, Win2003, Vista, VS2005, Dev
 
harissarwar 2.25
Getting IP Details and Pinging the Gateway
Updated: 5 Sep 2007
This program gets all the IP details and pings the Gateway.
C#2.0, Windows, .NET2.0, VS2005, Dev, WinForm
 
Sharadendu Kumar Singh 1.40

Advertise | Privacy | Mobile
Web02 | 2.5.120209.1 | Last Updated 10 Feb 2012
Copyright © CodeProject, 1999-2012
All Rights Reserved. Terms of Use
Layout: fixed | fluid