Hi,
J have input parameter that J must send to every remote method call(for example username...). How can J pass that parameter to server without write it in every method signature?
So instead of : void createAccout(Account a, String username) throws RemoteException;
J would like to have : void createAccout(Account a) throws RemoteException;
Thank you, Dragan.