Reputation: 9
I installed rapidsms in local for send messages. The application tested with local server. Now i would like to store the incoming messages in another database via a php application. Means when a message received in rapidsms (Django-Python) app, i want to call a php application function and store message in php app database. For this which method is best?
Thanks
Upvotes: 0
Views: 320
Reputation: 9917
You could use python-suds to communicate via WSDL with your PHP app. IMHO the best option would be to inspect the PHP database and directly store the data from python. Low latency and no overhead.
Upvotes: 2