Microsoft JVM

Hi,What if some java code is compiled to work with MS JVM, which compiler should be used? What is the latest version of jdk I can use? Is there some specific compiler?Thanks.
[195 byte] By [boba5555a] at [2007-10-3 8:43:00]
# 1
JMS is Java v.1.1 and can be compiled with SUN/IBM Java Compiler. But if this Java code uses specific JMS packages you should substitute them with equivalent SUN Java's packages. You also should remove Preprocessor's commands included in your code.
vitallisa at 2007-7-15 3:51:32 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2
Can you give me some link to download that compiler? I tryed to find, but nothing. Thanks.
boba5555a at 2007-7-15 3:51:32 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 3
The MS JVM is not Java. If you have access to the code, I'd refactor it to be Sun/Java compliant.
MickeyOnJavaa at 2007-7-15 3:51:32 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 4
I migrated a huge JMS applet to SUN Java by compiling it with JDK1.5. Then its AWT GUI was changed with my tool to SWING. Before Applet's migration I rewrote some peaces of the code that where specific to JMS.But in common JMS is Java v.1.1 (including JNI).
vitallisa at 2007-7-15 3:51:32 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 5
Does that mean I must compile with java 1.1? if your answer is yes then I have swing components. Can it work under java 1.1? I also have some AWT. Can you give me link to download it. I cann't find it.Thnaks a lot.
boba5555a at 2007-7-15 3:51:32 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 6
Java 1.1 sources can be compiled with JDK1.1 and any above (i.e. JDK1.5.x)
vitallisa at 2007-7-15 3:51:32 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 7

MS have a transition guide for moving off of their VM:

http://www.microsoft.com/mscopr/java

Sun also has migration guides in the JDK docs:

http://java.sun.com/j2se/1.4.2/docs/guide/deployment/deployment-guide/upgrade-guide

And there is a specific forum for discussing this:

http://forum.java.sun.com/forum.jspa?forumID=481

davidholmesa at 2007-7-15 3:51:32 > top of Java-index,Java HotSpot Virtual Machine,Specifications...