I’m using a .net desktop application to call a php webservice and get me some data from mySQL, the problem is calling the service is not possible so is there any alternative way to get that data? All suggestions and ideas are welcome.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Based on the above comments, you only have two options which neither appear to be valid in your circumstance:
1) You create a data access layer that connects directly to the database using a TCP/IP connection
2) You proxy the database through a webservice, albeit SOAP/REST or even something like WCF Data Services using OData.
If you require real time access to the database, you have no other alternatives.