Unable to send to Solace JMS queue (Capability Mismatch: Router does not support durable endpoint management)











up vote
1
down vote

favorite












I am new to Solace. We have an app that looks up a Solace connection factory using JNDI and then sends/consumes messages from various queues.



In one of our environments, we get the following exception.



I assume this is because this Solace broker/router is configured differently. Any pointers on how to fix or troubleshoot the issue appreciated.



nested exception is com.solacesystems.jms.ConfigurationException: Error creating queue - operation not supported on router (Capability Mismatch: Router does not support durable endpoint management.)
at org.springframework.jms.support.JmsUtils.convertJmsAccessException(JmsUtils.java:316)
at org.springframework.jms.support.JmsAccessor.convertJmsAccessException(JmsAccessor.java:169)
at org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:497)
at org.apache.camel.component.jms.JmsConfiguration$CamelJmsTemplate.send(JmsConfiguration.java:228)
at org.apache.camel.component.jms.JmsProducer.doSend(JmsProducer.java:431)
at org.apache.camel.component.jms.JmsProducer.processInOnly(JmsProducer.java:385)









share|improve this question


























    up vote
    1
    down vote

    favorite












    I am new to Solace. We have an app that looks up a Solace connection factory using JNDI and then sends/consumes messages from various queues.



    In one of our environments, we get the following exception.



    I assume this is because this Solace broker/router is configured differently. Any pointers on how to fix or troubleshoot the issue appreciated.



    nested exception is com.solacesystems.jms.ConfigurationException: Error creating queue - operation not supported on router (Capability Mismatch: Router does not support durable endpoint management.)
    at org.springframework.jms.support.JmsUtils.convertJmsAccessException(JmsUtils.java:316)
    at org.springframework.jms.support.JmsAccessor.convertJmsAccessException(JmsAccessor.java:169)
    at org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:497)
    at org.apache.camel.component.jms.JmsConfiguration$CamelJmsTemplate.send(JmsConfiguration.java:228)
    at org.apache.camel.component.jms.JmsProducer.doSend(JmsProducer.java:431)
    at org.apache.camel.component.jms.JmsProducer.processInOnly(JmsProducer.java:385)









    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I am new to Solace. We have an app that looks up a Solace connection factory using JNDI and then sends/consumes messages from various queues.



      In one of our environments, we get the following exception.



      I assume this is because this Solace broker/router is configured differently. Any pointers on how to fix or troubleshoot the issue appreciated.



      nested exception is com.solacesystems.jms.ConfigurationException: Error creating queue - operation not supported on router (Capability Mismatch: Router does not support durable endpoint management.)
      at org.springframework.jms.support.JmsUtils.convertJmsAccessException(JmsUtils.java:316)
      at org.springframework.jms.support.JmsAccessor.convertJmsAccessException(JmsAccessor.java:169)
      at org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:497)
      at org.apache.camel.component.jms.JmsConfiguration$CamelJmsTemplate.send(JmsConfiguration.java:228)
      at org.apache.camel.component.jms.JmsProducer.doSend(JmsProducer.java:431)
      at org.apache.camel.component.jms.JmsProducer.processInOnly(JmsProducer.java:385)









      share|improve this question













      I am new to Solace. We have an app that looks up a Solace connection factory using JNDI and then sends/consumes messages from various queues.



      In one of our environments, we get the following exception.



      I assume this is because this Solace broker/router is configured differently. Any pointers on how to fix or troubleshoot the issue appreciated.



      nested exception is com.solacesystems.jms.ConfigurationException: Error creating queue - operation not supported on router (Capability Mismatch: Router does not support durable endpoint management.)
      at org.springframework.jms.support.JmsUtils.convertJmsAccessException(JmsUtils.java:316)
      at org.springframework.jms.support.JmsAccessor.convertJmsAccessException(JmsAccessor.java:169)
      at org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:497)
      at org.apache.camel.component.jms.JmsConfiguration$CamelJmsTemplate.send(JmsConfiguration.java:228)
      at org.apache.camel.component.jms.JmsProducer.doSend(JmsProducer.java:431)
      at org.apache.camel.component.jms.JmsProducer.processInOnly(JmsProducer.java:385)






      jms jndi solace






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 7 at 22:58









      raylite3

      185




      185
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          In order to enable Guaranteed Messaging you basically have to configure this two steps:




          1. Modify the User Profile you're using to allow Guaranteed Send and/or Receive.

          2. Modify the VPN configuration to defin the size of the Message Spool to be used.


          This can be done with the following sample commands on Solace CLI:



          solace(configure)# client-profile default 
          solace(configure/client-profile)# allow-guaranteed-message-receive
          solace(configure/client-profile)# allow-guaranteed-message-send
          solace(configure/client-profile)# exit

          solace(configure)# client-username default message-vpn default
          solace(configure/client-username)# client-profile default
          solace(configure/client-username)# no shutdown
          solace(configure/client-username)# exit

          solace(configure)# message-spool message-vpn default
          solace(configure/message-spool)# max-spool-usage 60000


          If you want more information about Guaranteed messaging and more detailed configuration, please refer to:



          https://docs.solace.com/Configuring-and-Managing/Configuring-Guaranteed-Msging.htm






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53199189%2funable-to-send-to-solace-jms-queue-capability-mismatch-router-does-not-support%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote



            accepted










            In order to enable Guaranteed Messaging you basically have to configure this two steps:




            1. Modify the User Profile you're using to allow Guaranteed Send and/or Receive.

            2. Modify the VPN configuration to defin the size of the Message Spool to be used.


            This can be done with the following sample commands on Solace CLI:



            solace(configure)# client-profile default 
            solace(configure/client-profile)# allow-guaranteed-message-receive
            solace(configure/client-profile)# allow-guaranteed-message-send
            solace(configure/client-profile)# exit

            solace(configure)# client-username default message-vpn default
            solace(configure/client-username)# client-profile default
            solace(configure/client-username)# no shutdown
            solace(configure/client-username)# exit

            solace(configure)# message-spool message-vpn default
            solace(configure/message-spool)# max-spool-usage 60000


            If you want more information about Guaranteed messaging and more detailed configuration, please refer to:



            https://docs.solace.com/Configuring-and-Managing/Configuring-Guaranteed-Msging.htm






            share|improve this answer

























              up vote
              0
              down vote



              accepted










              In order to enable Guaranteed Messaging you basically have to configure this two steps:




              1. Modify the User Profile you're using to allow Guaranteed Send and/or Receive.

              2. Modify the VPN configuration to defin the size of the Message Spool to be used.


              This can be done with the following sample commands on Solace CLI:



              solace(configure)# client-profile default 
              solace(configure/client-profile)# allow-guaranteed-message-receive
              solace(configure/client-profile)# allow-guaranteed-message-send
              solace(configure/client-profile)# exit

              solace(configure)# client-username default message-vpn default
              solace(configure/client-username)# client-profile default
              solace(configure/client-username)# no shutdown
              solace(configure/client-username)# exit

              solace(configure)# message-spool message-vpn default
              solace(configure/message-spool)# max-spool-usage 60000


              If you want more information about Guaranteed messaging and more detailed configuration, please refer to:



              https://docs.solace.com/Configuring-and-Managing/Configuring-Guaranteed-Msging.htm






              share|improve this answer























                up vote
                0
                down vote



                accepted







                up vote
                0
                down vote



                accepted






                In order to enable Guaranteed Messaging you basically have to configure this two steps:




                1. Modify the User Profile you're using to allow Guaranteed Send and/or Receive.

                2. Modify the VPN configuration to defin the size of the Message Spool to be used.


                This can be done with the following sample commands on Solace CLI:



                solace(configure)# client-profile default 
                solace(configure/client-profile)# allow-guaranteed-message-receive
                solace(configure/client-profile)# allow-guaranteed-message-send
                solace(configure/client-profile)# exit

                solace(configure)# client-username default message-vpn default
                solace(configure/client-username)# client-profile default
                solace(configure/client-username)# no shutdown
                solace(configure/client-username)# exit

                solace(configure)# message-spool message-vpn default
                solace(configure/message-spool)# max-spool-usage 60000


                If you want more information about Guaranteed messaging and more detailed configuration, please refer to:



                https://docs.solace.com/Configuring-and-Managing/Configuring-Guaranteed-Msging.htm






                share|improve this answer












                In order to enable Guaranteed Messaging you basically have to configure this two steps:




                1. Modify the User Profile you're using to allow Guaranteed Send and/or Receive.

                2. Modify the VPN configuration to defin the size of the Message Spool to be used.


                This can be done with the following sample commands on Solace CLI:



                solace(configure)# client-profile default 
                solace(configure/client-profile)# allow-guaranteed-message-receive
                solace(configure/client-profile)# allow-guaranteed-message-send
                solace(configure/client-profile)# exit

                solace(configure)# client-username default message-vpn default
                solace(configure/client-username)# client-profile default
                solace(configure/client-username)# no shutdown
                solace(configure/client-username)# exit

                solace(configure)# message-spool message-vpn default
                solace(configure/message-spool)# max-spool-usage 60000


                If you want more information about Guaranteed messaging and more detailed configuration, please refer to:



                https://docs.solace.com/Configuring-and-Managing/Configuring-Guaranteed-Msging.htm







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 8 at 18:24









                Mauricio Rodríguez

                16




                16






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53199189%2funable-to-send-to-solace-jms-queue-capability-mismatch-router-does-not-support%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini