Hi, all. I am new to Django/Python. For one project, I need to be
posting data to a .NET SOAP web service. I've read about the various
Python SOAP libraries, mainly SOAPpy (
http://diveintopython.org/
soap_web_services/). What is not clear yet is how best to use a tool
like SOAPpy within the Django framework.
Our application should have the following routine:
1) Our django app would pull data from our database
2) We'd take that data and format the SOAP XML message
3) We'd post the SOAP XML message to the .NET SOAP web service
4) When the response verifies a successful post to the SOAP web
service, we'd record that transaction as successful in our database
Anyway, I'm learning how to do all these steps as isolated pieces of
code, but what's not clear is how best to achieve this task flow
within our Django application.
This whole routine will need to run as a cron job...and I suppose that
might make some question whether Django is the right tool for this
task. I'd prefer to standardize using one framework/language though.
Any pointers/suggestions would be most appreciated. Thank you in
advance.
Stephen