-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JSON-RPC traversal #31
Comments
JSON-RPC is a protocol over a particular endpoint. It does not mix well with url traversal. I don't have a good answer for you without more details, so I'll leave it at that. |
Hi, Regards, |
Can you give me an example? You'd be POSTing a method call to an arbitrary URL? Have you looked at @mcdonc's pyramid_xmlrpc package which allows xmlrpc on any traversal context? |
Hi, Le 2015-05-15 18:04, Michael Merickel a écrit :
Yes, the goal is to be able to define RPC methods on given objects
pyramid_xmlrpc seems to be a little outdated and unmaintained... Regards, |
Well "traversal to any context" isn't quite right, not sure where you're seeing that. You can specify a custom I think what you're asking for is interesting but I'm not sure how I'd support it right now. We would have to perform the json-rpc protocol detection on a global level instead of per-endpoint-url I think. |
Hi,
I'm trying to use pyramid_rpc package.
How can I use it, so that I can call a "JSON-RPC" method on a given object (providing an interface) accessed through ZODB traversal?
Thanks, for any help,
Thierry
The text was updated successfully, but these errors were encountered: