JSDK 1.5 MetaData Compile problem
Folks I am trying to compile the following code using JDK1.5 compiler, I get the following compiler error...
<-- Code ->
public class Ping {
public @remote void ping() {
}
}
<-- Code ends->
<-- Error ->
C:\jdk1.5.0\test>C:\jdk1.5.0\bin\javac -source 1.5 Ping.java
Ping.java:6: cannot find symbol
symbol : class remote
location: class Ping
public @remote void ping() {
^
1 error
<-- error Ends ->
Any help would be appreciated....

