Re: Suds 4.1 Beta Assertion Failure

2014-06-12 Thread dieter
1stpo...@gmail.com writes: > ... > I have another issue. When I make the call to return data apparently the > result set is too big for suds and I get a MemoryError. > > Here is my code snippet: > print 'executing SQL Query:',len(logicalSQL) > > executionOptions={'async':False,'maxRowsPe

Re: Suds 4.1 Beta Assertion Failure

2014-06-12 Thread 1stpoint
It turns out I was passing the parameters incorrectly to the generateReportSQL method. This is what I had: result=reportservice.generateReportSQL(rptRef, paramRpt, sessionid) This is what works: result=XMLservice.generateReportSQL({'reportPath':rptRef},sessionid) I have another issue. When I

Re: Suds 4.1 Beta Assertion Failure

2014-06-09 Thread dieter
1stpo...@gmail.com writes: > Hello group, I have been using Python suds to try to consume a web service. > I am able to use tools like SOAPUI and it works but when I it in python I > get Assertion Failure. > ... > suds.WebFault: Server raised fault: 'Assertion failure: criteria at line 296 >

Suds 4.1 Beta Assertion Failure

2014-06-09 Thread 1stpoint
Hello group, I have been using Python suds to try to consume a web service. I am able to use tools like SOAPUI and it works but when I it in python I get Assertion Failure. Here is my code if __name__== '__main__': from suds.client import Client import logging logging.basicConfig(