We have a very old client-server application that uses JRE 1.3, it's network communication is based on sockets and has a desktop client, my boss is asking me to investigate the chance to install it on windows 8. I don´t have a windows 8 at hand, so has someone tried to do such thing? The desktop app is really huge, so upgrading it, is not an option.
Asked
Active
Viewed 354 times
2
-
How about getting the redistributable ZIP version of JRE and using it explicitly from command line? – Rekin Mar 07 '13 at 15:04
-
Is the application not working properly on JRE 1.6+? I thought JRE is backward compatible... Please have a look at this: http://stackoverflow.com/questions/4692626/is-jdk-upward-or-backward-compatible – lucian.pantelimon Mar 07 '13 at 15:05
-
it should not be a problem AFAIK. But not sure. – Narendra Pathai Mar 07 '13 at 15:05
2 Answers
1
Java strives to keep very strict backwards compatibility, so I would try to install the latest Oracle Java JRE version on the Windows 8 machine and execute the application on that.
Chances are it will work out of the box.

Andrea
- 12,296
- 4
- 32
- 39
0
As Andrea says in another answer, backwards compatibility is very important in Java. However things do get deprecated and potentially eventually removed.
You may want to review the following, lists of things deprecated in the various java versions in case something in there is core to how your application works.

Kevin D
- 3,564
- 1
- 21
- 38