views:

15

answers:

1

What are some good names for the client and server side classes that communicate over the network when implementing a remote proxy? The classes are often called stub and skelleton but I don't find those names very "intention revealing". Are there any other (better) alternatives?

+2  A: 

The conventions in CORBA are "stub" and "servant" but I agree the names aren't great. I like "proxy" instead of stub and I guess "servant" isn't too bad.

bshields
I like using the suffix "Proxy".
Lyndsey Ferguson