Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am developing a medium-sized .NET WPF Windows client application that will need to share a rather small amount of data with other users (via a few queries on the server). What are good options for what technologies to use to write the client & server components I use hostmonster.com which gives me an 64-bit x86 Linux account + Apache, PHP, etc. While SQL is probably the obvious data store choice, the data is in a simple enough form that it could almost as easily be a few binary files. Years ago COM gave me enough grief that I would love to have a victory over that monster, but I am not sure if that is an option on the server end because of the system being Linux

I realize that there are probably many combinations that will work. I would prefer Microsoft solutions, but the server being Linux makes some options impossible. I would like my choices to be proven to be good in a few years (i.e., still popular/supported). Whatever I choose, I will have to learn, since I do not know any of them. Do I need to specify additional info about my needs to narrow it down?

I know C, C++, C#, HTML, XML, XAML, Windows, user & script level Linux, a little SQL & COM.

Posted

1 solution

To access the data create a PHP Web Service[^] on the Linux web server with a MySql backend and have your .Net application access the web service to get the data.
What methods the Web Service exposes will be dependant on your data and how you need to interact with it, but don't send SQL strings.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900