Reputation: 1031
I have a winform application (C# framework 2.0) which generates object information by serializung into xml files. these files I want to upload into the server in silverlight application (c# VS 2010). the silverlight application use the objects in the XML.
please ATTACH CODE example.
10x!
Upvotes: 1
Views: 88
Reputation: 1063864
If you handling the comms yourself, since Silverlight supports XmlSerializer
, this should still be pretty easy; just use Deserialize.
However, the easier option is probably to use a web-service reference (or perhaps a web-reference) - since this will handle transferring the type-model (or rather: a shallow interpretation of the type=model) for you - in both directions.
Upvotes: 3