Re: Building a REST API / efficient RPC interface in Clojure

2013-02-12 Thread bernardH
On Monday, February 11, 2013 2:48:30 AM UTC+1, Mikera wrote: > > Thanks bernardH - these are great links, probably pretty close to what I > was looking for. > > Will try some experiments with these over the next few days. > Hi, I, for one, would be interested by the results of those experiments

Re: Building a REST API / efficient RPC interface in Clojure

2013-02-10 Thread Mikera
Thanks bernardH - these are great links, probably pretty close to what I was looking for. Will try some experiments with these over the next few days. On Saturday, 9 February 2013 19:01:09 UTC+8, bernardH wrote: > > Hi, > > On Saturday, February 9, 2013 4:47:26 AM UTC+1, Feng Shen wrote: >> >> H

Re: Building a REST API / efficient RPC interface in Clojure

2013-02-09 Thread vemv
> > Define an API in terms of messages > I'm not familiar with the concept - just out of curiosity, what does a mesagge-based API consist of? Is the drastically different from most REST/JSON web APIs out there? Thank you - Victor -- -- You received this message because you are subscribed t

Re: Building a REST API / efficient RPC interface in Clojure

2013-02-09 Thread bernardH
Hi, On Saturday, February 9, 2013 4:47:26 AM UTC+1, Feng Shen wrote: > > Hi, I did something similar during work (we are using Clojure) > >1. Use HTTP as the transport: browser ajax call, mobile API call, >intertal use >2. JSON as encoding. Javascript support it natively, mobile c

Re: Building a REST API / efficient RPC interface in Clojure

2013-02-08 Thread Feng Shen
Hi, I did something similar during work (we are using Clojure) 1. Use HTTP as the transport: browser ajax call, mobile API call, intertal use 2. JSON as encoding. Javascript support it natively, mobile can decode it easily, Clojure has very good support for it Clojure can decod