<?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: running Java on VMS issues in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128199#M44833</link>
    <description>You stated before:&lt;BR /&gt;&lt;BR /&gt;ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]&lt;BR /&gt;&lt;BR /&gt;in all uppercase. &lt;BR /&gt;As stated: Java is extremely sensitive to case. &lt;BR /&gt;By renaming each of these directories to lowercase:&lt;BR /&gt;&lt;BR /&gt;$ rename UPPER.DIR "lower.DIR"&lt;BR /&gt;&lt;BR /&gt;or have the right case used in the any of your path declarations.&lt;BR /&gt;</description>
    <pubDate>Mon, 15 Sep 2008 05:43:10 GMT</pubDate>
    <dc:creator>Willem Grooters</dc:creator>
    <dc:date>2008-09-15T05:43:10Z</dc:date>
    <item>
      <title>running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128191#M44825</link>
      <description>hi !&lt;BR /&gt;&lt;BR /&gt;I am getting error invoking java as follows, can someone tell me whats wrong ?&lt;BR /&gt;&lt;BR /&gt;$java -Doracle.jdbc.Trace=false -classpath ".;bin;%JCE_DIR%\IngrianNAE.jar;%JCE_DIR%\log4j-1.2.9.jar;%ORACLE_JAR%;l&lt;BR /&gt;ib\postgresql-8.1-405.jdbc3.jar;lib\sqljdbc.jar" com.ingrian.migrot.MigrateRotate&lt;BR /&gt;&lt;BR /&gt;Unrecognized option: -doracle.jdbc.trace=false&lt;BR /&gt;Could not create the Java virtual machine.&lt;BR /&gt;$!</description>
      <pubDate>Thu, 04 Sep 2008 20:06:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128191#M44825</guid>
      <dc:creator>SAMI AHMAD</dc:creator>
      <dc:date>2008-09-04T20:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128192#M44826</link>
      <description>sorry the actual command and error was : &lt;BR /&gt;&lt;BR /&gt;$java -classpath ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]IngrianNAE.jar:ORACLE:[ORACLE9I.INGRIAN.ON&lt;BR /&gt;LINE.INGRIAN_MIGROTATION.LIB]log4j-1.2.9.jar:ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]postgresql-8.1&lt;BR /&gt;-405.jdbc3.jar:ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]sqljdbc.jar com.ingrian.migrot.MigrateRotate&lt;BR /&gt;&lt;BR /&gt;Exception in thread "main" java.lang.NoClassDefFoundError: com/ingrian/migrot/migraterotate&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Sep 2008 20:36:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128192#M44826</guid>
      <dc:creator>SAMI AHMAD</dc:creator>
      <dc:date>2008-09-04T20:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128193#M44827</link>
      <description>You cannot separate the members of the classpath with a colon and also use VMS syntax filenames since those path specs include colons as device name separators.  Try setting up your environment with the following commands first, then run your command after converting the names of the paths in your classpath to Unix syntax.&lt;BR /&gt;&lt;BR /&gt;$ SET PROCESS/PARSE_STYLE=EXTENDED&lt;BR /&gt;$ DEFINE/NOLOG/JOB DECC$ARGV_PARSE_STYLE        TRUE&lt;BR /&gt;$ DEFINE/NOLOG/JOB DECC$EFS_CASE_PRESERVE       TRUE&lt;BR /&gt;$ DEFINE/NOLOG/JOB DECC$EFS_CASE_SPECIAL        TRUE&lt;BR /&gt;$ DEFINE/NOLOG/JOB DECC$EFS_CHARSET             TRUE&lt;BR /&gt;$ DEFINE/NOLOG/JOB DECC$ENABLE_GETENV_CACHE     TRUE&lt;BR /&gt;$ DEFINE/NOLOG/JOB JAVA$FILENAME_CONTROLS       8       ! only enable the mixed UNIX/VMS filespec mapping&lt;BR /&gt;$ DEFINE/NOLOG/JOB JAVA$READDIR_CASE_DISABLE    TRUE    ! turns off auto. class/source case-sensitive name extraction&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Sep 2008 01:41:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128193#M44827</guid>
      <dc:creator>Craig A Berry</dc:creator>
      <dc:date>2008-09-05T01:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128194#M44828</link>
      <description>hi Craig!&lt;BR /&gt;&lt;BR /&gt;I defined all the logicals that you mentioned but Iam still getting the same error.  Also the jar utility can't find the jar file where as the dir command can find the file :&lt;BR /&gt;&lt;BR /&gt;QATST$ jar tvf ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]IngrianMigrot.jar&lt;BR /&gt;----_JAVA_LAUNCHER_DEBUG----&lt;BR /&gt;JRE path is /sys$common/java$131/jre&lt;BR /&gt;jvm.cfg[0] = -&amp;gt;-classic&amp;lt;-&lt;BR /&gt;1 micro seconds to parse jvm.cfg&lt;BR /&gt;Does `java$jvm_shr' exist ... yes.&lt;BR /&gt;JVM path is java$jvm_shr&lt;BR /&gt;JavaVM args:&lt;BR /&gt;    version 0x00010002, ignoreUnrecognized is JNI_FALSE, nOptions is 4&lt;BR /&gt;    option[ 0] = '-Denv.class.path=/oracle/oracle9i/ingrian/online/ingrian_migrotation/lib/IngrianNAE.jar:/oracle/oracle9i/ingrian/o&lt;BR /&gt;nline/ingrian_migrotation/lib/IngrianMigrot.jar:/oracle/oracle9i/ingrian/online/ingrian_migrotation/lib/log4j-1_2_13.jar:/oracle/ora&lt;BR /&gt;cle9i/ingrian/online/ingrian_migrotation/lib/postgresql-8.1-405_jdbc3.jar:/oracle/oracle9i/ingrian/online/ingrian_migrotation/lib/sq&lt;BR /&gt;ljdbc.jar:/oracle/oracle9i/ingrian/online/ingrian_migrotation/lib/ojdbc14.jar:/oracle/oracle9i/ingrian/online/ingrian_migrotation/bi&lt;BR /&gt;n'&lt;BR /&gt;    option[ 1] = '-Dapplication.home=/sys$common/java$131'&lt;BR /&gt;    option[ 2] = '-Djava.class.path=/sys$common/java$131/lib/tools.jar:/sys$common/java$131/classes'&lt;BR /&gt;    option[ 3] = '-Xms8m'&lt;BR /&gt;1 micro seconds to InitializeJVM&lt;BR /&gt;Main-Class is 'sun.tools.jar.Main'&lt;BR /&gt;Apps' argc is 2&lt;BR /&gt;    argv[ 0] = 'tvf'&lt;BR /&gt;    argv[ 1] = 'ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]IngrianMigrot.jar'&lt;BR /&gt;1 micro seconds to load main class&lt;BR /&gt;----_JAVA_LAUNCHER_DEBUG----&lt;BR /&gt;java.io.FileNotFoundException: ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]IngrianMigrot.jar (no such file or directory)&lt;BR /&gt;        at java.io.FileInputStream.open(Native Method)&lt;BR /&gt;        at java.io.FileInputStream.&lt;INIT&gt;(FileInputStream.java, Compiled Code)&lt;BR /&gt;        at sun.tools.jar.Main.run(Main.java, Compiled Code)&lt;BR /&gt;        at sun.tools.jar.Main.main(Main.java, Compiled Code)&lt;BR /&gt;QATST$ dir ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]IngrianMigrot.jar&lt;BR /&gt;&lt;BR /&gt;Directory ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]&lt;BR /&gt;&lt;BR /&gt;IngrianMigrot.jar;1 &lt;BR /&gt;&lt;BR /&gt;Total of 1 file.&lt;/INIT&gt;</description>
      <pubDate>Fri, 05 Sep 2008 15:56:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128194#M44828</guid>
      <dc:creator>SAMI AHMAD</dc:creator>
      <dc:date>2008-09-05T15:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128195#M44829</link>
      <description>I don't know exactly what the problem is but it looks like you are running Java 1.3.1, which is really quite old -- make sure the (apparently) Oracle-supplied classes you are using support that version.&lt;BR /&gt;&lt;BR /&gt;What happens if you simply do:&lt;BR /&gt;&lt;BR /&gt;$ jar tvf IngrianMigrot.jar &lt;BR /&gt;&lt;BR /&gt;and let the classpath settings determine where to look?&lt;BR /&gt;&lt;BR /&gt;Make sure you treat multiple dots consistently.  If the classpath is log4j-1.2.9.jar, then the file had better be on an ODS-5 disk and named log4j-1^.2^.9.jar.  If the classpath is log4j-1_2_9.jar, then the actual filename should match that (underscores, not escaped dots).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Sep 2008 17:35:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128195#M44829</guid>
      <dc:creator>Craig A Berry</dc:creator>
      <dc:date>2008-09-05T17:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128196#M44830</link>
      <description>Java is (fairly extremely) case sensitive. VMS isn't at all unless explicitly set that way.&lt;BR /&gt;Could that be the cause?</description>
      <pubDate>Tue, 09 Sep 2008 05:33:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128196#M44830</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2008-09-09T05:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128197#M44831</link>
      <description>I am now getting this error can you tell whats wrong? &lt;BR /&gt;&lt;BR /&gt;[Loaded java.security.cert.Certificate from /sys$common/java$142/jre/lib/rt.jar]&lt;BR /&gt;[Loaded [Ljava.security.cert.Certificate;]&lt;BR /&gt;Exception in thread "main" java.lang.NoClassDefFoundError: MigrateRotate (wrong name: com/ingrian/migrot/MigrateRotate)</description>
      <pubDate>Tue, 09 Sep 2008 20:44:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128197#M44831</guid>
      <dc:creator>SAMI AHMAD</dc:creator>
      <dc:date>2008-09-09T20:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128198#M44832</link>
      <description>&lt;P&gt;Hi, Sami Ahmad&lt;BR /&gt;&lt;BR /&gt;from your Forum Profile:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have assigned points to 0 of 17 responses to my questions.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Maybe you can find some time to do some assigning?&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;[Broken link removed on &amp;lt;4/3/2017&amp;gt; by Mod]&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Mind, I do NOT say you necessarily need to give lots of points. It is fully up to _YOU_ to decide how many. If you consider an answer is not deserving any points, you can also assign 0 ( = zero ) points, and then that answer will no longer be counted as unassigned.&lt;BR /&gt;Consider, that every poster took at least the trouble of posting for you!&lt;BR /&gt;&lt;BR /&gt;To easily find your streams with unassigned points, click your own name somewhere.&lt;BR /&gt;This will bring up your profile.&lt;BR /&gt;Near the bottom of that page, under the caption "My Question(s)" you will find "questions or topics with unassigned points " Clicking that will give all, and only, your questions that still have unassigned postings.&lt;BR /&gt;&lt;BR /&gt;Thanks on behalf of your Forum colleagues.&lt;BR /&gt;&lt;BR /&gt;PS. nothing personal in this. I try to post it to everyone with this kind of assignment ratio in this forum. If you have received a posting like this before please do not take offence none is intended!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 07:56:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128198#M44832</guid>
      <dc:creator>Duncan Morris</dc:creator>
      <dc:date>2017-04-03T07:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128199#M44833</link>
      <description>You stated before:&lt;BR /&gt;&lt;BR /&gt;ORACLE:[ORACLE9I.INGRIAN.ONLINE.INGRIAN_MIGROTATION.LIB]&lt;BR /&gt;&lt;BR /&gt;in all uppercase. &lt;BR /&gt;As stated: Java is extremely sensitive to case. &lt;BR /&gt;By renaming each of these directories to lowercase:&lt;BR /&gt;&lt;BR /&gt;$ rename UPPER.DIR "lower.DIR"&lt;BR /&gt;&lt;BR /&gt;or have the right case used in the any of your path declarations.&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Sep 2008 05:43:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128199#M44833</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2008-09-15T05:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: running Java on VMS issues</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128200#M44834</link>
      <description>I resolved the issue  by following the advise in this msg trail plus adding few things like defining JAVA$CLASSPATH variable and using st proces/case=sensitive while unziping the class files.</description>
      <pubDate>Sun, 16 Nov 2008 04:59:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/running-java-on-vms-issues/m-p/5128200#M44834</guid>
      <dc:creator>SAMI AHMAD</dc:creator>
      <dc:date>2008-11-16T04:59:07Z</dc:date>
    </item>
  </channel>
</rss>

