Hi all: I got this Exception in the STUB ???
my code :
public Client(
String host, String title) {
// title is user name
super(title);
connect(host, title);
....
try {
server.send(title + " is online"); // CallBack works fine
} catch (RemoteException rmEx) {
...
try {
dataDB = server.criteriaFind("ANY");
...
} catch (RemoteException rmEx1)
in the RemoteServerImpl
...
public DataInfo[] criteriaFind(String criteria) {
try {
if (criteria == null) {criteria="ANY";}
return datalocal.criteriaFind(criteria);
}catch (DatabaseException e)
...
an also I defined in the server interface and generate the stub too. I have many others methods define in the same way and woks fine.
Some can help me ? I took a look inside the Client Stub and inside the wrapper method give me a such as RuntimeException
PLZ HELP !!!