[Soap-Python] SUDS problems

azurIt azurit at pobox.sk
Sun Sep 25 15:04:38 CEST 2011


Hi,

i have problems with SUDS client and rpclib server with very simple usage of complex types:

class state_only(ComplexModel):
	state = String

class testt(ServiceBase):

	@rpc(String, String, _returns=state_only)
	def testf(self, first, second):
		result = state_only()
		result.state = "test"
		return result

SUDS result:
suds.TypeNotFound: Type not found: 's0:state'

I had similar problems with SUDS + Ladon. Is this bug in SUDS ? What other client do you recommend to use ? Thanks.

azurIt


More information about the Soap mailing list