views:

191

answers:

2

We'd like to generate xml using xstream implemented with java. We'd then like to consume that xml in a .net application and have it deserialized into c# classes.

has anyone had success in doing this? is there a framework available on the C# side that will make it easier and more robust than something we'd have to roll-up?

A: 

Take a look at xstream-dot-net

ChssPly76
A: 

You don't need a special framework. You can do it with the XmlSerialization namespace that is builtin to .NET.

http://blogs.msdn.com/dotnetinterop/archive/2007/10/10/date-and-time-values-and-xstream-interop.aspx

Cheeso