You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web2py-users
Is there anything within web2py's json-rpc implementation that would prevent cross domain calls?
mdipierro
unread,
Oct 23, 2009, 9:48:35 AM10/23/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web2py-users
There is nothing in the JSONRPC to do it but you can block those calls
from outside using routes. It is not that user friendly. Let me think
about this. If poeple have any idea let me know.
Don Lee
unread,
Oct 23, 2009, 10:01:04 AM10/23/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
I do not need cross domain call blocking. But I guess it would be a
good feature to have. I am experiencing a problem with qooxdoo's
cross domain call setup, and I wanted to make sure there wasn't
something within web2py that I should configure as well. Now I have
to go and gather some data so that I can bug the qooxdoo mailing list
. Thanks for the help.
omicron
unread,
Oct 23, 2009, 10:10:58 AM10/23/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web2py-users
I'm using QooxDoo / Web2Py with JSonRpc in several applications and
don't need special features in Web2py. If you want crossdomain feature
in QooxDoo you must set the crossDomain property to true:
var rpc = new qx.io.remote.Rpc("http://targetdomain.com/appname/ function/call/jsonrpc");
rpc.setCrossDomain(true);
On 23 oct, 16:01, Don Lee <sam...@gmail.com> wrote:
> I do not need cross domain call blocking. But I guess it would be a
> good feature to have. I am experiencing a problem with qooxdoo's
> cross domain call setup, and I wanted to make sure there wasn't
> something within web2py that I should configure as well. Now I have
> to go and gather some data so that I can bug the qooxdoo mailing list
> . Thanks for the help.
>
Don Lee
unread,
Oct 23, 2009, 1:33:14 PM10/23/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
Thanks omicron. I have enabled the cross Domain property and saw some
interesting behavior that led me to believe that web2py needed
additional configuration. This post and additional investigation have
reversed my opinion.
I would think that at the very least, running the code from the server
would always produce positive results. That does not appear to be the
case, at least in my setup.