<?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: FTP_SERVER  and dedicated file processing in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545648#M49206</link>
    <description>Thierry,&lt;BR /&gt;&lt;BR /&gt;the way we do this nowadays, is to have a special account with only NETWORK access, and do the required processing in LOGIN.COM&lt;BR /&gt;&lt;BR /&gt;Compared to DECnet rather clumsy, but it does the job.&lt;BR /&gt;&lt;BR /&gt;Success.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have on eon me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
    <pubDate>Mon, 16 May 2005 15:47:58 GMT</pubDate>
    <dc:creator>Jan van den Ende</dc:creator>
    <dc:date>2005-05-16T15:47:58Z</dc:date>
    <item>
      <title>FTP_SERVER  and dedicated file processing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545647#M49205</link>
      <description>TCPIP 5.4 under VMS 7.3-2&lt;BR /&gt;&lt;BR /&gt;In the old days using decnet , we use to be able to create our own net$server command file to allow a file transfer to a specific user to get a dedicated processing.&lt;BR /&gt;&lt;BR /&gt;Need to do the same with FTP server.  I can modify  sys$system:TCPIP$FTP_SERVER.COM to add DCL to do my stuff. but then all ftp request are going thru it, which i'd rather avoid.  Is there a way of running a specific ccommand file insted of the generic one, using a logicals or any other way ?&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 16 May 2005 15:15:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545647#M49205</guid>
      <dc:creator>Thierry Hingray</dc:creator>
      <dc:date>2005-05-16T15:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: FTP_SERVER  and dedicated file processing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545648#M49206</link>
      <description>Thierry,&lt;BR /&gt;&lt;BR /&gt;the way we do this nowadays, is to have a special account with only NETWORK access, and do the required processing in LOGIN.COM&lt;BR /&gt;&lt;BR /&gt;Compared to DECnet rather clumsy, but it does the job.&lt;BR /&gt;&lt;BR /&gt;Success.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have on eon me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Mon, 16 May 2005 15:47:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545648#M49206</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-05-16T15:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: FTP_SERVER  and dedicated file processing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545649#M49207</link>
      <description>Thierry,&lt;BR /&gt;&lt;BR /&gt;Any reason you can't use DECnet over IP?&lt;BR /&gt;&lt;BR /&gt;Dave&lt;BR /&gt;</description>
      <pubDate>Mon, 16 May 2005 21:01:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545649#M49207</guid>
      <dc:creator>David B Sneddon</dc:creator>
      <dc:date>2005-05-16T21:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: FTP_SERVER  and dedicated file processing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545650#M49208</link>
      <description>If this processing is invoked by a program, consider the following:&lt;BR /&gt;* create a commandprocedure to do whatever is needed. It may read and write through SYS$NET&lt;BR /&gt;* define a TCPIP service (TCPIP SET SERVICE) , for any user (NETWORK ACCCESS only, as Jan has specified) (/USER=), and specify this commandprocedure to be executed (/FILE=) on any (non-used) port (PORT=). This file can reside in the login directory of that user, but acually anywhere you like, as long as you specify the full patyh in the /FILE parameter (any logicals used there MUST be /SYSTEM!)&lt;BR /&gt;* Let your program connect to this port and issue the commands used.&lt;BR /&gt;&lt;BR /&gt;BTW: The requesting "program" can be a DCL procedure, TELNETting to that port.</description>
      <pubDate>Tue, 17 May 2005 02:09:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545650#M49208</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2005-05-17T02:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: FTP_SERVER  and dedicated file processing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545651#M49209</link>
      <description>Thanks for the answers.&lt;BR /&gt;&lt;BR /&gt;1) The originator of the tcpip transfer is an IBM mainframe, so I can't use decnet over IP.&lt;BR /&gt;&lt;BR /&gt;2) I was looking at the dedicated user solution ( from Jan) but was hoping there would be a more elegant one.  &lt;BR /&gt;&lt;BR /&gt;3)Willem's idea looks good, will look into it&lt;BR /&gt;th</description>
      <pubDate>Tue, 17 May 2005 07:00:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ftp-server-and-dedicated-file-processing/m-p/3545651#M49209</guid>
      <dc:creator>Thierry Hingray</dc:creator>
      <dc:date>2005-05-17T07:00:42Z</dc:date>
    </item>
  </channel>
</rss>

