I have a PHP script running via crontab on hourly basis under Linux.
This script is basically does some tests against database and returns results,
smth like: table_name, number_of_rows, number_of_duplicates.
Also, I have a Silverlight Dashboard for displaying various data and now I want to include results of the tests.
So, question is: how do I push data from Linux based PHP script to Silverlight client?
Thanks
As you are restricted to a Linux server, I assume you are serving the Silverlight app from an Apache site. Is that correct?
Silverlight can use its WebClient class to download any web content, so you could have a PHP page make your results available via HTTP (SOAP, XML, HTML etc).