vote up 0 vote down star

Hi, I need serialize a Com Object using .net using c# or Delphi .Net is this possible? Bye.

flag

Surely someone has code samples? – Robert Harvey Jul 6 at 6:45
@Robert: why would there be any code samples? This question doesn't even make any sense, in general. Does the COM object know anything about XML? Does it know how to serialize itself? Is it even possible to create an instance of the object with default parameters, then set all properties (as you'd have to do when deserializing)? – John Saunders Jul 6 at 7:23

5 Answers

vote up 1 vote down check

You could probably do this by wrapping the COM object in a (serializable) .NET class, exposing the fields that you want serialized.

link|flag
vote up 3 vote down

Check to see if you COM object implements IPersistStream, IPersistMemory or any other of the IPersist variants -- that would be your best bet.

link|flag
The Com Object does not implements any IPersistent variant. – RRUZ Jul 6 at 9:00
vote up 0 vote down

You can get a Managed Object through GetObjectForIUnknown Method. And then, you can serialize this managed object.

link|flag
vote up 0 vote down

I am not sure there will be difference in how you serialize your data in C++, .Net or in any other language. COM object is like a class and can be serialized by getting each data member and serializing it .I did like this in C++.

I think this should be same in .Net unless there are specific APIs to do it.

link|flag
vote up 0 vote down

Not simply by passing object to serializer - implement ISerializable interface on COM object wrapper (primary interop assembly is a wrapper too) and define your own serialization.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.