I've got my hands on an old Microsoft J++ project that uses some old Microsoft-specific things from the Microsoft Java Virtual Machine (now deprecated and unsupported). It uses additional things from the old Microsoft Java Development Kit, which I can't find anywhere on the web.
It seems the best route forward is to migrate this project...
Microsoft J++ does not have a Double.parseDouble() method. How do I do this?
...
I've inherited a legacy J++ project. I've upgraded this project to standard Sun Java successfully.
However, this project includes a native C++ dll which the Java code talks to via the Microsoft-specific RNI framework.
Needless to say, calling System.loadLibrary("myRniNativeDll") now throws a UnsatisifiedLinkError, saying one of the dep...
I'm trying to build mS-java compatible applet and I have references to classes in com.ms.*.
But I can't find the required libraries.
...