home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / os / vms / 17538 < prev    next >
Encoding:
Text File  |  1992-11-06  |  2.7 KB  |  79 lines

  1. Newsgroups: comp.os.vms
  2. Path: sparky!uunet!think.com!rpi!psinntp!psinntp!wrldlnk!usenet
  3. From: "George S. Chapman" <p00180@psilink.com>
  4. Subject: Re: DCL Help: Starting a remote DCL file & knowing when it's done
  5. In-Reply-To: <a725911.12@bugs.mc.ti.com>
  6. Message-ID: <2930010095.1.p00180@psilink.com>
  7. Sender: usenet@worldlink.com
  8. Nntp-Posting-Host: 127.0.0.1
  9. Reply-To: mithrandir@isvnet.enet.dec.com
  10. Organization: The Midwest Stock Exchange
  11. Date: Thu, 5 Nov 1992 01:46:08 GMT
  12. X-Mailer: PSILink (3.2)
  13. Lines: 64
  14.  
  15. There are probably several ways to do it.  The one that I use for
  16. starting communication servers on remote nodes in my broker office
  17. system runs something like this:
  18.  
  19. ---  Command file "SAMPLE.COM" on remote machine ---
  20.  
  21. $ DEFINE SYS$OUTPUT SYS$NET:
  22. $   .
  23. $   .
  24. $   .
  25. $ EXIT
  26.  
  27. ( This file must either exist in your default login directory,
  28.   or have a logical name "SAMPLE" pointing to the DEV:[DIR]FILE.COM )
  29.  
  30. ---  Execute it with: ---
  31.  
  32. $
  33. $ TYPE FOOBAR::"0=SAMPLE"
  34. $
  35.  
  36. (This assumes proxy access to the remote node)
  37.  
  38. -------------------------
  39.  
  40.  =====================================
  41.   George S. Chapman
  42.   Director, Technology Planning
  43.   The Midwest Stock Exchange, Inc.
  44.   Chicago, Illinois; Bangkok Thailand
  45.   mithrandir@isvnet.enet.dec.com
  46.  =====================================
  47.  
  48. >DATE:   Wed, 4 Nov 1992 18:29:26 GMT
  49. >FROM:   Dave DesRoches <a725911@bugs.mc.ti.com>
  50. >
  51. >A question for the DCL wizards out there...
  52. >
  53. >I have a central system (running VMS 5.5) which needs to start up a DCL file 
  54. >on a remote system - and then "know" when that .com file has completed.  I'd
  55. >like to do it all in DCL if possible - I'll be turning over responsibility 
  56. >for this to a user-group, and an "English program" is preferable to them...
  57. >though the "English" may look obscure with VMS system calls in it.
  58. >
  59. >There are several remote systems which I need to do this for, and they're 
  60. >running different versions of VMS (ranging from 5.1b - 5.5).
  61. >
  62. >Anyone been through this or have any thoughts on how I might get there?  Any 
  63. >help you could provide would be much appreciated...
  64. >
  65. >Thanks and regards,
  66. >
  67. >Dave
  68. >          //   //       //   ______________________________________________
  69. >         //            //  /                                                \
  70. >   ///////   //  ///////  | Dave DesRoches    e-mail: a725911@bugs.mc.ti.com |
  71. > //    //   // //    //   | Texas Instruments                                |
  72. > //   //   //  //   //    | Materials & Controls Group                       |
  73. >  //////  //    //////    | Attleboro, Massachusetts  02703     TI-msg: DESR |
  74. >         //               | USA                                              |
  75. >   //   //                 \________________________________________________/
  76. >    ////
  77.  
  78.