Enterprise Integration Using SOAP Web Services an Clojure

2014-07-30 Thread Timur
Hi everyone, Are there any libraries other than clj-soap for implementing SOAP Web-Services? Regards, Timur -- 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

Consuming web services in Clojure

2012-11-05 Thread N8Dawgrr
Hi All, Does anyone know of a good simple library to call/consume web-services from Clojure? Note I don't want to create a web-service just call one. -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure

Re: Consuming web services in Clojure

2012-11-05 Thread Ulises
Try clj-http (https://github.com/dakrone/clj-http) On 5 November 2012 12:12, N8Dawgrr nathan.r.matth...@gmail.com wrote: Hi All, Does anyone know of a good simple library to call/consume web-services from Clojure? Note I don't want to create a web-service just call one. -- You

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,

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

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]

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

Web Services On Clojure

2009-02-17 Thread Fahed Alrafidi
Hello everybody! How do I create a web service on Clojure? Thank you. Fahed --~--~-~--~~~---~--~~ 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 To

Re: Web Services On Clojure

2009-02-17 Thread James Reeves
Fahed Alrafidi wrote: How do I create a web service on Clojure? Thank you. Depends what sort of web service. A simple RESTFUL web service is pretty easy to develop in Compojure: (ns web-service (:use compojure)) (defservlet math-servlet (POST /add (let [x (Integer/parseInt (params