Hello Bhanu,
Your problem may be related to a conflict on the "asm" dependency.
Indeed, CXF uses a newer "cglib" version than hibernate, that itself
uses a newer "asm", so that it sometimes cause issues when integrating
them together (Exception such as NoSuchMethodError)
The workaround I use is to replace the old cglib (and its dependency) by
the cglib-nodep.jar in your classpath, that is OK for Hibernate and does
not require an old "asm".
If you use Maven, this sample should help you to understand how to
resolve such conflict:
<dependency>
<!-- This artifacts adds hibernate as a dependency -->
<groupId>org.ow2.bonita</groupId>
<artifactId>bonita-server</artifactId>
<version>4.0.1</version>
<scope>test</scope>
<exclusions>
<exclusion> <!-- Then remove the dependency to cglib to
avoid conflicts with CXF's asm -->
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Replaced old cglib by cglib-nodep -->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.1_3</version>
</dependency>
Hope that helps...
Regards,
Mickael
Bhanu B a écrit :
Hi Mert,
I appreciate your response, here i am getting an error while running my
application ,i think it desn't put data into DB table
some hibernate problem,
my requirement is
1-> get data from WebService through SOAP GUI
2-> updated data in to the DB Table with all integration
Hibernate+Spring+CXF
i couldn't get much information about your 'mesir' application.
if any more information is really great help to me.
Thanks,
B....
On Tue, Jan 27, 2009 at 2:27 PM, Mert Çalışkan <[email protected]> wrote:
check out mesir..
I did some work with that stack.
http://code.google.com/p/mesir
Cheers,
Mert
On Tue, Jan 27, 2009 at 10:15 PM, Bhanu B <[email protected]> wrote:
Hi
Any one could tell me how to integrate Hibernate+Spring+CXF to developing
webservices
please help me ?!!
Regards,
Bhanu