Search:

Type: Posts; User: janylj; Keyword(s):

Search: Search took 0.02 seconds.

  1. I have exactly the same problem. Any help is...

    I have exactly the same problem. Any help is greatly appreciated.
  2. How to define a Transaction Manager with a chaning data source at Runtime?

    Hello,

    Because of sharding, we have multiple data sources. And we injected a list of all available data sources to the service. The service would determine which data source to use at run time.
    ...
  3. How a PHP client calls a Java web service using Spring remoting over JMS transport?

    Hello,

    I have exposed a Java service using Spring Remoting and JMS as the underlying communication protocol. I exactly followed Spring Reference Doc.

    My Java client works just fine. Now I have...
  4. Full thread dump

    I ran another test and here is the thread dump when consumer stops receiving. All of message listener container threads are waiting for dequeueing. I notice that default receive timeout is 1000ms...
  5. Thanks for your reply. 1. It usually took 5-10...

    Thanks for your reply.

    1. It usually took 5-10 minutes to reproduce the problem. However, there is no fixed steps to repo it. We just changed the load between 10 mesg/sec to 10K mesg/sec until the...
  6. Why the DefaultMessageListenerContainer stops receiving messages

    The DefaultMessageListenerContainer stops receiving message after some time. The problem seems to be triggered by varying the load. I am using Spring 2.5.5 and ActiveMQ 5.1. I am attaching the...
  7. How to manage ActiveMQ using SPRINGSOURCE APPLICATION MANAGEMENT SUITE (AMS)

    We have some monitoring requirements of ActiveMQ. But the built-in JMX support from ActiveMQ comes in short of Notification and Alert. The SpringSource AMS looks promising as a monitoring platform...
  8. OK. I understand that durable subscriber will not...

    OK. I understand that durable subscriber will not go away when JVM closes. It's exactly what my use case for durable subscriber to receive messages during its downtime. However, how to permanently...
  9. How to unsubscribe() a durable subscriber from DefaultMessageListenerContainer?

    I set up a DefaultMessageListenerContainer for a durable subscriber. After running my test program, the container bean should be destroyed and all the resources should be released. However, from...
  10. Fixed.

    My problem is fixed when I replaced with the latest 2.0.7 spring.jar. Thank you for everyone who viewed my post.
  11. Please help!

    Could anyone please help?

    I checked out the Spring document. It says:

    If the target object to be proxied implements at least one interface then a JDK dynamic proxy will be used. All of the...
  12. Why AOP doesn't intercept this method implementing an interface?

    I have the Command interface:
    public interface Command<A extends Action> {
    public Response execute(A action);
    }

    The LoginCommand class:
    public class LoginCommand implements...
Results 1 to 12 of 13