Spring Roo -
1) "Rapid Enterprise Development"
2) "Enterprise Development Redefined"
Type: Posts; User: yohan; Keyword(s):
Spring Roo -
1) "Rapid Enterprise Development"
2) "Enterprise Development Redefined"
Hi,
I tried to use JmsTemplate's receive() method for synchronous consumption of a Queue, but the method returns 'null', even when there are messages in the queue.
First, I tried using...
Thanks Jabberz.
(Sorry about late reply)
Btw, I figured out about the JavaDoc and Assertion issue. It seems like what is meant by JavaDoc is that if I use Destination (reference), destination...
Hi,
I am writing an application where I have a message driven POJO which should listen to a destination which will be created at runtime. So, the name of the destination is not known at bean...
Thanks a lot!
I tried the ICEFaces plugins, but it seems like the problem still exists. Then I managed to find the options you mentioned and now the warnings are gone. Thanks for the support ! :D
hello? anybody?
No, I am not using any class from JPA. The two classes I use for annotation are
org.springframework.context.annotation.Scope;
org.springframework.stereotype.Controller;
The requirement for...
Thanks for the reply.
I know that it works when I add the persistence jar files. But the problem is, why does it have a dependency on it? Since my project does not use the JPA, I don't want to add...
Hi,
I wanted to use Spring to manage by JSF backing beans and so that, I used the @Controller and @Scope annotations to annotate my backing beans. It worked fine on my first project which was...
Hi,
I tried out the SpringBeanFacesELResolver in Spring 2.5.1 in a small JSF 1.2 WebApp, to replace the JSF Managed Bean entries in the faces-config.xml. The application works fine now, but...
Same here.
I was wondering what went wrong and tried everything. But couldn't find anything wrong. Thanks chavip. I saw your post now and its working ! Thanks for ending my sleepless night as...
I have found two versions of this class in standard org.springframework.context.support.ClassPathXmlApplicationContext and also in org.apache.xbean.spring.context.ClassPathXmlApplicationContext.
...
As of Spring 2.0, asynchronous receiving of JMS Messages is supported.
Refer to Spring Documentation's JMS Section for Async Reception for an example.
Hi,
I had the same problem with ActiveMQ 4.1.1 and Spring 2.0. However, when I included the xbean-spring-2.8.jar in my build-path, it worked.
xbean-spring-2.8.jar is in the...
BTW, will it add a significant performance overhead if I use HTTP Tunneling ? (If the payload is not so small).
Thanks a lot Joris, that solved my problem !!! All I wanted was a way to use ActiveMQ through firewalls.
Oh. I am hoping to use ActiveMQ. I forgot to mention that.
Hi all,
I am currently designing an application in which I want to use JMS to provide a messaging solution for a distributed application. The application has components interacting across networks...