Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 947 Bytes

README.rst

File metadata and controls

29 lines (19 loc) · 947 Bytes

Django SOAP server

THIS PROJECT IS UNMAINTAINED

This project bitrotted for some years without anyone looking at it. Please get in touch by @'ing or email should you want to take over maintenance/development.

The goal of this projecct is to provide an example of best practices on how to write a SOAP 1.1 compliant server using Django.

Why using django? Well, while I would really not recommend using django for a pure SOAP webserver (many other solutions would seem far more appropriate), this project would certainly come in quite handy to people who built a django website, but want to expose some of its functionality to the world.

REST is all the rage theses days, but you might need this to interface with legacy products, for example.

How to

# Add soap-server to your INSTALLED_APPS. # Subclass soap-server.webservice.WebService or soaplib.core.service.DefinitionBase #