Search:

Type: Posts; User: c.petz@efkon.com; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Use MessagePostProcessor

    public class MyPostProcessor implements MessagePostProcessor {
    private int priority;
    public int getPriority() {
    return priority;
    }
    public void...
  2. Replies
    1
    Views
    657

    Add shema name to Queue Name (SCOTT.MSG)

    If you add the schema to the name the queue
    f.e.
    destination name : MSG
    Oracle schema the destination is located in :SCOTT
    you just have to name the Destination "SCOTT.MSG"
    Oracle will...
  3. You need to use a DestinationResolver instead of...

    You need to use a DestinationResolver instead of injecting the target queue / topic directly into the JmsTemplate.
    Use the Jms Template API methods with destination name parameters so you can send...
  4. delayDelivery

    http://forum.springsource.org/showthread.php?t=72899

    I guess also redelivery delay is a broker thing so if you google you will find solutions for brokers which support this feature and how to...
  5. jmsTemplate.receiveSelected

    String query = "JMSMessageID = '" + jmsMessageID + "'";
    jmsTemplate.setReceiveTimeout(1);
    Message received = jmsTemplate.receiveSelected(query);
  6. Use plattform mbean server

    <bean id="mbeanServer"
    class="java.lang.management.ManagementFactory"
    factory-method="getPlatformMBeanServer" />
  7. Replies
    1
    Views
    1,469

    duplicate

    http://forum.springsource.org/showthread.php?t=74154
  8. Found it for JBoss and WebLogic WebLogic...

    Found it for JBoss and WebLogic

    WebLogic version



    queueConnection = queueConnectionFactory.createQueueConnection();
    QueueSession queueSession = queueConnection.createQueueSession(true, 0);...
  9. Scheduled Processing

    I don't think you will be able to solve the Problem with setting a Message Listener Attribute.

    A possible solution for your problem will be scheduled message dispatching which is not a standard...
  10. Additional Stuff

    http://forum.springsource.org/showthread.php?t=56634
  11. set jmsTemplate properties

    Using JBoss Messaging
    setting following properties of Spring's JmsTemplate should solve the problem.
    Iam not able to check this with JBoss MQ.


    <bean id="jmsTemplateExample"...
  12. Jndi Lookup fail

    As far as i know using Spring's DefaultMessageListenerContainer, SimpleMessageListenerContainer etc. will not be able to startup if Broker is not available.
    But you will be able to extend it and...
  13. JbossMQProblem?

    http//www_jboss_org/community/wiki/JBossMQTimeToLiveNotWorkingProperly
  14. Issue has been fixed with AMQ Release 5.1

    Issue has been fixed with AMQ Release 5.1
  15. View Post

    <<< The last time we needed to do something like this we had to create an instance of DMLC for each different selector, couldnt find any other way to do it...am open to any corrections


    same...
  16. JMSTemplate dose not provide a send timeout...

    JMSTemplate dose not provide a send timeout property.
    Using Active MQ send timeout is a property of the connection factory.
    Might depend on Connection Factory implementation.

    Example for Active...
  17. Replies
    1
    Views
    3,303

    You provide a message factory reference the...

    You provide a message factory reference the listener will use to get connections. Jboss Forum says that JmsTemplate.receive() method which should not be used to get messages from a queue/topic... I...
  18. Replies
    1
    Views
    1,672

    Using ActiveMQ i would performance test this ......

    Using ActiveMQ i would performance test this ...
    Or system has 1000 durable consumers to listen for same topic and 100 Producers at the same time and Active MQ (we used 4.1.1) did not really make it...
  19. I setup the container like this and it works fine...

    I setup the container like this and it works fine


    ....

    DefaultMessageListenerContainer listenerContainer = new DefaultMessageListenerContainer();...
  20. Problem occurs since Consumer is blocked

    Hi
    The problem only occurs if you use a failover: url or a tcp url without defining the wiredFormat.maxInactivityDuration property in the connection url

    I guess this is an Active MQ bug which...
  21. Im actually using following Configuraiton for...

    Im actually using following Configuraiton for Factory

    <bean id="connectionFactory"
    class="org.apache.activemq.ActiveMQConnectionFactory">
    <property name="brokerURL" value="${jmsBrokerUrl}"...
  22. DeadLock afer Transport Failed

    I also see the same behaviour in my app.
    It works for some hours sometimes for days even if there are problems with Transport failed etc. the application still keeps on working fine Messages are...
  23. XFire

    http://xfire.codehaus.org/Castor
  24. PropertyPlaceholderConfigurer and JNDI - get single environment reference from tomcat

    Hi
    How is it possible to get a single environment element defined in tomcat's server.xml into a PropertyPlaceholderConfigurer?

    I know there is a lot of stuff about jndi and tomcat etc already...
  25. Hi I get the Class cast Exception using the...

    Hi
    I get the Class cast Exception using the sollution setting property "properties" but this one is working fine

    <bean id="jndiPropertyConfigurer"...
Results 1 to 25 of 26
Page 1 of 2 1 2