<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179227#M95062</link>
    <description>Not sure exactly what you mean but you could setup a remote proxy on your destination system and then run your COM from your source system if both systems are running vms and can connect via decnet&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;On destination system (NODE2) add the following proxy&lt;BR /&gt;&lt;BR /&gt;LOCAL:.NODE1::user_name&lt;BR /&gt;    user_name (D)&lt;BR /&gt;&lt;BR /&gt;From source system (NODE1) you can execute the COM file on destination system (NODE2)&lt;BR /&gt;&lt;BR /&gt;e.g. @NODE2"user_name"::ABC.COM&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 04 Jun 2009 05:30:00 GMT</pubDate>
    <dc:creator>Rexx</dc:creator>
    <dc:date>2009-06-04T05:30:00Z</dc:date>
    <item>
      <title>DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179226#M95061</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I have the following things to be done, kindly suggest me which one will do FTP / TELNET.&lt;BR /&gt;&lt;BR /&gt;1. Connect to remote machine.&lt;BR /&gt;2. Execute the COM files, (Logicals pointing to&lt;BR /&gt;   directories should locate to the remote)&lt;BR /&gt;&lt;BR /&gt;I am trying to create a DCL script to do this, i have options in FTP using SPAWN command or any command using TELNET connection.&lt;BR /&gt;&lt;BR /&gt;Kindly help me in figureout the better way.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ragav.</description>
      <pubDate>Thu, 04 Jun 2009 05:02:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179226#M95061</guid>
      <dc:creator>Ragavendran_1</dc:creator>
      <dc:date>2009-06-04T05:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179227#M95062</link>
      <description>Not sure exactly what you mean but you could setup a remote proxy on your destination system and then run your COM from your source system if both systems are running vms and can connect via decnet&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;On destination system (NODE2) add the following proxy&lt;BR /&gt;&lt;BR /&gt;LOCAL:.NODE1::user_name&lt;BR /&gt;    user_name (D)&lt;BR /&gt;&lt;BR /&gt;From source system (NODE1) you can execute the COM file on destination system (NODE2)&lt;BR /&gt;&lt;BR /&gt;e.g. @NODE2"user_name"::ABC.COM&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Jun 2009 05:30:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179227#M95062</guid>
      <dc:creator>Rexx</dc:creator>
      <dc:date>2009-06-04T05:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179228#M95063</link>
      <description>If the DECnet remote executionn is not available (only TCPIP ?), then no, telnet or ftp is not the right direction, but rsh/rexec or the secure SSH.&lt;BR /&gt;e.g. &lt;BR /&gt; RSH remotenode "@test.com"&lt;BR /&gt; SSH remotenode "@test.com"&lt;BR /&gt;&lt;BR /&gt;For RSH You need TCPIP communication proxies defined (assuming it is "HP TCPIP services for VMS", see TCPIP HELP ADD PROXY),&lt;BR /&gt;for SSH proper authorization (public key, host based ...).&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Jun 2009 06:37:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179228#M95063</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-04T06:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179229#M95064</link>
      <description>Ragav,&lt;BR /&gt;&amp;gt;&amp;gt; have options in FTP using SPAWN command&lt;BR /&gt;&lt;BR /&gt;This is a misunderstanding of the SPAWN command in (VMS-) FTP:&lt;BR /&gt;it spawns a subprocess on the LOCAL node, i.e. the node where the ftp client is invoked, does not execute on the remote node, i.e. the one the ftp client has opened.&lt;BR /&gt;To send a command to the remote ftp server, the quote command is the right tool.&lt;BR /&gt;But I doubt any FTP server will execute a SPAWN command.&lt;BR /&gt;try "quote spawn show time" on your site !&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Jun 2009 06:57:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179229#M95064</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-04T06:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179230#M95065</link>
      <description>Finally, in addition to the DECnet remote object execution, which is "synchronous", i.e. DCL is waiting until the remote job ends, there is the possibility to submit a batch job to the remote node.&lt;BR /&gt;See HELp SUBMIT /REMOTE .&lt;BR /&gt;&lt;BR /&gt;Example: &lt;BR /&gt; SUBMIT/REMOTE remotenode::test.com&lt;BR /&gt;&lt;BR /&gt;But be aware, this batch execution is restricted to the remote nodes SYS$BATCH queue, and the logfile is always printed to the remote SYS$PRINT.</description>
      <pubDate>Thu, 04 Jun 2009 07:16:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179230#M95065</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-04T07:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179231#M95066</link>
      <description>Wow.. Thanks for immediate reponse.&lt;BR /&gt;&lt;BR /&gt;My problem is to run the COM file which is present in the remote system (R1)&lt;BR /&gt;i need to connect from the localnode (L1) using FTP/ TELNET.&lt;BR /&gt;&lt;BR /&gt;I can connect to R1 by &lt;BR /&gt; &lt;BR /&gt;$ FTP R1_addr &lt;BR /&gt;User &lt;BR /&gt;pass&lt;BR /&gt;SET DEF ld_disk1:[xxx.bin]&lt;BR /&gt;SPAWN @PROGRAM.COM&lt;BR /&gt;&lt;BR /&gt;// Here the logicals present in the com files refers to the L1 instead of &lt;BR /&gt;   R1. So the files accessed in the R1 COM refers to L1 file.&lt;BR /&gt;&lt;BR /&gt;REXX:&lt;BR /&gt;&lt;BR /&gt;I am sorry, i dont know how to set up the proxy for the remote node (R1).&lt;BR /&gt;That will be not a good idea to, since the remote node is not stable it will change &lt;BR /&gt;every time.&lt;BR /&gt;&lt;BR /&gt;JOSEPH:&lt;BR /&gt;&lt;BR /&gt;Yes, i agree we can use the SPAWN command in the local node, as you said &lt;BR /&gt;the file accessing mechanism fails here. the file location points to the local node(L1) in stead of remote node (R1).&lt;BR /&gt;&lt;BR /&gt;Sorry, the QUOTE command is not avalible in my system. If it there it would be great help. ok let me try some other functions.&lt;BR /&gt;&lt;BR /&gt;SUBMIT command looks good for me, one problem is i need to specify the directory in the &lt;BR /&gt;command my COM file is in ld_disk1:[xxx.bin] and program.com is the file in R1.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$ SUBMIT/REMOTE RNODE::ld_disk1:[xxx.bin]PROGRAM.COM  &lt;BR /&gt;%SUBMIT-F-OPENIN, error opening ld_disk1:[xxx.bin]PROGRAM.COM; as input&lt;BR /&gt;-RMS-E-FND, ACP file or directory lookup failed&lt;BR /&gt;-SYSTEM-F-INVLOGIN, login information invalid at remote node&lt;BR /&gt;&lt;BR /&gt;I Landup with the above error.&lt;BR /&gt;&lt;BR /&gt;Kindly let me know how to set the directory options.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ragav</description>
      <pubDate>Thu, 04 Jun 2009 08:51:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179231#M95066</guid>
      <dc:creator>Ragavendran_1</dc:creator>
      <dc:date>2009-06-04T08:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179232#M95067</link>
      <description>The remote submit needs DECnet proxy in the same way as the remote object execution as described by Rexx,&lt;BR /&gt;or You have to specify "user password" in the remote node specification like &lt;BR /&gt; remotenode"user password"::&lt;BR /&gt;which of course is not a good idea.&lt;BR /&gt;&lt;BR /&gt;I don't know what You mean to be not able to use proxies "because nodes change"?&lt;BR /&gt;Of course You need the proxies for all possible nodes where You want to execute.&lt;BR /&gt;The same applies for RSH, just the proxies are not DECnet but TCPIP proxies, and they are (unfortunately or fortunately) different sets of proxies.</description>
      <pubDate>Thu, 04 Jun 2009 10:14:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179232#M95067</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-04T10:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179233#M95068</link>
      <description>I forgot to answer this&lt;BR /&gt;&amp;gt;&amp;gt;Kindly let me know how to set the directory options.&lt;BR /&gt;&lt;BR /&gt;There is nothing to set directories. My example  was just assuming test.com in the users home directory, of course the full syntax is&lt;BR /&gt; submit/remote node"user pw"::dev:[dir]file.typ&lt;BR /&gt;&lt;BR /&gt;The error was because "login information not valid": missing proxies or "user pw" as explained in last reply.</description>
      <pubDate>Thu, 04 Jun 2009 10:19:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179233#M95068</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-04T10:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179234#M95069</link>
      <description>And to make testing shorter:&lt;BR /&gt;Yiou can test of course before making the proxy entries: just use &lt;BR /&gt;  RNODE"user password":: for the remote node string.&lt;BR /&gt;or &lt;BR /&gt; RSH/user=user/password=pw rnode command&lt;BR /&gt;&lt;BR /&gt;and define the proxies later for production.</description>
      <pubDate>Thu, 04 Jun 2009 10:32:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179234#M95069</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-04T10:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179235#M95070</link>
      <description>My final tip for remote command execution (not just command files):&lt;BR /&gt;Install the REMOTE command:&lt;BR /&gt; &lt;A href="http://wwwvms.mppmu.mpg.de/util_root/com/remote.com" target="_blank"&gt;http://wwwvms.mppmu.mpg.de/util_root/com/remote.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Then execution is as simple as&lt;BR /&gt; REMOTE rnode show users/full&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Jun 2009 13:57:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179235#M95070</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-04T13:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179236#M95071</link>
      <description>Thanks Joseph, &lt;BR /&gt;&lt;BR /&gt;I am really happy to receive your valuable replies :) &lt;BR /&gt;&lt;BR /&gt;My system and the remote system is not having DECNET enabled. I can use FTP / TELNET, but in FTP even if i use the SPAWN command to execute the files it refers the local version of that file. &lt;BR /&gt;&lt;BR /&gt;I have to figureout the TELNET more deeper i guess. &lt;BR /&gt;&lt;BR /&gt;REMOTE command you suggested, i guess i cant introduce for completing this job. Still i am happy digging the REMOTE command. &lt;BR /&gt;&lt;BR /&gt;Kindly help me in TELNET and FTP stuffs to execute the COM and EXE files in remote machine.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ragav.</description>
      <pubDate>Fri, 05 Jun 2009 05:42:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179236#M95071</guid>
      <dc:creator>Ragavendran_1</dc:creator>
      <dc:date>2009-06-05T05:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179237#M95072</link>
      <description>&amp;gt;&amp;gt;My system and the remote system is not having DECNET enabled.&lt;BR /&gt;&lt;BR /&gt;But Your previous response showed a response to the SUBMIT/REMOTE command, so there IS DECnet, both on the local as on the remote system!&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; I can use FTP / TELNET, but in FTP even if i use the SPAWN command to execute the files it refers the local version of that file.&lt;BR /&gt;&amp;gt;&amp;gt;I have to figureout the TELNET more deeper i guess.&lt;BR /&gt;&lt;BR /&gt;Since You have Telnet and Ftp, You have TCP/IP, and can enable either RSH or SSH.&lt;BR /&gt;Neither Telnet nor Ftp have the capability to  &lt;BR /&gt;send DCL commands to a remote system, (You can dig into Telnet as deep as You like, You will not find such capability).&lt;BR /&gt;&lt;BR /&gt;Decnet remote object/remote submit and TCPIP&lt;BR /&gt;RSH/SSH are designed for this purpose. Full stop.</description>
      <pubDate>Fri, 05 Jun 2009 05:56:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179237#M95072</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-05T05:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179238#M95073</link>
      <description>&lt;!--!*#--&gt;&amp;gt; Neither Telnet nor Ftp have the capability&lt;BR /&gt;&amp;gt; to send DCL commands to a remote system,&lt;BR /&gt;&amp;gt; (You can dig into Telnet as deep as You&lt;BR /&gt;&amp;gt; like, You will not find such capability).&lt;BR /&gt;&lt;BR /&gt;Strange.  I Telnet to remote systems and&lt;BR /&gt;send them commands all the time.&lt;BR /&gt;&lt;BR /&gt;It's also possible to script Telnet sessions&lt;BR /&gt;using Kermit.  For example&lt;BR /&gt;&lt;BR /&gt;alp $ type ksd.com&lt;BR /&gt;$ kermit + sys$input alp-l sms/nocommand insert_password_here&lt;BR /&gt;telnet \%1&lt;BR /&gt;input 2 Username:&lt;BR /&gt;output \%2\13&lt;BR /&gt;input 2 Password:&lt;BR /&gt;output \%3\13&lt;BR /&gt;input 2 $&lt;BR /&gt;output show default\13&lt;BR /&gt;input 2 $&lt;BR /&gt;output logout\13&lt;BR /&gt;alp $&lt;BR /&gt;&lt;BR /&gt;alp $ @ ksd.com&lt;BR /&gt; DNS Lookup...  Trying 10.0.0.9...  Reverse DNS Lookup... (OK)&lt;BR /&gt;&lt;BR /&gt;Sorry, Kermit's CONNECT command requires a real terminal;&lt;BR /&gt;It can't be used in a batch job.&lt;BR /&gt;Use INPUT and OUTPUT commands instead.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;      I'm ALP.  Who are you?&lt;BR /&gt;&lt;BR /&gt;Username: sms/nocommand&lt;BR /&gt;Password:&lt;BR /&gt;&lt;BR /&gt;      Welcome to VMS (Alpha) V7.3-2 on ALP.&lt;BR /&gt;&lt;BR /&gt;      Unauthorized use is prohibited.&lt;BR /&gt;&lt;BR /&gt;    Last interactive login on Friday,  5-JUN-2009 09:02:41.81&lt;BR /&gt;    Last non-interactive login on Saturday, 23-MAY-2009 22:06:12.70&lt;BR /&gt;$ show default&lt;BR /&gt;  HOME_SMS:[SMS]&lt;BR /&gt;$&lt;BR /&gt;alp $</description>
      <pubDate>Fri, 05 Jun 2009 13:12:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179238#M95073</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-06-05T13:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179239#M95074</link>
      <description>Steven, Yes of course, but Telnet as well as kermit is interactive login, which needs a terminal.&lt;BR /&gt;I understood the OP wants to execute a remote command (e.g. out of a command file), and don't understand why he refuses to use RSH/SSH/decnet  objects.</description>
      <pubDate>Fri, 05 Jun 2009 14:52:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179239#M95074</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-05T14:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179240#M95075</link>
      <description>I run kermit in batch to script a telnet session.  Take Steven's example and change the "telnet %1" to "set host %1" and I expect that the warning about no batch jobs will go away.&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Jun 2009 18:02:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179240#M95075</guid>
      <dc:creator>RBrown_1</dc:creator>
      <dc:date>2009-06-05T18:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179241#M95076</link>
      <description>&lt;!--!*#--&gt;&amp;gt; I run kermit in batch to script a telnet&lt;BR /&gt;&amp;gt; session.&lt;BR /&gt;&lt;BR /&gt;Same here.  I use it do do some things with&lt;BR /&gt;my Cisco 628 DSL modem/router.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Take Steven's example [...]&lt;BR /&gt;&lt;BR /&gt;True.  And, as batch jobs, both procedures&lt;BR /&gt;work the same as they do interactively.</description>
      <pubDate>Fri, 05 Jun 2009 20:31:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179241#M95076</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-06-05T20:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179242#M95077</link>
      <description>I understand Kermit scripting is the only choice when the remote part is a system like routers,switches or printers, which offer only interactive terminal access, not remote shell types.&lt;BR /&gt;&lt;BR /&gt;The original question was about executing DCL commands or procedures on a remote VMS system.&lt;BR /&gt;IMHO it is inapropriate to script a terminal session (containing clear text user/password !) just to do that, while RCP/SSH or DECnet remote object is available.&lt;BR /&gt;And everytime Your password changes, then the script has to bedited, and such a script can't be offered to other users because of the password inside.&lt;BR /&gt; The only reason to do that on VMS I could imagine is, if the remote task involves some kind of dialogue which makes it necessary to pretend to be a terminal session.</description>
      <pubDate>Sat, 06 Jun 2009 09:49:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179242#M95077</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-06-06T09:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179243#M95078</link>
      <description>&lt;!--!*#--&gt;&amp;gt; And everytime Your password changes, then&lt;BR /&gt;&amp;gt; the script has to bedited, and such a&lt;BR /&gt;&amp;gt; script can't be offered to other users&lt;BR /&gt;&amp;gt; because of the password inside.&lt;BR /&gt;&lt;BR /&gt;I haven't tried it, but I'd guess that one&lt;BR /&gt;could write a script/procedure which would&lt;BR /&gt;extract a password from a ".netrc" file,&lt;BR /&gt;which would solve (or at least alleviate)&lt;BR /&gt;these problems.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; IMHO it is inapropriate [...]&lt;BR /&gt;&lt;BR /&gt;Fine, but that's different from saying that&lt;BR /&gt;it's impossible.</description>
      <pubDate>Sat, 06 Jun 2009 12:42:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179243#M95078</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-06-06T12:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179244#M95079</link>
      <description>To add the proxy use the following command&lt;BR /&gt;&lt;BR /&gt;mc authorize - &lt;BR /&gt;add/proxy node1::username1 username2&lt;BR /&gt;&lt;BR /&gt;You would run this command on node2&lt;BR /&gt;username2 is the username on node2&lt;BR /&gt;&lt;BR /&gt;This will mean you will not need to enter a password with your remote command. From what you have stated above it looks like DECnet works between you two nodes.&lt;BR /&gt;&lt;BR /&gt;To view proxies run command&lt;BR /&gt;&lt;BR /&gt;mc authorize show/proxy *::*&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Jun 2009 00:30:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179244#M95079</guid>
      <dc:creator>Rexx</dc:creator>
      <dc:date>2009-06-09T00:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Programming - Executing COM files in remote machine through FTP/TELNET</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179245#M95080</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Really thanks to everybody for your different ways in executing remote node's files. &lt;BR /&gt;&lt;BR /&gt;Due to my system architecture i can't use any Decnet commands / functions.&lt;BR /&gt;&lt;BR /&gt;I have come to a conclusion that i will transfer a COM file from local node to the remote machine specific directory thru FTP. When one EOD a batch is executed in my system everyday the new COM will be executed. This will complete my required process.&lt;BR /&gt;&lt;BR /&gt;I think we may have many technical advantages other than this, but my business team have come up with this flow finally.&lt;BR /&gt;&lt;BR /&gt;I will make a notes on this study based on your responses and will try to implement in this in my system after sometime.&lt;BR /&gt;&lt;BR /&gt;Again heartly thanks for your suppport. &lt;BR /&gt;Please do keep me in loop for any challenging and difficult process since i am eager to learn new things..&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ragav.</description>
      <pubDate>Tue, 09 Jun 2009 07:23:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-programming-executing-com-files-in-remote-machine-through/m-p/5179245#M95080</guid>
      <dc:creator>Ragavendran_1</dc:creator>
      <dc:date>2009-06-09T07:23:20Z</dc:date>
    </item>
  </channel>
</rss>

