<?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: TNA Question in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566588#M6172</link>
    <description>If you hit the web (google) with +"UNKNOWN TERMINAL TYPE" +VMS then you will find some earlier reports.&lt;BR /&gt;&lt;BR /&gt;Mostly this error occurs when trying to issue commands like SET TERM/INQ on non-terminals (like the TNA device).&lt;BR /&gt;&lt;BR /&gt;See if SYLOGIN.COM or the LOGIN.COM file for the username in question contains SET TERM commands. Those SHOULD be in a conditional sections, only to be executed in "INTERACTIVE" mode.&lt;BR /&gt;&lt;BR /&gt;A workaround could be to add:&lt;BR /&gt; $ if f$mode() .nes. "INTERACTIVE" then exit 1&lt;BR /&gt;Just befor the line with the SET TERM, but after required logicals and symbols are defined.&lt;BR /&gt;&lt;BR /&gt;What is not clear to me, is how an upgrade to 7.2-2 could have played a role. One would suspect something with those SYLOGIN or LOGIN.COM file but I would not expect an update to touch that. Maybe someone used to upgrade as an down-time opportunity to bring forward other changes as well?&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
    <pubDate>Sun, 19 Jun 2005 22:57:52 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2005-06-19T22:57:52Z</dc:date>
    <item>
      <title>TNA Question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566587#M6171</link>
      <description>I have a piece of software that is designed to log into a OpenVMS system (among others), find reports, and perform an FTP file download.  This software has worked nearly flawlessly until we performed an upgrade to version V7.2-2 yesterday, but now an error is displayed when connecting:&lt;BR /&gt;   "ERROR MODIFYING TNA123" (the number seems to increase wich each connection attempt)&lt;BR /&gt;   "UNKNOWN TERMINAL TYPE"&lt;BR /&gt;&lt;BR /&gt;I honestly have no idea what this is complaining about, the only thing I know is the FT GET commands it sends are failing (complaints "SIZE is unimplemented" and "file not found" even after it has determined the file is there - including it's size in bytes) and the support group for the software isn't in on Sundays.  It would sure be nice to fix this myself instead of relying on someone nearly two-thousand miles away to do it for me, especially since I keep getting this itchy feeling telling me that this isn't a huge problem.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!</description>
      <pubDate>Sun, 19 Jun 2005 20:38:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566587#M6171</guid>
      <dc:creator>David Hickerson</dc:creator>
      <dc:date>2005-06-19T20:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: TNA Question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566588#M6172</link>
      <description>If you hit the web (google) with +"UNKNOWN TERMINAL TYPE" +VMS then you will find some earlier reports.&lt;BR /&gt;&lt;BR /&gt;Mostly this error occurs when trying to issue commands like SET TERM/INQ on non-terminals (like the TNA device).&lt;BR /&gt;&lt;BR /&gt;See if SYLOGIN.COM or the LOGIN.COM file for the username in question contains SET TERM commands. Those SHOULD be in a conditional sections, only to be executed in "INTERACTIVE" mode.&lt;BR /&gt;&lt;BR /&gt;A workaround could be to add:&lt;BR /&gt; $ if f$mode() .nes. "INTERACTIVE" then exit 1&lt;BR /&gt;Just befor the line with the SET TERM, but after required logicals and symbols are defined.&lt;BR /&gt;&lt;BR /&gt;What is not clear to me, is how an upgrade to 7.2-2 could have played a role. One would suspect something with those SYLOGIN or LOGIN.COM file but I would not expect an update to touch that. Maybe someone used to upgrade as an down-time opportunity to bring forward other changes as well?&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Sun, 19 Jun 2005 22:57:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566588#M6172</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-06-19T22:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: TNA Question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566589#M6173</link>
      <description>All LOGIN procedures need to be "threaded" according to process mode. Use this as a template:&lt;BR /&gt;&lt;BR /&gt;$! Commands for all modes here&lt;BR /&gt;$!&lt;BR /&gt;$ GOTO DO_'F$MODE()&lt;BR /&gt;$&lt;BR /&gt;$ DO_BATCH:&lt;BR /&gt;$! Commands for BATCH mode here&lt;BR /&gt;$ EXIT&lt;BR /&gt;$!&lt;BR /&gt;$ DO_NETWORK:&lt;BR /&gt;$! Commands for NETWORK mode here&lt;BR /&gt;$ EXIT&lt;BR /&gt;$!&lt;BR /&gt;$ DO_OTHER:&lt;BR /&gt;$! Commands for OTHER mode here&lt;BR /&gt;$ EXIT&lt;BR /&gt;$!&lt;BR /&gt;$ DO_INTERACTIVE:&lt;BR /&gt;$! Commands for INTERACTIVE mode here&lt;BR /&gt;$ EXIT&lt;BR /&gt;&lt;BR /&gt;Incoming FTP connections will be "NETWORK", so make sure there are no commands that expect a terminal in the network section.&lt;BR /&gt;&lt;BR /&gt;Remember to check both the SYLOGIN.COM and the individual user LOGIN.COM.&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jun 2005 00:02:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566589#M6173</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-06-20T00:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: TNA Question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566590#M6174</link>
      <description>David, &lt;BR /&gt;beside the problem of the 'unknown terminal' there seems to be also problem with your FTP itself (SIZE is unimplemented...).&lt;BR /&gt;&lt;BR /&gt;Did you change the TCPIP product during your upgrade or did your application use a separate FTP utility? Btw. From what version did you upgrade?&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Mon, 20 Jun 2005 00:14:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566590#M6174</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2005-06-20T00:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: TNA Question</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566591#M6175</link>
      <description>David,&lt;BR /&gt;welcome to vms forum.&lt;BR /&gt; &lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;I have a piece of software that is designed to log into a OpenVMS system (among others), find reports, and perform an FTP file download.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;Reading your first sentence, I understand your software creates an interactive or network session on vms; after of this it executes ftp. If is it true, the problem is indeed located in SYLOGIN as posted by Hein. I remember SYLOGIN template was radically modificed between V6 and V7 of vms.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jun 2005 01:59:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/tna-question/m-p/3566591#M6175</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-06-20T01:59:04Z</dc:date>
    </item>
  </channel>
</rss>

