Closed boolino closed 8 years ago
can you give us a full traceback?
django-json-rpc 0.6.1 is not compatible with Django 1.6 (as it uses request.raw_post_data
instead of request.body
). Upgrading to 0.6.3 solved the problem.
If someone wanted to write a test for this i'd love to merge it in!
Ok, the version was the real problem , with the new version (0.6.3) everything went back to normal.
Closing issue.
PS: sorry no time for test.
I'd like to write a test for that, but given it depends on the version (and available methods) of the WSGIRequest class, and you already cover them in TravisCI, I don't think I can cover it more. Using an old version of the library is always poised to fail.
I'm working with a big app bassed on django (A) and another smaller one also django based (B). The smaller one (B) feed with data the bigger one (A).
App B stack stayed the same: Django==1.8.4 django-json-rpc==0.7.1
But app A changed from: Django==1.5.12 django-json-rpc==0.6.1
to: Django==1.6.11 django-json-rpc==0.6.1
Now my rpc connection is not working, when I try to send data from B to A it gives me the following error:
In A:
In B:
I've tried debugging my views, models and forms but failed misserably. Can somebody give me a new hint how to fix this issue? It could be a compatibility issue??
Thank you in advance.