<?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: using RTL routines and system services from java in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439761#M33018</link>
    <description>The link to &lt;A href="http://www.j2vms.co.uk/" target="_blank"&gt;http://www.j2vms.co.uk/&lt;/A&gt; now seems to be a travel agent. Would anyone know where I can find this package, or perhaps email a copy to me?&lt;BR /&gt;&lt;BR /&gt;Mike</description>
    <pubDate>Sun, 13 Nov 2005 15:50:35 GMT</pubDate>
    <dc:creator>Michael O'Connor_8</dc:creator>
    <dc:date>2005-11-13T15:50:35Z</dc:date>
    <item>
      <title>using RTL routines and system services from java</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439759#M33016</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;does anyone have an example to how i can use&lt;BR /&gt;RTL (like lib$spawn) routines in java on openvms? and which packages need to be imported to use them?&lt;BR /&gt;i'm using java 1.4.2 SDK on OpenVMS 7.3-1&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;arik</description>
      <pubDate>Thu, 09 Dec 2004 03:42:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439759#M33016</guid>
      <dc:creator>arik bekovich</dc:creator>
      <dc:date>2004-12-09T03:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: using RTL routines and system services from java</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439760#M33017</link>
      <description>Arik,&lt;BR /&gt;&lt;BR /&gt;You can write native C functions which will be a wraper to lib rtl routines.&lt;BR /&gt;&lt;BR /&gt;There is a package called J2VMS which has all the VMS system services and LIB$ routines.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.j2vms.co.uk/" target="_blank"&gt;http://www.j2vms.co.uk/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I have only tried some examples so I cant say you how it works.&lt;BR /&gt;&lt;BR /&gt;Bojan</description>
      <pubDate>Thu, 09 Dec 2004 04:23:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439760#M33017</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2004-12-09T04:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: using RTL routines and system services from java</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439761#M33018</link>
      <description>The link to &lt;A href="http://www.j2vms.co.uk/" target="_blank"&gt;http://www.j2vms.co.uk/&lt;/A&gt; now seems to be a travel agent. Would anyone know where I can find this package, or perhaps email a copy to me?&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Sun, 13 Nov 2005 15:50:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439761#M33018</guid>
      <dc:creator>Michael O'Connor_8</dc:creator>
      <dc:date>2005-11-13T15:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: using RTL routines and system services from java</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439762#M33019</link>
      <description>Like Bojan saud: make C toutines that to the interfacing, and call them from Java code. The user guide ( &lt;A href="http://h18012.www1.hp.com/java/documentation/1.4.2/ovms/docs/user_guide.html" target="_blank"&gt;http://h18012.www1.hp.com/java/documentation/1.4.2/ovms/docs/user_guide.html&lt;/A&gt; ) tells you how to do that (Chapter on Interfacing with non-Java Code).&lt;BR /&gt;&lt;BR /&gt;But first ask yourself WHY you would use Java at all. Since you plan to use VMS-specific code, you make your code non-transportable to other platforms. Consider to use a native language (C++, but there are other object oriented langiages ported to VMS (Modula2, Ruby (i think)) that are outrun Java by far in terms of overall performance. Using Java for a VMS-only application is like shooting a midget - with a cannon.</description>
      <pubDate>Sun, 13 Nov 2005 17:14:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439762#M33019</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2005-11-13T17:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: using RTL routines and system services from java</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439763#M33020</link>
      <description>We are developing an application with a GUI that will have to run on DECWindows Motif, Windows and Linux. Among other things, this GUI will expose a legacy application on our OpenVMS Alpha system, and Java is the cannon of our choice ;-)&lt;BR /&gt;&lt;BR /&gt;I can write the system services calls in C, then use JNI to call the C routines, but I wanted to see the J2VMS package, as it speeds up the learning process, and I possibly won't have to re-invent too many wheels.</description>
      <pubDate>Mon, 14 Nov 2005 16:51:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/using-rtl-routines-and-system-services-from-java/m-p/3439763#M33020</guid>
      <dc:creator>Michael O'Connor_8</dc:creator>
      <dc:date>2005-11-14T16:51:28Z</dc:date>
    </item>
  </channel>
</rss>

