| Author |
Web Services with Hibernate
|
kashwini Kulkarni
Ranch Hand
Joined: Aug 07, 2009
Posts: 63
|
|
Hello All,
I want to know what is the procedure to make hibernate and web services work together.I am using netbeans IDE with Glassfish.I am not getting where to put my hibernate.cfg.xml and .hbm files so that my web service can access them.I tried a lot of search but found nothing complete.Any help in this direction is appreciated.
Thanks in Advance
Kashwini
|
 |
William P O'Sullivan
Ranch Hand
Joined: Mar 28, 2012
Posts: 860
|
|
Those are two different stacks.
Once your web service has defined it's contract (wsdl), it is up to you to integrate the request and response
processing with the DB layer via some form of DAO pattern.
In your case, the service layer would access a DAO intermediate layer, generate value objects and have them
converted to SOAP XML to return to the client.
WP
|
 |
kashwini Kulkarni
Ranch Hand
Joined: Aug 07, 2009
Posts: 63
|
|
Hello William,
Thanks a lot for your reply.Now I can go further with what you suggested.
Thank you
Kashwini82
|
 |
kashwini Kulkarni
Ranch Hand
Joined: Aug 07, 2009
Posts: 63
|
|
Can you please elaborate on the same or suggest me a link to some example (so that I can develop my web service accordingly) ?
Thank you
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56229
|
|
|
Apparently you did not understand the answer. Your DAO layer will be completely independent of the web service. You can develop it and test it separately. Information on DAOs is readily available on the web.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: Web Services with Hibernate
|
|
|