![]() |
|
SPONSORED LINKS BY GOOGLE |
|
2
10th March 16:25
External User
Posts: 1
|
By default your CBO will be marhsalled. You can still mark it as
Serializable, but you would have to do the serialization manually. And frankly, there's no point as in that case your proxy wouldn't be created. As a side note, what you want is basically to get your object from the server and use it locally, and intercept locally all the calls through a proxy... This is going to be non trivial frankly, as even if you do serialize your object, find a way to transfer it back to the client and execute it, you still need it on the client side as an assembly (so that it can be instantiated), and you need the proxy. Why don't you just : 1. Execute the CBO locally 2. Execute the CBO remotely and don't care about serialization? In that case, you don't even need a CBO, an MBR will be enough as you already cross a boundary. -- Sebastien Lambla http://thetechnologist.is-a-geek.com/blog/ "Clu" <claudio.brotto@softeco.it> a écrit dans le message de news: 3bf701c3aa7f$f20bbd50$a601280a@phx.gbl... |
|
|
SPONSORED LINKS BY GOOGLE |
|
|