Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to push data to client's server

We have a system in place which collects data from multiple sensors and stores the data into the database, we have a website where our customers can log in and view their data.

Now one of our customers wants to display the data from our server into their web site. I created a web service and gave them access to collect the data from the our database and import it into their website, but they are requesting us to push the data to their server. I am not sure how this can be done! Can anyone help me with this?

Thanks

like image 893
Ana Avatar asked Nov 11 '22 15:11

Ana


1 Answers

You cannot push your data to any other server unless you have remote access to their server. You can either ask them to provide you the remote access to their database and write a service to push your data into their server or database . Or you can work out with your client to design a mechanism where their website would call you web service to display you data into their website.

Ajax-Push-Engine project could be useful in your scenario.

like image 183
AL̲̳I Avatar answered Nov 14 '22 21:11

AL̲̳I