im pretty new to rmi and im trying to get basic rmi client-callback
program running on windows xp. But wen i try to compile on of the files
in the dos window(javac RMIServer.java), i get the following msg:
Note: RMIServer.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
what does this mean and how do i fix it? any help appreciated please...
Daniel Dyer - 23 Jan 2006 19:31 GMT
> im pretty new to rmi and im trying to get basic rmi client-callback
> program running on windows xp. But wen i try to compile on of the files
[quoted text clipped - 4 lines]
>
> what does this mean and how do i fix it? any help appreciated please...
Did you recompile with -Xlint:deprecation for details?
Basically, your code is using methods or classes that have been
obsoleted. If you recompile with the suggested switch it will tell you
which ones. Your may well still work without addressing these issues, but
typically it's a warning that there's a newer, better way to do something.
Dan.

Signature
Daniel Dyer
http://www.dandyer.co.uk
Bruce Lee - 23 Jan 2006 19:54 GMT
> im pretty new to rmi and im trying to get basic rmi client-callback
> program running on windows xp. But wen i try to compile on of the files
[quoted text clipped - 4 lines]
>
> what does this mean and how do i fix it? any help appreciated please...
It's not an error, it's just telling you you've got some old objects in the
software.