April 1999
Intermediate to advanced
502 pages
15h 5m
English
You can download the accompanying source code from the O’Reilly ftp site. This section describes two methods for doing so, regular FTP and FTPMAIL.
If you have an Internet connection (permanent or dialup), the easiest way to use FTP is via your web browser or favorite FTP client. To get the examples, simply point your browser to:
| ftp://ftp.oreilly.com/published/oreilly/nutshell/dcom/DCOMcode.zip |
If you don’t have a web browser, you can use the command-line FTP client included with Windows NT (or Windows 95/98).
%ftp ftp.oreilly.comConnected to ftp.oreilly.com. 220 ftp.oreilly.com FTP server (Version 6.34 Thu Oct 22 14:32:01 EDT 1992) ready. Name (ftp.oreilly.com:username):anonymous331 Guest login ok, send e-mail address as password. Password:username@hostnameUse your username and host here 230 Guest login ok, access restrictions apply. ftp>cd /published/oreilly/nutshell/dcom250 CWD command successful. ftp>get README200 PORT command successful. 150 Opening ASCII mode data connection for README (xxxx bytes). 226 Transfer complete. local: README remote: README xxxx bytes received in xxx seconds (xxx Kbytes/s) ftp>binary200 Type set to I. ftp> get DCOMcode.zip 200 PORT command successful. 150 Opening BINARY mode data connection for DCOMcode.zip (xxxx bytes). 226 Transfer complete. local: DCOMcode.zip remote: DCOMcode.zip xxxx bytes received in xxx seconds (xxx Kbytes/s) ftp>quit221 Goodbye. %
You should unzip the DCOMCode.zip file into an empty working ...