About Serialization in .NET Compact Framework with J#

Anybody know how to serialize and deserialize object in .NET Compact Framework using J# or any library or utility that realize this funcionality?

The original object was serialized in JAVA and i need deserialize in my application that running in Pocket PC.

I can deserialize the object withJ# but using the Framework 2.0.

Thanks for you reply.

[370 byte] By [MarioCano] at [2007-12-22]
# 1

How I can add functionality to the Compact Framework?, thinking that this is possible, to use originating serialized objects of java.

Using J# I can use the function to serialize-deserialize function in the framework, but the Compact Framework does not include this functionality

It appears the following error message:

"Could not load type 'java.io.ObjectInputStream' from assembly 'vjslib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A'."

Thanks for your reply !! :)

MarioCano at 2007-8-30 > top of Msdn Tech,Smart Device Development,.NET Compact Framework...
# 2

J# is not supported on NETCF so it's not possible to use anything related to J# including object (de)serialization. In fact, no desktop assembly can be used on NETCF regardless of language (and that is by design).

You might be able to workaround by declaring this object in C# or VB.Net, compiling it into NETCF assembly and using it in J# application.

IlyaTumanov at 2007-8-30 > top of Msdn Tech,Smart Device Development,.NET Compact Framework...