• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Java version

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello every one!
Does any body know how to find out which JAVA version a particular application is using. We are using Netscape application server and it has some in built JDK/JVM. If I write some programs they work well on the console, but are not working when I use them along with the application.
If any one know how to find, please let me know.
fyi: Netscape application server is using server side JAVASCRIPT.
thanks
praveen
 
High Plains Drifter
Posts: 7289
Netbeans IDE VI Editor
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Tranferring this to the iPlanet (aka Netscape)forum...
 
Ranch Hand
Posts: 349
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Call this method and view you system console log file:
System.getProperties().list(System.out);
It will tell you a lot more information you never know how to find them. Note that this method is standard for any JDK.
Faisal
 
Ranch Hand
Posts: 247
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Something else you can do is look in your iPlanet kregedit registry and look at the key "SOFTWARE\iPlanet\Application Server\6.0\Java", or something similar on your server. This will list the classpath, libpath, and JVM the server is using. iPlanet App Server comes with JDK 1.2.2 installed in .../ias6/ias/usr/java, which is where the classpath above points to. The classpath setting for the server ovverides any system classpath settings, AFIK.
Hope this helps..
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic