Re: [AltRMI] Passing stubs around

2002-02-18 Thread Paul Hammant
Vinay, >Paul, > >>This submitted too. Thanks. >> >welcome.. >So what would be the right way to >make the Provider-Consumer example run? > Sorry dude, I turned the bat files into ant targets : ant -buildfile tests2.xml procon-serve ant -buildfile tests2.xml procon-client - Paul -- To u

Re: [AltRMI] Passing stubs around

2002-02-18 Thread vinaysahil chandran
Another option would be to use Annotations; annotateClass(..) overrides in our ClassLoaderObjectOutputStream(todo) to pass the extra class information which ClassLoaderObjectInputStream can use to dynamically load new classes Have not given much thought on the way we can achieve the same

[AltRMI] Passing stubs around

2002-02-17 Thread vinaysahil chandran
Hi, The client stubs should be capable of being passed around as an argument(s).. a simple program to give the stub one got from the server back to it is attached herewith, One would hope that it would resolve on the server , to the impl registered with it What would be right way to acheive