I want to use Spyne to create a web-service in Django with SOAP inputs and outputs. The problem is spyne generates the WSDL file so that a client needs to pass all the arguments as one object.
Consider Sypne's own hello world example, when I want to call the say_hello
method for example from a C# client, input should be an object which has name
and times
attributes:
client.say_hello(SayHelloInputInstace);
but I want to call by passing a name
and times
separately:
client.say_hello('john', 5);
Is it possible to create a Spyne web-service method that can be called RPC-like by passing each argument separately?