[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.remoting

Performance Question on SingleCall objects.

Joshua Belden

9/21/2004 5:15:00 PM

I have an object, WidgetManager, on the server that exposes CreateWidget() to
return Widgets back to the client. I've created a well-known Interface
IWidgetManager that defines CreateWidget() to provide some isolation between
the client and server.

However, WidgetManager is actually used for some additional related
operations and is exposing public methods, that are not defined in
IWidgetManager.

When clients get a proxy to the IWidgetManager object, I know that they will
not get the methods defined in the main WidgetManager class, but will
additional data be transported accross the pipe because of the additional
methods exposed? Am I correct in assuming that the proxy created will only
contain methods exposed in IWidgetManager.

Additionally, how can I examine the actual proxy that is created?