[web2py] Re: xmlrpc python3 error

2023-03-20 Thread Lisandro
Just in case it helps someone, I was able to change my code to make it work. It's not a complete solution: I just started using args instead of vars. I'll explain: in the client I was calling the service with some query string arguments, like this: from gluon.contrib.simplejsonrpc import Server

[web2py] Re: xmlrpc python3 error

2023-03-19 Thread Lisandro
Hey there! I'm experiencing the same error after migrating to python3 and web2py version 2.23.1-stable+timestamp.2023.01.31.08.01.46 The traceback is the same, the error is originated when I try to access request.vars: Traceback (most recent call last): File "/home/limon/medios/gluon/restricted

[web2py] Re: xmlrpc python3 error

2019-10-07 Thread Mark
I submitted the bug report to the github. Thank you very much. On Sunday, October 6, 2019 at 5:29:31 PM UTC-4, Dave S wrote: > > > > On Friday, September 27, 2019 at 6:39:00 AM UTC-7, Mark wrote: >> >> I am using either Rocket or Azure, and get the same error. >> >> Yes, there is a ticket, which

[web2py] Re: xmlrpc python3 error

2019-10-06 Thread Dave S
On Friday, September 27, 2019 at 6:39:00 AM UTC-7, Mark wrote: > > I am using either Rocket or Azure, and get the same error. > > Yes, there is a ticket, which I didn't realize before: > > Traceback (most recent call last): > File "R:\web2py\gluon\restricted.py", line 219, in restricted > e

[web2py] Re: xmlrpc python3 error

2019-09-27 Thread Mark
I am using either Rocket or Azure, and get the same error. Yes, there is a ticket, which I didn't realize before: Traceback (most recent call last): File "R:\web2py\gluon\restricted.py", line 219, in restricted exec(ccode, environment) File "R:\web2py\applications\myapp\models\db.py", lin

[web2py] Re: xmlrpc python3 error

2019-09-26 Thread Dave S
On Thursday, September 26, 2019 at 11:12:56 AM UTC-7, Mark wrote: > > Hello, > > I got an error in python3.7, web2py 2.18.3. > > Testing the following client side code in python2.7: > server = ServerProxy('https://127.0.0.1/myapp/query/call/xmlrpc', > context=ssl._create_unverified_context()) >