Here is an interesting combination, I need to transfer data between an "appliance" running Windows XP Home and a remote Linux server on the internet. Let me itemize what needs to happen:
- The "xp home" system needs to transfer data or files every 30 minutes or so. (sftp?)
- The Linux server need to contact the "XP Home" system to request data.
Seems simple enough eh? I was thinking about using web services on the Linux side and thought It would be nice to do the same on the XP Home system. But some of my research says that won't work on XP Home for answering incoming web service calls. Maybe that's wrong? So what about RESTful services will that do the trick?
BTW: Since this is a new application I can do the development on both ends. C# on the Windows side and Java on the Linux side.
Ideas are appreciated!