0

I'm starting a new project and I'm using qooxdoo js framework. I'm running against a json rpc 2.0 server based on websocket communication. I wonder if there's already a tested json rpc client for qooxdoo or should I pick any implementation like jayson.

Any considerations to take?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Salih
  • 43
  • 7

1 Answers1

0

i think it's always better to exclude the server communication to the lowest possible layer so you are not dependent on frameworks in case of changes.

We have our communication written in plain javascript.

Regards, Mark

  • Yes, you're right, I ended up writing my own ws json 2.0 rpc client in pure javascript. – Salih Sep 18 '16 at 02:29