How do I call a web service using XSD using Common Lisp?

I've searched all over for an example of using a Common Lisp library (such as Drakma) to call a RESTful web service, but all I found are specific API calls to third party services. Drakma's site does not specify how the scheme will be used to invoke the http service.

If I have a schema / XSD and a RESTful web service url that I would like to call, is there a quick guide to getting started with calling the service and what the response would look like?

+3


source to share


1 answer


Here are two things you can try. The first is the course assignment for EECS 235 at Northwestern University, which runs through XML-RPC in Lisp. It links to the library and gives examples on how to use it. The second is the Allegro Common Lisp API for SOAP .



+1


source







All Articles