Jerry Rocteur wrote at 2014-11-18 12:49 +0100: >Hi Dieter, > ... >Thanks, I know it is somethign I missed but can't put my finger on it as I >have no experience with this in general.. > >Here it is. > > > - >>> print client > > Suds ( https://fedorahosted.org/suds/ ) version: 0.4 GA build: > R699-20100913 > > Service ( GasOrderService ) tns="https://system.globalsign.com/cr/ws/" > Prefixes (1) > ns0 = "https://system.globalsign.com/cr/ws/" > Ports (1): > (GasOrderServicePort) > Methods (9): > GetOrderByOrderId(GetCrOrderByOrderIdRequest Request, )
This means, it expects an "GetOrderByOrderIdRequest" parameter. You should use "client.factory.create" to create an object of this type, fill it and then pass the result to "client.service.GetOrderByOrderId". -- Dieter _______________________________________________ Soap mailing list [email protected] https://mail.python.org/mailman/listinfo/soap
