<?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: copy/ftp in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277681#M101526</link>
    <description>Ok, I've done a little digging into the history here.&lt;BR /&gt;&lt;BR /&gt;There are some similar-looking reports from six months back, and I see FTP issues from almost a year ago.  &lt;BR /&gt;&lt;BR /&gt;Would this be the same site and the same issue?&lt;BR /&gt;&lt;BR /&gt;And would that make it a legacy bug? :-)&lt;BR /&gt;&lt;BR /&gt;Consistency being what it is, I'd previously posted similar code for checking errors from the DCL code, Steven has asked similar questions about the version information, too. &lt;BR /&gt;&lt;BR /&gt;You will want to see several of the previous threads for (more of) the usual suggestions for these cases, ranging from debugging on up to Wireshark.&lt;BR /&gt;&lt;BR /&gt;And if this matter has become a priority here, do consider calling in some help to have a look at this network.  IP network errors don't usually lend themselves to easy debugging via forum postings.</description>
    <pubDate>Fri, 25 Mar 2011 01:17:12 GMT</pubDate>
    <dc:creator>Hoff</dc:creator>
    <dc:date>2011-03-25T01:17:12Z</dc:date>
    <item>
      <title>copy/ftp</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277678#M101523</link>
      <description>Hi folks,&lt;BR /&gt;&lt;BR /&gt;I maintain a legacy system on an HP Itanium under VMS8.2-1 with software written in pascal.&lt;BR /&gt;&lt;BR /&gt;I use COPY/FTP to copy files out to a number of other servers.&lt;BR /&gt;&lt;BR /&gt;I am now in a position where I need to grab a file from an external (Windows) FTP server.&lt;BR /&gt;&lt;BR /&gt;This may seem like a trivial question but rather than establishing an FTP connection to this server and getting a file, is COPY/FTP a better method? &lt;BR /&gt;&lt;BR /&gt;Can I specify a timeout? Or do I simply get an error status if the file is not there?&lt;BR /&gt;&lt;BR /&gt;TIA&lt;BR /&gt;&lt;BR /&gt;Tim&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Mar 2011 00:41:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277678#M101523</guid>
      <dc:creator>tim lloyd_1</dc:creator>
      <dc:date>2011-03-25T00:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: copy/ftp</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277679#M101524</link>
      <description>COPY /FTP and DIRECTORY /FTP and related are FTP, with a better (and far more easily scriptable via DCL) user interface.&lt;BR /&gt;&lt;BR /&gt;I'd stay away from the timeouts and related, as that way often involves not insubstantial pain and suffering and weirdness and instability.  If you really need to go there and have already looked very carefully at alternatives and options, only then at the timeouts.&lt;BR /&gt;&lt;BR /&gt;The default timeouts and errors should be the same as those of FTP.  &lt;BR /&gt;&lt;BR /&gt;As for errors, run yourself a few tests.  (It would have taken you less time to have run a COPY /FTP host::bogus and checked $status than to post that question, after all.)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$ copy/ftp localhost::bogus x.x&lt;BR /&gt;%TCPIP-E-FTP_NOSUCHFILE, no such file bogus&lt;BR /&gt;$ show sym $status&lt;BR /&gt;  $STATUS == "%X17649B22"&lt;BR /&gt;$ copy/ftp localhost"usr pwd"::login.com x.x&lt;BR /&gt;$ show sym $status&lt;BR /&gt;  $STATUS == "%X17649B11"&lt;BR /&gt;$ set mess sys$message:tcpip$msg&lt;BR /&gt;$ x=f$mess(%X17649B22)&lt;BR /&gt;$ show sym x&lt;BR /&gt;  X = "%TCPIP-E-FTP_NOSUCHFILE, no such file !AD"&lt;BR /&gt;$ x=f$mess(%X17649B11)&lt;BR /&gt;$ show sym x&lt;BR /&gt;  X = "%TCPIP-S-FTP_NORMAL, normal successful completion"&lt;BR /&gt;$ &lt;BR /&gt;</description>
      <pubDate>Fri, 25 Mar 2011 00:56:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277679#M101524</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2011-03-25T00:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: copy/ftp</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277680#M101525</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] VMS8.2-1 [...]&lt;BR /&gt;&lt;BR /&gt;For actually useful information:&lt;BR /&gt;&lt;BR /&gt;      tcpip show version&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] software written in pascal.&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; I use COPY/FTP [...]&lt;BR /&gt;&lt;BR /&gt;Is there any connection between the Pascal&lt;BR /&gt;program(s) and the COPY/FTP activity?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] rather than establishing an FTP&lt;BR /&gt;&amp;gt; connection to this server and getting a&lt;BR /&gt;&amp;gt; file, is COPY/FTP a better method?&lt;BR /&gt;&lt;BR /&gt;Better?  Is it significantly different?  What&lt;BR /&gt;do you think that COPY/FTP does?  (To find&lt;BR /&gt;out, you might try adding /VERBOSE to your&lt;BR /&gt;COPY/FTP command.)&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Can I specify a timeout?&lt;BR /&gt;&lt;BR /&gt;I don't see an easy way.  Do you expect to&lt;BR /&gt;get a time-out?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;  Or do I simply get an error status if the&lt;BR /&gt;&amp;gt; file is not there?&lt;BR /&gt;&lt;BR /&gt;I wouldn't expect to get a time-out if the&lt;BR /&gt;file isn't there.  If you really want to&lt;BR /&gt;know, then it should be pretty easy to run&lt;BR /&gt;the experiment.  (More reliable than asking&lt;BR /&gt;here, too.)</description>
      <pubDate>Fri, 25 Mar 2011 00:56:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277680#M101525</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2011-03-25T00:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: copy/ftp</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277681#M101526</link>
      <description>Ok, I've done a little digging into the history here.&lt;BR /&gt;&lt;BR /&gt;There are some similar-looking reports from six months back, and I see FTP issues from almost a year ago.  &lt;BR /&gt;&lt;BR /&gt;Would this be the same site and the same issue?&lt;BR /&gt;&lt;BR /&gt;And would that make it a legacy bug? :-)&lt;BR /&gt;&lt;BR /&gt;Consistency being what it is, I'd previously posted similar code for checking errors from the DCL code, Steven has asked similar questions about the version information, too. &lt;BR /&gt;&lt;BR /&gt;You will want to see several of the previous threads for (more of) the usual suggestions for these cases, ranging from debugging on up to Wireshark.&lt;BR /&gt;&lt;BR /&gt;And if this matter has become a priority here, do consider calling in some help to have a look at this network.  IP network errors don't usually lend themselves to easy debugging via forum postings.</description>
      <pubDate>Fri, 25 Mar 2011 01:17:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277681#M101526</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2011-03-25T01:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: copy/ftp</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277682#M101527</link>
      <description>thanks. I have now run a few tests. Sorry for the inconvenience.</description>
      <pubDate>Fri, 25 Mar 2011 01:20:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277682#M101527</guid>
      <dc:creator>tim lloyd_1</dc:creator>
      <dc:date>2011-03-25T01:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: copy/ftp</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277683#M101528</link>
      <description>Just to close this thread...this is a new issue. Not related to any previous issues.&lt;BR /&gt;&lt;BR /&gt;I don't have much experience of FTP under VMS so I am picking my way around. Noted that this is a simple test to carry out which I have now done.</description>
      <pubDate>Fri, 25 Mar 2011 01:25:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277683#M101528</guid>
      <dc:creator>tim lloyd_1</dc:creator>
      <dc:date>2011-03-25T01:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: copy/ftp</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277684#M101529</link>
      <description>testing on the computers in question has answered my question</description>
      <pubDate>Fri, 25 Mar 2011 01:26:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/copy-ftp/m-p/5277684#M101529</guid>
      <dc:creator>tim lloyd_1</dc:creator>
      <dc:date>2011-03-25T01:26:52Z</dc:date>
    </item>
  </channel>
</rss>

