What is the easiest to transfer an object between two C# apps over the web?
Posted
by edude05
on Stack Overflow
See other posts from Stack Overflow
or by edude05
Published on 2010-06-15T14:34:20Z
Indexed on
2010/06/15
14:42 UTC
Read the original article
Hit count: 205
I have written an application that basically gathers up a bunch of text and numerical data from the client PC and stores it as an object. Right now I'm implementing XML serialization so that the file can be saved.
The issue is now, how do I get this data to the server? I have a server running IIS 7 setup but I don't quite understand the ASP.net life cycle, so I'm not sure how to implement the receiving app.
What should I do? Thanks
© Stack Overflow or respective owner