Is there a way to pass a DetachedCriteria object to a jax-ws service?
(my problem is that DetachedCriteria does not have a no-arg constructor, which is required by jax-ws)
|
|
|
|
|
|
|
I would say ... please don't do that. It's a shame to use something as decoupled as web services and then tie it to a specific Java+Hibernate combination, not to mention that and changes to your hibernate config will likely ripple through all the clients. You're better of creating some sort of
and then at the server side you have a class which converts the |
||||
|