In web2py sessions are automatic.

>From a python client you would call the sample function using
http://code.google.com/p/jsonrpclib/ with

>>> import jsonrpclib
>>> server = 
>>> jsonrpclib.Server('http://localhost:8000/appname/default/call/jsonrpc')
>>> errors = server.update_record({'id':0,'fieldname':'fieldvalue'})
>>> if not errors: print 'record inserted'
>>> errors = server.update_record({'id':1,'fieldname':'fieldvalue'})
>>> if not errors: print 'record updated'

>From a GWT client I do not know. I have not used it so far. The point
is web2py can speak jsonrpc as GWT does. What they should tell to each
other is for you to figure out.
-- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.


Reply via email to