Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SOAP web services in erlang

Is there any good erlang library for creating / accessing SOAP web services?

Maybe also handling plain XML is quite difficult.

Is Json a good alternative? Any lib for that?

My goal is interop with existing .Net web services.

Thanks

like image 293
Luca Martinetti Avatar asked Apr 24 '09 13:04

Luca Martinetti


2 Answers

Yaws (an Erlang Web Server) has a Soap module but Soap is not much used in the Erlang Community. Json is a better bet.

The Mochiweb kit that you can used to build your own servers (don't panic its easier than it seems) has good Json support.

like image 108
Gordon Guthrie Avatar answered Sep 21 '22 23:09

Gordon Guthrie


Nothing to add to the above answer except that Mochiweb now has a new address: http://github.com/mochi/mochiweb

like image 35
Alfamale Avatar answered Sep 19 '22 23:09

Alfamale