Hello,
if I understand correct, after creating your two classes, just make a new Java class to utilize your stub. For example in our case:
package pkg;
import java.rmi.RemoteException;
public class ResourceTestclient {
/**
* @param args
* @throws RemoteException
*/
public static void main(String[] args) throws RemoteException {
MyServiceStub stub = new MyServiceStub();
MyServiceStub.GetStatusResponse res = stub.getStatus();
System.out.println("My response: "+res.get_return());
}
}
Recent comments
12 years 50 weeks ago
13 years 1 day ago
13 years 1 week ago
13 years 3 weeks ago
13 years 3 weeks ago
13 years 3 weeks ago
13 years 4 weeks ago
13 years 4 weeks ago
13 years 5 weeks ago
13 years 5 weeks ago