Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devinus/detergent
An emulsifying Erlang SOAP library
https://github.com/devinus/detergent
Last synced: 1 day ago
JSON representation
An emulsifying Erlang SOAP library
- Host: GitHub
- URL: https://github.com/devinus/detergent
- Owner: devinus
- License: bsd-3-clause
- Created: 2010-04-08T22:59:23.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2019-02-06T16:45:21.000Z (almost 6 years ago)
- Last Synced: 2025-01-16T13:34:24.388Z (9 days ago)
- Language: Erlang
- Homepage: http://github.com/devinus/detergent
- Size: 362 KB
- Stars: 64
- Watchers: 5
- Forks: 39
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Erlang - An emulsifying Erlang SOAP library. (REST and API)
- fucking-awesome-elixir - detergent - An emulsifying Erlang SOAP library. (REST and API)
- awesome-elixir - detergent - An emulsifying Erlang SOAP library. (REST and API)
README
Detergent - An emulsifying Erlang SOAP library
==============================================Detergent helps make SOAP interactions in Erlang
uhh... cleaner (pun totally intended)!## History
Most code in Detergent was originally extracted
from the SOAP implementation in Yaws, the idea
being to make this more readily available without
having to install Yaws itself.There are obviously changes in Detergent that
make it different from the Yaws implementation,
and these will continue. Hopefully these changes
make Detergent easier to use.## Dependencies
Detergent depends on the excellent Erlsom library
for all XML interactions. Erlsom takes away quite
a bit of the pain of working with XML.## Building
Detergent uses rebar for building and wraps it i
a Makefile for convenience.First clone Detergent from GitHub:
$ git clone git://github.com/devinus/detergent.git
Then change into the newly created directory:
$ cd detergent
And make:
$ make
Rebar will first pull in Erlsom as a dependency
from GitHub, attempt to build it, then build
Detergent.## Testing
To test your Detergent build, start an Erlang
shell and run the detergent:qtest/0 function.The qtest/0 function attempts to call a web
service at webservicex.net to retrieve the
weather repeat for Boston.$ erl -pa deps/erlsom/ebin ebin
> inets:start().
> detergent:qtest().License
=======Most code is copyright (c) 2006 by Claes Wikstrom
and you can find his license in LICENSE.Anything else is provided under public domain
which you can learn more about in UNLICENSE.