Re: Django site as SOAP endpoint

2021-01-31 Thread Xavier Ordoquy
Hi Fenrir, You may give Spyne (http://spyne.io/) a try. It is a RPC framework that can handle SOAP requests and has a Django integration. Spyne has a couple of drawbacks - IMHO it tries to do too any things and may be somewhat complex - but it does the job. Hopes this will help, Xavier O. Le d

Re: Django site as SOAP endpoint

2021-01-31 Thread Ryan Nowakowski
On January 31, 2021 1:44:46 AM CST, Fenrir Sivar wrote: >I’m working on a project where one of the remote parties requires us to >serve a SOAP api. I have plenty experience with DRF, but only found >soap >client examples (using The ’zeep’ module: zeep==soap in Dutch) which I >use >to call the

Django site as SOAP endpoint

2021-01-30 Thread Fenrir Sivar
I’m working on a project where one of the remote parties requires us to serve a SOAP api. I have plenty experience with DRF, but only found soap client examples (using The ’zeep’ module: zeep==soap in Dutch) which I use to call the SOAP api from the other party . There is django-soap-server but th