I have a service running on this url: http://localhost:8888
I get results from this service by invoking it like this:
http://localhost:8888/colors?colorname=red&shade=dark
and I get the results back in JSON like this:
{
"request#": 55,
"colorname": "red",
"shade": "dark",
"available": "No"
}
Question
What are some ways by which I can consume this service in my grails application?