views:

142

answers:

1

I'm trying to use SOAPpy to write a web service client. However after defining WSDL object, a call to a web-service method is wrapped in a

 <v1> .. actual parameters .. </v1>

How can I disable this v1 tag?

A: 

Answering my own question, you can give the name of tag by providing name in the parameter call list, ie:

server.GetList(GetListRequest = { "order" : "asc" })

then v1 is replaced by GetListRequest as I originally wanted.