|
-
July 25th, 2005, 10:36 AM
#1
need help with config file
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|