I'm using spyne 2.11 with Django 1.4 and I'm trying to emulate an Apache Axis 1.4 Web Service.
My WS client is suds, and I'm receiving WS requests with bare body, i.e., argument is not wrapped in a in-message and the "SOAPAction" http header.
Although I specify explicitly _operation_name un srpc decorator, and _body_style='bare', Spyne does not recognize the operation. It still tries to get the operation name from the first child of element.
How can I instruct spine to:
- take into account SOAPHeader as operation_name
- consider the first child of SOAP-Env:Body as function / operation argument?