Setting Remote Options

ImDaFrEaK

Well-known member
Joined
Jan 7, 2006
Messages
416
Location
California
Programming Experience
5-10
I learned on Microsoft.com and from a book I have (that barely teaches remote programming) that a remote object cannot send events or delegates without the typefilterlevel = full. Now, I see how to make this happen with configuration files but how do you do it in code. Here's a code snippet that I am using right now. Remember I am new to remote programming and I wish I could find a good book on it. If you know a good site, book, class to take, to learn remote programming then I'm interested in that as well. Anyways, here's my code please help.

Dim Channel AsNew HttpChannel
ChannelServices.RegisterChannel(Channel)
RemotingServices.Marshal(messg, "MSG.rem")

Also, I'm confused with what type of object this is, Singleton or SingleCall
 
Back
Top