User manual AMX I!-FTPSENDER

Lastmanuals offers a socially driven service of sharing, storing and searching manuals related to use of hardware and software : user guide, owner's manual, quick start guide, technical datasheets... DON'T FORGET : ALWAYS READ THE USER GUIDE BEFORE BUYING !!!

If this document matches the user guide, instructions manual or user manual, feature sets, schematics you are looking for, download it now. Lastmanuals provides you a fast and easy access to the user manual AMX I!-FTPSENDER. We hope that this AMX I!-FTPSENDER user guide will be useful to you.

Lastmanuals help download the user guide AMX I!-FTPSENDER.


Mode d'emploi AMX I!-FTPSENDER
Download
Manual abstract: user guide AMX I!-FTPSENDER

Detailed instructions for use are in the User's Guide.

[. . . ] Any implied warranties on the SOFTWARE and hardware are limited to ninety (90) days and one (1) year, respectively. Some states/countries do not allow limitations on duration of an implied warranty, so the above limitation may not apply to you. AMX Corporation's entire liability and your exclusive remedy shall be, at AMX Corporation's option, either (a) return of the price paid, or (b) repair or replacement of the SOFTWARE that does not meet AMX Corporation's Limited Warranty and which is returned to AMX Corporation. This Limited Warranty is void if failure of the SOFTWARE or hardware has resulted from accident, abuse, or misapplication. [. . . ] 3 Channels . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Send_Commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Example Code. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 Troubleshooting i!-FTPSender . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 Learning More . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 i!-FTPSender i Table of Contents ii i!-FTPSender Introduction Introduction The i!-FTPSenderTM allows you to copy a file from one FTP server to another from NetLinxTM code. This is useful to copy files to the NetLinx Master from another FTP server or to copy files from the NetLinx Master's disc on chip to another FTP server. This module will work between any two FTP servers; it is not limited to copying files to and from a NetLinx Master. Supported Operating Systems Windows 95®/98® (with at least 48 MB of installed memory) Windows NT 4. 0® Workstation or Server (service pack 6 B or greater, with at least 64 MB of installed memory) Windows 2000® Professional or Server (running on a Pentium 233 MHz processor (minimum requirement); 300 MHz or faster recommended, with 96 MB of installed memory. ) Windows ME® (running on a Pentium 233 MHz processor (minimum requirement); 300 MHz or faster recommended, with 96 MB of installed memory. ) Minimum PC Requirements Windows-compatible mouse (or other pointing device) At least 5 MB of free disk space (150 MB recommended) VGA monitor, with a minimum screen resolution of 800 x 600 A Network adapter Installing i!-FTPSender 1. In Explorer, double-click i!-FTPSenderSetup. exe from the directory window where you downloaded the i!-Email install program. After reading the License Agreement, select I Agree and Next to proceed. The Welcome To i!-FTPSender Setup dialog appears, reminding you to close all Windows programs before going any further. In the Select i!-FTPSender Install Location dialog, use the Browse button to navigate to a directory other than the default install directory, if desired. In the i!-FTPSender Shortcut Creation dialog, select Install Shortcut Icons for the installed components on your desktop, if desired. Click Next in the Start i!-FTPSender Installation dialog to install the selected components. The program prompts you to restart your system to complete the installation. i!-FTPSender 1 Introduction 2 i!-FTPSender Running i!-FTPSender Running i!-FTPSender Programming i!-FTPSender is a NetLinx module you can add to any program. You interact with the module through a virtual device supporting: Channels Strings Send_Commands Channels The following table lists the channels supported by i!-FTPSender. i!-FTPSender Channels Channel 250 251 255 Description Channel turns on when the module is communicating with the source server. Channel turns on when the module is communicating with the destination server. When channel is on, debugging messages from the module are printed to terminal. Strings The following table lists the strings supported by i!-FTPSender. [. . . ] *) SEND_COMMAND vdvFTPDiag, "'COPY-', cSFileName, ';', cDFileName" cButtonPressed = 4 } } } } (* FTP Activity *) DATA_EVENT[vdvFTPDiag] { STRING: SEND_STRING 0, "'From FTPModule: ', DATA. TEXT" } (***********************************************************) (* THE ACTUAL PROGRAM GOES BELOW *) Continued i!-FTPSender 5 Running i!-FTPSender (***********************************************************) DEFINE_PROGRAM (* Feedback *) [dcFTPCopy[1]]=(([vdvFTPDiag, FTPSServerBusy] && (cButtonPressed = 1)) [dcFTPCopy[2]]=(([vdvFTPDiag, FTPSServerBusy] && (cButtonPressed = 2)) [dcFTPCopy[3]]=(([vdvFTPDiag, FTPSServerBusy] && (cButtonPressed = 3)) [dcFTPCopy[4]]=(([vdvFTPDiag, FTPSServerBusy] && (cButtonPressed = 4)) || [vdvFTPDiag, FTPDServerBusy]) || [vdvFTPDiag, FTPDServerBusy]) || [vdvFTPDiag, FTPDServerBusy]) || [vdvFTPDiag, FTPDServerBusy]) (***********************************************************) (* END OF PROGRAM *) (* DO NOT PUT ANY CODE BELOW THIS COMMENT *) (***********************************************************) Troubleshooting i!-FTPSender All interaction with the FTP servers is provided as a string from the virtual device. Most problems can be resolved by reading the server interaction provided by the strings. Common problems might be: The IP address or host name supplied for the FTP server does not have an FTP server running. The username and/or password may be incorrect. [. . . ]

DISCLAIMER TO DOWNLOAD THE USER GUIDE AMX I!-FTPSENDER

Lastmanuals offers a socially driven service of sharing, storing and searching manuals related to use of hardware and software : user guide, owner's manual, quick start guide, technical datasheets...
In any way can't Lastmanuals be held responsible if the document you are looking for is not available, incomplete, in a different language than yours, or if the model or language do not match the description. Lastmanuals, for instance, does not offer a translation service.

Click on "Download the user manual" at the end of this Contract if you accept its terms, the downloading of the manual AMX I!-FTPSENDER will begin.

Search for a user manual

 

Copyright © 2015 - LastManuals - All Rights Reserved.
Designated trademarks and brands are the property of their respective owners.

flag