Web Services with Clojure

2011-08-25 Thread Michael Jaaka
Ok after two days I manage to write framework for publishing and calling webservices (yesterday I asked you for such framework but only RESTful are available). Right now this implementation supports only primitve types and was tested in Java distributed environment (needs to extend to arrays, maps,

Re: Web Services with Clojure

2011-08-24 Thread Tal Liron
You can also look at Prudence, which underneath uses Restlet: http://threecrickets.com/prudence/ -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are modera

Re: Web Services with Clojure

2011-08-24 Thread Mark Rathwell
You can have a look at Compojure [1], Noir[2], and Conjure[3], but if you want the "enterprise standard", you will probably need to wrap one of the Java frameworks that do that stuff well. [1] https://github.com/weavejester/compojure [2] https://github.com/ibdknox/noir [3] https://github.com/macou

Web Services with Clojure

2011-08-24 Thread Michael Jaaka
Beside this is there any framework for dynamic WebServices in clojure? I would like to achive usage scenario like. (declare webservice with its details (define method with signature of input output parameters types) (define another method and so on)) What is required from WS stac