<?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: Java on VMS - Retrieving logical names and equivalence names programmatically in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225954#M39526</link>
    <description>&lt;BR /&gt;Llewellyn,&lt;BR /&gt;  This has always been a hole in the OpenVMS logical name services. There's no documented interface to do wildcard searches of logical name tables. The SHOW LOGICAL command can do it, but there's no $TRNLNM mechanism (and hence, no getenv).&lt;BR /&gt;&lt;BR /&gt;  You could parse the output of a SHOW LOGICAL, but that gets very ugly :-(&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 22 Feb 2010 04:35:11 GMT</pubDate>
    <dc:creator>John Gillings</dc:creator>
    <dc:date>2010-02-22T04:35:11Z</dc:date>
    <item>
      <title>Java on VMS - Retrieving logical names and equivalence names programmatically</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225948#M39520</link>
      <description>In Java on OpenVMS, how do you retrieve VMS logical names and equivalence names?&lt;BR /&gt;&lt;BR /&gt;System.getenv() returns only a few seemingly java related items.&lt;BR /&gt;System.getProperties() similarly only returns java related items.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Feb 2010 05:46:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225948#M39520</guid>
      <dc:creator>Llewellyn Robinson</dc:creator>
      <dc:date>2010-02-19T05:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Java on VMS - Retrieving logical names and equivalence names programmatically</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225949#M39521</link>
      <description>&lt;!--!*#--&gt;Really?  My Java experience in minimal, but&lt;BR /&gt;the C RTL function getenv() certainly can do&lt;BR /&gt;more than that, and I'd expect the Java stuff&lt;BR /&gt;to use it.  ("HELP CRTL GETENV".)  Do you&lt;BR /&gt;have a convenient demonstration program?</description>
      <pubDate>Fri, 19 Feb 2010 06:00:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225949#M39521</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-02-19T06:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Java on VMS - Retrieving logical names and equivalence names programmatically</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225950#M39522</link>
      <description>Llewellyn,&lt;BR /&gt;&lt;BR /&gt;Welcome to the OpenVMS forum.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;See the release notes description of System.getenv():&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h18012.www1.hp.com/java/documentation/1.5.0/ovms/docs/release_notes.html#usinggetenv" target="_blank"&gt;http://h18012.www1.hp.com/java/documentation/1.5.0/ovms/docs/release_notes.html#usinggetenv&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Bojan</description>
      <pubDate>Fri, 19 Feb 2010 07:29:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225950#M39522</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2010-02-19T07:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Java on VMS - Retrieving logical names and equivalence names programmatically</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225951#M39523</link>
      <description>Or depending on what (else) you're after, the JNI: &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/1271" target="_blank"&gt;http://labs.hoffmanlabs.com/node/1271&lt;/A&gt;</description>
      <pubDate>Fri, 19 Feb 2010 13:37:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225951#M39523</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2010-02-19T13:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Java on VMS - Retrieving logical names and equivalence names programmatically</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225952#M39524</link>
      <description>My original goal was to be able to search through all logicals on the system that end with "$database", in order to perform some tasks on each Rdb database that the logicals pointed to.&lt;BR /&gt;&lt;BR /&gt;It seems that the JVM will only be allowed access to the logicals that I specify in another logical, thus preventing the ability for my app to automatically discover the databases through these means.&lt;BR /&gt;&lt;BR /&gt;Also, it turns out we're running a JVM too old to use JAVA$GETENV_SYSTEM_LIST etc. We're on 1.5.0-3.&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.</description>
      <pubDate>Sun, 21 Feb 2010 23:53:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225952#M39524</guid>
      <dc:creator>Llewellyn Robinson</dc:creator>
      <dc:date>2010-02-21T23:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Java on VMS - Retrieving logical names and equivalence names programmatically</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225953#M39525</link>
      <description>The System.getenv() release helps me but doesn't solve my issue completely.</description>
      <pubDate>Mon, 22 Feb 2010 03:50:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225953#M39525</guid>
      <dc:creator>Llewellyn Robinson</dc:creator>
      <dc:date>2010-02-22T03:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Java on VMS - Retrieving logical names and equivalence names programmatically</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225954#M39526</link>
      <description>&lt;BR /&gt;Llewellyn,&lt;BR /&gt;  This has always been a hole in the OpenVMS logical name services. There's no documented interface to do wildcard searches of logical name tables. The SHOW LOGICAL command can do it, but there's no $TRNLNM mechanism (and hence, no getenv).&lt;BR /&gt;&lt;BR /&gt;  You could parse the output of a SHOW LOGICAL, but that gets very ugly :-(&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Feb 2010 04:35:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/java-on-vms-retrieving-logical-names-and-equivalence-names/m-p/5225954#M39526</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2010-02-22T04:35:11Z</dc:date>
    </item>
  </channel>
</rss>

