Scaffolding Web Services in Grails

Posted by Dan on Stack Overflow See other posts from Stack Overflow or by Dan
Published on 2009-05-29T20:12:57Z Indexed on 2010/03/29 14:03 UTC
Read the original article Hit count: 351

Filed under:
|
|

I need to implement a web app, but instead of using relational database I need to use different SOAP Web Services as a back-end. An important part of application only calls web services and displays the result. Since Web Services are clearly defined in form of Operation: In parameters and Return Type it seems to me that basic GUI could be easily constructed just like in the case of scaffolding based on Domain Entities.

For example in case of SearchProducts web service operation I need to enter search parameters as input, so the search page can be constructed. Operation will return a list of products, so I need a page that will display this list in some kind of table.

Is there already some library in grails that let you achieve this. If not, how would you go about creating one?

© Stack Overflow or respective owner

Related posts about grails

Related posts about scaffolding