Manual IBM 3770

20 pages 0.06 mb
Download

Go to site of 20

Summary
  • IBM 3770 - page 1

    i 3770Link SNA/RJE Emulation Demo Version User’s Guide Table of Contents Notational Conventions ............................................................................... ii Ordering Information .................................................................................. 1 Technical Support ............................................. ...

  • IBM 3770 - page 2

    3770Link ii Notational Conventions The following notation is used in this guide: 3770Link Refers to the 3770Link package in g eneral. 3770Link GUI Refers specifically to the graphical user interface program (“3770link.exe”) 3770Link SO Refers specifically to the console style script-only program (“3770so.exe”) ...

  • IBM 3770 - page 3

    Demo User’s Guide 1 3770Link Demo Version User’s Guide Thank you for requesting the 3770Link demo diskette. This demo introduces you to the “look-and-feel” of 3770Link and to the extensive script file capabilities found within. The demo simulates online sessions and therefore does not require an adapter or modem to be present in your system ...

  • IBM 3770 - page 4

    3770Link 2 Technical Support Once you’ve ordered 3770Link, Serengeti Systems provides technical support for as long as you use 3770Link at no additional cost to you. Support is available via the Internet from our web site or via e-mail, or by telephone. • Access to Serengeti Technical Support is available from within the 3770Link GUI by way of ...

  • IBM 3770 - page 5

    Demo User’s Guide 3 Introduction to 3770Link 3770Link combines full-featured SNA RJE communications with a comfortable user interface. You can use the intuitive menus for interactive operations or take advantage of the powerful script language and/or programmatic control for automated, unattended sessions. 3770Link’s user interface utilizes men ...

  • IBM 3770 - page 6

    3770Link 4 3770Link Features 3770 Emulation Features • IBM 3776/3777 Model 3 or Model 4 emulation (SNA Logical Unit type 1) • LU − LU and SSCP − LU sessions • Unlimited number of concurrent sessions • Receive to console, printer, or disk file • Automatic ASCII ↔ EBCDIC translation • PDIR record recognition • FMH 1 and FMH 3 supp ...

  • IBM 3770 - page 7

    Demo User’s Guide 5 RJE Server Features • Load 3770Link as an RJE server • Submit commands to 3770Link from user-written client program via DDE interface Supported Host Environments • Host sys tems: POWER (DOS/VSE); JES2 and JES3 (MVS); other VTAM environments; and others • Host connections: SDLC, X.25, ISDN, Ethernet, token ring (or othe ...

  • IBM 3770 - page 8

    3770Link 6 Software Installation The following steps describe how to install the 3770Link demo on a hard disk from the distribution diskette: • Insert the 3770Link diskette into a floppy drive. For Windows NT 3.51: • From the File m enu in Program Manager, choose Run. Type a:setup and press <Enter> or click [OK] . For Windows 95/98 and NT ...

  • IBM 3770 - page 9

    Demo User’s Guide 7 RCVFILE.TXT Text file for simula ting received files DLLSHARE.DLL Windows dynamic link library 3770LINK.HLP Help file After you use 3770Link, you may also see the following files in your 3770Link directory: JOBNAME.* printer files created during demo RECEIVE1.LOG Log of files recei ved MRU.INI Configuration file for this demo ...

  • IBM 3770 - page 10

    3770Link 8 text regarding the status of the connection. You should see the following text in each LU window during the connection process: Activating Link To The Host ... PU Is Active LU Is Active => SSCP-LU Session Established Sending Formatted Logon (INIT_SELF) Session Bound LU-LU Session Established In addition, each LU window has a status ba ...

  • IBM 3770 - page 11

    Demo User’s Guide 9 You should also see the following simulated ho st message in the console window: DOWNLOAD COMPLETE ON RJELU1. • At this point, feel free to try some of the other menus such as Transmit | File , Transmit | Application Request , Transmit | Logoff , and Transmit | Logon . Each time that the first LU logs on, the simulated downl ...

  • IBM 3770 - page 12

    3770Link 10 Simulating Sending and Receiving Files with the Demo For the purposes of this demo, the following rules apply when sending or receiving files: • You may send a file at any time you are connected. A connection is achieved through the Auto-Dial , Auto-Answer , or Connect menus in 3770Link GUI, or through the DIAL, CONN, or ANS script co ...

  • IBM 3770 - page 13

    Demo User’s Guide 11 Script Files To accommodate unattended operation, 3770Link utilizes an extremely powerful script language. There is a corresponding script command for most of the menu items available in interactive mode. In addition there are numerous commands to manage error checking, error recovery, looping, and branching. Script files can ...

  • IBM 3770 - page 14

    3770Link 12 IF conn_loop, connect QUIT :connect PTR testptr SEND jcl.txt IF sendfail RCV :sendfail DISC QUIT This example LU script file dials a phone number and checks for numerous possible result codes. If the dial is successful, two files are transmitted consecutively and a RCV is executed to await the host’s reply. The line is then disconnect ...

  • IBM 3770 - page 15

    Demo User’s Guide 13 :no_tone ##ATTENTION: Phone Line Not Connected QUIT This example master connect script file connects on all 3 configured LUs (RJELINK1, RJELINK2, and RJELINK3). The line is then disconnected. This script file example assumes that the 3 LUs are configured for the current connection. ;Connect on all 3 LUs. CONN ;Start script fi ...

  • IBM 3770 - page 16

    3770Link 14 3770Link Script Language Commands are not case sensitive, they are shown in upper case for clarity. Replace text in italics with the appropriate values. Parameters enclosed in square braces "[ ]"are optional. When two or more parameters are separated by a bar “|”, only one of them may actually be used at a time. Command Sy ...

  • IBM 3770 - page 17

    Demo User’s Guide 15 Command Syntax Description DIAL xxx-xxx-xxxx [/t= x | /m= x ] Auto-dial string xxx-xxx-xxxx . /t= x - Time-out after x seconds. /m= x - Time-out after x minutes. DISC Disconnect the line. ENDPIPE Close a pipe. EXCH name [/n | /s] [/a] [/b] [/t] Define the exchange device. /n, /s, /a, /b, /t - See PTR command. EXEC [/c] [/e] f ...

  • IBM 3770 - page 18

    3770Link 16 Command Syntax Description IFERROR< nnnn label If er ror code less than nnnn , branch to label. IFERROR>= nnnn label If error code greater than or equal to nnnn , branch to label. IFERROR<= nnnn label If error code less than or equal to nnnn , branch to label. IFERROR!= nnnn label If error code not equal t o nnnn , branch to la ...

  • IBM 3770 - page 19

    Demo User’s Guide 17 Command Syntax Description RCV [/t= x | /m= x ] Wait to receive a single transmission from [/PTR[ n ] | /PUN[ n ] | /EXCH[ n ]] the host. /t= x - Time-out after x seconds. /m= x - Time-out after x minutes. /PTR[ n ], /PUN[ n ], /EXCH[ n ] - Receive only printer, punch or exchange files on subaddress n. RCV_FC /d | /i /d - Dec ...

  • IBM 3770 - page 20

    3770Link 18 Command Syntax Description START_LU_SCRIPT file [ luname ] Start LU script file execution on luname. SUBMIT file [[/p | /j] | /b] [/t= x | /m= x ] Wait for existence of file , then send file to the host. /p - Pad each record with spaces. /b - T ransmit in binary mode. /j - Scan file for include records. /d - Delete file regardless of su ...

Manufacturer IBM Category Speaker

Documents that we receive from a manufacturer of a IBM 3770 can be divided into several groups. They are, among others:
- IBM technical drawings
- 3770 manuals
- IBM product data sheets
- information booklets
- or energy labels IBM 3770
All of them are important, but the most important information from the point of view of use of the device are in the user manual IBM 3770.

A group of documents referred to as user manuals is also divided into more specific types, such as: Installation manuals IBM 3770, service manual, brief instructions and user manuals IBM 3770. Depending on your needs, you should look for the document you need. In our website you can view the most popular manual of the product IBM 3770.

Similar manuals

A complete manual for the device IBM 3770, how should it look like?
A manual, also referred to as a user manual, or simply "instructions" is a technical document designed to assist in the use IBM 3770 by users. Manuals are usually written by a technical writer, but in a language understandable to all users of IBM 3770.

A complete IBM manual, should contain several basic components. Some of them are less important, such as: cover / title page or copyright page. However, the remaining part should provide us with information that is important from the point of view of the user.

1. Preface and tips on how to use the manual IBM 3770 - At the beginning of each manual we should find clues about how to use the guidelines. It should include information about the location of the Contents of the IBM 3770, FAQ or common problems, i.e. places that are most often searched by users in each manual
2. Contents - index of all tips concerning the IBM 3770, that we can find in the current document
3. Tips how to use the basic functions of the device IBM 3770 - which should help us in our first steps of using IBM 3770
4. Troubleshooting - systematic sequence of activities that will help us diagnose and subsequently solve the most important problems with IBM 3770
5. FAQ - Frequently Asked Questions
6. Contact detailsInformation about where to look for contact to the manufacturer/service of IBM 3770 in a specific country, if it was not possible to solve the problem on our own.

Do you have a question concerning IBM 3770?

Use the form below

If you did not solve your problem by using a manual IBM 3770, ask a question using the form below. If a user had a similar problem with IBM 3770 it is likely that he will want to share the way to solve it.

Copy the text from the picture

Comments (0)