I would like to see that too.
Type: Posts; User: mrwhite; Keyword(s):
I would like to see that too.
Fixed it. The problem was that an exeception was thrown inside of the service. The service was available but in a stale state. I recommend to always look into the...
Hi, i am using Spring DM 2.0.0 M1 and i get a weird error telling me that a service is not available: org.springframework.osgi.service.ServiceUnavailableException
The thing is that this service...
I found the problem. It was eclipse. It didnt pick up the bundle classpath until i had the same path structure inside my bundle and on my filesystem.
thanks four your help.
It seems like the extender has a problem. i think the error occurs inside the extender bundle:
java.lang.NoClassDefFoundError: org/hibernate/SessionFactory
at...
I am wondering why the eclipse run dialog can resolve any dependencies but it fails when i run my projects.
And i am also having problems when i bundle the spring dm distribution. It seems like...
Now i get the following error:
java.lang.NoClassDefFoundError: org/hibernate/SessionFactory
at java.lang.Class.getDeclaredMethods0(Native Method)
at...
It works when i use the Springframework jars. Not the ones that come with the dynamic modules dist.
I try to start my eclipse osgi project but i get the following ClassNotFoundException although org.springframework.asm-3.0.0.RC1 is part of the launch configuration:
Caused by:...
Ok, thought that it would just create an instance of the given parameter type and add the attributes to it. Wondering if there is a way to hook into the model/map creation process.
But thanx for...
When i try to replace a parameter of type Model(or ModelMap etc) with a scala class that simply extends the ModelMap class, an "java.lang.IllegalArgumentException: argument type mismatch" that is...
No one any suggestions?
hi everyone,
i am using spring from scala and i am facing a problem when trying to inject a service with a trait/superclass.
This is my code:
trait MyServiceHolder{
var myService:MyService...
Other question:
How do you delete data in heavy threaded applications without the risk to have an inconsitent database?
Thanks for your suggestions but what happens when a user adds an item to an object which parent has been deleted but it itselft not yet?
You cant be sure that a "isAvaible(object)" before ...
Hi everybody,
i am building a desktop application that is talking to a spring based server app over the http invoker.
i have a question about the transaction isolation:
Is it possible to block...
Is there a way to register some kind of an exception handler for remote method calls in the client?
Thats just because i dont want to litter up my client side code.
Forget it, i just had to implement the DisposableBean interface.
Now i want to be informed when a seession scoped bean gets removed. Is there a way to get informed without implementing a httpsession listener?
Thanks cwash5.
After adding the <aop:scoped-proxy/>.
Everything worked well.
I had this issue and i read many threads in this forum about the problem. There is no easy and elegant way to access the httpsession from a service. wheter it is a webservice like burlap/hessian or...
Hi,
when i use the following code everything works:
public Catalog getRootCatalog() {
Session session = SessionFactoryUtils.getSession(getSessionFactory(),true);
Catalog rootCatalog =...
Hi everybody,
i want to deliver a objectgraph for my swing app wich is connected over spring http remoting.
as i dont want to give up the lazy loading performance gains i want to intialize the...
thanks for your suggestions.
I want to store User information on the server, to avoid sending user informations when doing several remote calls.