Hello,
I have an application written in C#. Each component is compiled into a ServicedComponent so I can put it in COM+.
However, since I have given my component assemblies strong names, I now receive serialization errors when I try and pass classes between methods in separate assemblies.
If I implement serialization of all my classes, will this work in COM+? Or should I implement remoting for all my assemblies? I am v. confused about this issue.
My initial object will be called from an ASP page, and then that object will instatiate all the other ones. No standard COM objects have to interact with my .NET assemblies.
Thanks if anyone can shed some light on the direction to go.
I have an application written in C#. Each component is compiled into a ServicedComponent so I can put it in COM+.
However, since I have given my component assemblies strong names, I now receive serialization errors when I try and pass classes between methods in separate assemblies.
If I implement serialization of all my classes, will this work in COM+? Or should I implement remoting for all my assemblies? I am v. confused about this issue.
My initial object will be called from an ASP page, and then that object will instatiate all the other ones. No standard COM objects have to interact with my .NET assemblies.
Thanks if anyone can shed some light on the direction to go.