i have a remote object in the server side which implements an interface that declared in a dll.
something like that:

DLL-
interface Iremote{..}

Server Side-
class RemoteClass implements Iremote{..}

Client Side-
//connect to server
//Activator.GetObject --> typeof Iremote!!


till now everything is ok
now im trying to put it in a configuration file:

<service>
<wellknown mode="Singleton"
type="ServerSide.RemoteClass ,ServerSide" />
</service>

but what should i write in the "type"??
i know ServerSide.RemoteClass is wrong,
the type supposed to be - new RemoteClass().GetType()
but how to write that in the config?

thanks in advanced