I appologize if this is the wrong forum or if this an elemetary question. I am very new to alfresco and am retrieving a record from the alf_node_properties table that was created when an aspect was applied to a piece of content's properties. I get a mutiple selection of objects in a serializable field. How do I deserialize those values. To further complicate teh solution I am using .NET.
I tried taking the value as a byte[] and using the BinaryFormatter.Deserialize method to get me an object but .net complains that "the input stream is not a valid binary format".
Java object serialization is not the same as the mechanism used by .NET runtime. I'm not sure how you can do this except for finding the binary format that the Java JVM uses and implementing a custom reader for this in your .net app - it will probably be quite involved. The good news is that the Sun Java source can be downloaded and examined to find out how they save/load objects as a starting point for your own code in .net.