Re: [web2py] SOAP XML Return Objects

2012-09-13 Thread Fabio Lugo
Hello. I used this code to get the resultset of a select as xml def export_xml(rows): idx=range(len(rows.colnames)) colnames=[] for item in rows.colnames: colnames.append('column') datos=[] for row in rows.response :

[web2py] webservice PySimpleSOAP howto get a table as result

2012-08-07 Thread Fabio Lugo
Hi all I need to create a webserivce with PySimpleSOAP for compatibility reasons, and need to return results in a table format with data from a survey. (My data is in a db and the result will be a query) I looked at the examples of implementation of both the manual and the cookbook that are very