Hi,
I have a project where I need to separate a VB app from his components that will reside on a separate machine. I've decided to use the .Net remoting to do accomplish this. My solution is to recreate the .net components with the same signature that the vb components and only change the references in my VB app and recompile it. This way, when the vb app creates a new obejct, the .net component is being created instead of the vb component. The .net component then creates a remote call to access the vb code on a remote machine.
When a remote call is done with a vb class, everything works fine, but when the call has a vb public type as a parameter, I always get the "not marked as serializable" error. Does anyone has an idea of what it may be?
thanks
---
Allen Anderson - 29 Jun 2004 15:10 GMT
I believe Sunny correctly answered this in a previous post.
Allen Anderson
http://www.glacialcomponents.com
mailto: allen@put my website base here.com
>Hi,
> I have a project where I need to separate a VB app from his components that will reside on a separate machine. I've decided to use the .Net remoting to do accomplish this. My solution is to recreate the .net components with the same signature that the vb components and only change the references in my VB app and recompile it. This way, when the vb app creates a new obejct, the .net component is being created instead of the vb component. The .net component then creates a remote call to access the vb code on a remote machine.
[quoted text clipped - 4 lines]
>
>---