Does Hazelcast Openfire plugin allows SSL? The Next CEO of Stack OverflowClustering Openfire 3.7.1Openfire Cluster Hazelcast Plugin IssuesHazelcast [3.2.6] Client cannot connect when SSL is enabledUnable to configure Hazelcast clustering at openfire serverAdd cache to a running Hazelcast NodeHazelcast Management Center - Performance IssuesHazelcast multicast does not work because of vboxnet which is used by docker-machineHazelcast Eureka Cloud Discovery Plugin not workingHazelcast cluster unstable on KubernetesEjabberd clustering over SSL?

Expectation in a stochastic differential equation

Can I board the first leg of the flight without having final country's visa?

Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?

Is fine stranded wire ok for main supply line?

What happened in Rome, when the western empire "fell"?

Is French Guiana a (hard) EU border?

Could a dragon use its wings to swim?

what's the use of '% to gdp' type of variables?

Is it ever safe to open a suspicious HTML file (e.g. email attachment)?

Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?

Physiological effects of huge anime eyes

How to get the last not-null value in an ordered column of a huge table?

"Eavesdropping" vs "Listen in on"

Are the names of these months realistic?

In the "Harry Potter and the Order of the Phoenix" video game, what potion is used to sabotage Umbridge's speakers?

How to find image of a complex function with given constraints?

Is there a reasonable and studied concept of reduction between regular languages?

What steps are necessary to read a Modern SSD in Medieval Europe?

Lucky Feat: How can "more than one creature spend a luck point to influence the outcome of a roll"?

What is the process for cleansing a very negative action

Airplane gently rocking its wings during whole flight

How do I fit a non linear curve?

Audio Conversion With ADS1243

Can Sneak Attack be used when hitting with an improvised weapon?



Does Hazelcast Openfire plugin allows SSL?



The Next CEO of Stack OverflowClustering Openfire 3.7.1Openfire Cluster Hazelcast Plugin IssuesHazelcast [3.2.6] Client cannot connect when SSL is enabledUnable to configure Hazelcast clustering at openfire serverAdd cache to a running Hazelcast NodeHazelcast Management Center - Performance IssuesHazelcast multicast does not work because of vboxnet which is used by docker-machineHazelcast Eureka Cloud Discovery Plugin not workingHazelcast cluster unstable on KubernetesEjabberd clustering over SSL?










0















By default, after installation Openfire Hazelcast plugin has



<ssl enabled="false"/>


in its config file. My attempt to enable it broke clustering and Openfire log said that



java.lang.IllegalStateException: SSL/TLS requires Hazelcast Enterprise Edition


Is it correct, so there is no way to make Hazelcast plugins using SSL for communications between Openfire nodes?










share|improve this question




























    0















    By default, after installation Openfire Hazelcast plugin has



    <ssl enabled="false"/>


    in its config file. My attempt to enable it broke clustering and Openfire log said that



    java.lang.IllegalStateException: SSL/TLS requires Hazelcast Enterprise Edition


    Is it correct, so there is no way to make Hazelcast plugins using SSL for communications between Openfire nodes?










    share|improve this question


























      0












      0








      0








      By default, after installation Openfire Hazelcast plugin has



      <ssl enabled="false"/>


      in its config file. My attempt to enable it broke clustering and Openfire log said that



      java.lang.IllegalStateException: SSL/TLS requires Hazelcast Enterprise Edition


      Is it correct, so there is no way to make Hazelcast plugins using SSL for communications between Openfire nodes?










      share|improve this question
















      By default, after installation Openfire Hazelcast plugin has



      <ssl enabled="false"/>


      in its config file. My attempt to enable it broke clustering and Openfire log said that



      java.lang.IllegalStateException: SSL/TLS requires Hazelcast Enterprise Edition


      Is it correct, so there is no way to make Hazelcast plugins using SSL for communications between Openfire nodes?







      hazelcast openfire






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 17:27







      vkelman

















      asked Mar 6 at 20:49









      vkelmanvkelman

      3841518




      3841518






















          4 Answers
          4






          active

          oldest

          votes


















          1














          Assuming that the Hazelcast Enterprise API is an extension of the Hazelcast API, it might be as simple as recompiling the Openfire Hazelcast plugin with a different Hazelcast dependency.



          I did a quick test. The plugin compiles just fine after you swap the dependency on Hazelcast with a dependency on the 'enterprise' variant, like this (your version number might vary):



          <dependencies>
          <dependency>
          <groupId>com.hazelcast</groupId>
          <artifactId>hazelcast-enterprise</artifactId>
          <version>3.10.6</version>
          </dependency>
          </dependencies>

          <repositories>
          <repository>
          <id>hazelcast</id>
          <url>https://dl.bintray.com/hazelcast/release/</url>
          </repository>
          </repositories>


          Most of the Hazelcast configuration can be done in the XML file that's already accessible as a stand-alone file in Openfire. There's a good chance that you don't need any code modifications to get things configured in the way you want.






          share|improve this answer

























          • Thank you, @Guus

            – vkelman
            Mar 19 at 19:27


















          1














          I am not sure if this has been attempted before but you can try the following:



          1. download the enterprise version of Hazelcast and place the hazelcast jar in plugins folder of Openfire. I am not certain about the internals of Openfire but if there exists a maven configuration to import Hazelcast then modify that to load Hazelcast enterprise. Or if nothing else works then try renaming the Hazelcast jar from hazelcast-enterprise.jar to hazelcast.jar.

          2. modify conf/hazelcast-local-config.xml to configure license key and security details SSL.

          3. Fire away.

          Here is a link to Openfire doc for Hazelcast plugin: https://www.igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/readme.html#config



          Please do update here if this works.






          share|improve this answer























          • In my understanding, hazelcast.jar file from a plugin is not the same as hazelcast.jar from Hazelcast IMDG - it contains specifically Openfire plugin code on the top of plain Hazelcast. So, replacing it with hazelcast-enterprise.jar wouldn't help, because there will be no plugin code.

            – vkelman
            Mar 7 at 15:09











          • There is no plugin code inside hazelcast jar, its all Hazelcast codd only. Openfire internally uses Hazelcast APIs.

            – wildnez
            Mar 7 at 21:56











          • Oh, really? Then what is the role of Hazelcast plugin developer?

            – vkelman
            Mar 7 at 22:23











          • I am not sure what you are referring to as 'Hazelcast plugin developer' but on a general note, anyone can develop a plugin for Hazelcast on open-source code. Those plugins are then bundled in a separate jar, not in Hazelcast jar. Hope that answers your question.

            – wildnez
            Mar 8 at 6:13











          • I'm talking about Openfire plugin built on the top of free version of Hazelcast, not a plugin for Hazelcast. igniterealtime.org/projects/openfire/plugins.jsp igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/…

            – vkelman
            Mar 8 at 14:31


















          0














          Support for TLS/SSL is not included in the open source version of Hazelcast, as the error message indicates it is part of the Enterprise Edition feature set.



          https://hazelcast.com/product-features/security-suite/






          share|improve this answer























          • Which means that there is no way to make Hazelcast Openfire plugin working with SSL. Even if we buy enterprise Hazelcast IMDG, it won't make plugin enterprize. Correct?

            – vkelman
            Mar 6 at 21:22


















          0














          Correct, purchasing the enterprise edition wouldn't help as far as I can tell. The Hazelcast (open source) plugin for Openfire is maintained by the folks at Ignite Realtime. They only support specific versions of Hazelcast as well.






          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',
            autoActivateHeartbeat: false,
            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%2f55031901%2fdoes-hazelcast-openfire-plugin-allows-ssl%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            4 Answers
            4






            active

            oldest

            votes








            4 Answers
            4






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Assuming that the Hazelcast Enterprise API is an extension of the Hazelcast API, it might be as simple as recompiling the Openfire Hazelcast plugin with a different Hazelcast dependency.



            I did a quick test. The plugin compiles just fine after you swap the dependency on Hazelcast with a dependency on the 'enterprise' variant, like this (your version number might vary):



            <dependencies>
            <dependency>
            <groupId>com.hazelcast</groupId>
            <artifactId>hazelcast-enterprise</artifactId>
            <version>3.10.6</version>
            </dependency>
            </dependencies>

            <repositories>
            <repository>
            <id>hazelcast</id>
            <url>https://dl.bintray.com/hazelcast/release/</url>
            </repository>
            </repositories>


            Most of the Hazelcast configuration can be done in the XML file that's already accessible as a stand-alone file in Openfire. There's a good chance that you don't need any code modifications to get things configured in the way you want.






            share|improve this answer

























            • Thank you, @Guus

              – vkelman
              Mar 19 at 19:27















            1














            Assuming that the Hazelcast Enterprise API is an extension of the Hazelcast API, it might be as simple as recompiling the Openfire Hazelcast plugin with a different Hazelcast dependency.



            I did a quick test. The plugin compiles just fine after you swap the dependency on Hazelcast with a dependency on the 'enterprise' variant, like this (your version number might vary):



            <dependencies>
            <dependency>
            <groupId>com.hazelcast</groupId>
            <artifactId>hazelcast-enterprise</artifactId>
            <version>3.10.6</version>
            </dependency>
            </dependencies>

            <repositories>
            <repository>
            <id>hazelcast</id>
            <url>https://dl.bintray.com/hazelcast/release/</url>
            </repository>
            </repositories>


            Most of the Hazelcast configuration can be done in the XML file that's already accessible as a stand-alone file in Openfire. There's a good chance that you don't need any code modifications to get things configured in the way you want.






            share|improve this answer

























            • Thank you, @Guus

              – vkelman
              Mar 19 at 19:27













            1












            1








            1







            Assuming that the Hazelcast Enterprise API is an extension of the Hazelcast API, it might be as simple as recompiling the Openfire Hazelcast plugin with a different Hazelcast dependency.



            I did a quick test. The plugin compiles just fine after you swap the dependency on Hazelcast with a dependency on the 'enterprise' variant, like this (your version number might vary):



            <dependencies>
            <dependency>
            <groupId>com.hazelcast</groupId>
            <artifactId>hazelcast-enterprise</artifactId>
            <version>3.10.6</version>
            </dependency>
            </dependencies>

            <repositories>
            <repository>
            <id>hazelcast</id>
            <url>https://dl.bintray.com/hazelcast/release/</url>
            </repository>
            </repositories>


            Most of the Hazelcast configuration can be done in the XML file that's already accessible as a stand-alone file in Openfire. There's a good chance that you don't need any code modifications to get things configured in the way you want.






            share|improve this answer















            Assuming that the Hazelcast Enterprise API is an extension of the Hazelcast API, it might be as simple as recompiling the Openfire Hazelcast plugin with a different Hazelcast dependency.



            I did a quick test. The plugin compiles just fine after you swap the dependency on Hazelcast with a dependency on the 'enterprise' variant, like this (your version number might vary):



            <dependencies>
            <dependency>
            <groupId>com.hazelcast</groupId>
            <artifactId>hazelcast-enterprise</artifactId>
            <version>3.10.6</version>
            </dependency>
            </dependencies>

            <repositories>
            <repository>
            <id>hazelcast</id>
            <url>https://dl.bintray.com/hazelcast/release/</url>
            </repository>
            </repositories>


            Most of the Hazelcast configuration can be done in the XML file that's already accessible as a stand-alone file in Openfire. There's a good chance that you don't need any code modifications to get things configured in the way you want.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Mar 15 at 10:57

























            answered Mar 15 at 10:45









            GuusGuus

            2,47011729




            2,47011729












            • Thank you, @Guus

              – vkelman
              Mar 19 at 19:27

















            • Thank you, @Guus

              – vkelman
              Mar 19 at 19:27
















            Thank you, @Guus

            – vkelman
            Mar 19 at 19:27





            Thank you, @Guus

            – vkelman
            Mar 19 at 19:27













            1














            I am not sure if this has been attempted before but you can try the following:



            1. download the enterprise version of Hazelcast and place the hazelcast jar in plugins folder of Openfire. I am not certain about the internals of Openfire but if there exists a maven configuration to import Hazelcast then modify that to load Hazelcast enterprise. Or if nothing else works then try renaming the Hazelcast jar from hazelcast-enterprise.jar to hazelcast.jar.

            2. modify conf/hazelcast-local-config.xml to configure license key and security details SSL.

            3. Fire away.

            Here is a link to Openfire doc for Hazelcast plugin: https://www.igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/readme.html#config



            Please do update here if this works.






            share|improve this answer























            • In my understanding, hazelcast.jar file from a plugin is not the same as hazelcast.jar from Hazelcast IMDG - it contains specifically Openfire plugin code on the top of plain Hazelcast. So, replacing it with hazelcast-enterprise.jar wouldn't help, because there will be no plugin code.

              – vkelman
              Mar 7 at 15:09











            • There is no plugin code inside hazelcast jar, its all Hazelcast codd only. Openfire internally uses Hazelcast APIs.

              – wildnez
              Mar 7 at 21:56











            • Oh, really? Then what is the role of Hazelcast plugin developer?

              – vkelman
              Mar 7 at 22:23











            • I am not sure what you are referring to as 'Hazelcast plugin developer' but on a general note, anyone can develop a plugin for Hazelcast on open-source code. Those plugins are then bundled in a separate jar, not in Hazelcast jar. Hope that answers your question.

              – wildnez
              Mar 8 at 6:13











            • I'm talking about Openfire plugin built on the top of free version of Hazelcast, not a plugin for Hazelcast. igniterealtime.org/projects/openfire/plugins.jsp igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/…

              – vkelman
              Mar 8 at 14:31















            1














            I am not sure if this has been attempted before but you can try the following:



            1. download the enterprise version of Hazelcast and place the hazelcast jar in plugins folder of Openfire. I am not certain about the internals of Openfire but if there exists a maven configuration to import Hazelcast then modify that to load Hazelcast enterprise. Or if nothing else works then try renaming the Hazelcast jar from hazelcast-enterprise.jar to hazelcast.jar.

            2. modify conf/hazelcast-local-config.xml to configure license key and security details SSL.

            3. Fire away.

            Here is a link to Openfire doc for Hazelcast plugin: https://www.igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/readme.html#config



            Please do update here if this works.






            share|improve this answer























            • In my understanding, hazelcast.jar file from a plugin is not the same as hazelcast.jar from Hazelcast IMDG - it contains specifically Openfire plugin code on the top of plain Hazelcast. So, replacing it with hazelcast-enterprise.jar wouldn't help, because there will be no plugin code.

              – vkelman
              Mar 7 at 15:09











            • There is no plugin code inside hazelcast jar, its all Hazelcast codd only. Openfire internally uses Hazelcast APIs.

              – wildnez
              Mar 7 at 21:56











            • Oh, really? Then what is the role of Hazelcast plugin developer?

              – vkelman
              Mar 7 at 22:23











            • I am not sure what you are referring to as 'Hazelcast plugin developer' but on a general note, anyone can develop a plugin for Hazelcast on open-source code. Those plugins are then bundled in a separate jar, not in Hazelcast jar. Hope that answers your question.

              – wildnez
              Mar 8 at 6:13











            • I'm talking about Openfire plugin built on the top of free version of Hazelcast, not a plugin for Hazelcast. igniterealtime.org/projects/openfire/plugins.jsp igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/…

              – vkelman
              Mar 8 at 14:31













            1












            1








            1







            I am not sure if this has been attempted before but you can try the following:



            1. download the enterprise version of Hazelcast and place the hazelcast jar in plugins folder of Openfire. I am not certain about the internals of Openfire but if there exists a maven configuration to import Hazelcast then modify that to load Hazelcast enterprise. Or if nothing else works then try renaming the Hazelcast jar from hazelcast-enterprise.jar to hazelcast.jar.

            2. modify conf/hazelcast-local-config.xml to configure license key and security details SSL.

            3. Fire away.

            Here is a link to Openfire doc for Hazelcast plugin: https://www.igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/readme.html#config



            Please do update here if this works.






            share|improve this answer













            I am not sure if this has been attempted before but you can try the following:



            1. download the enterprise version of Hazelcast and place the hazelcast jar in plugins folder of Openfire. I am not certain about the internals of Openfire but if there exists a maven configuration to import Hazelcast then modify that to load Hazelcast enterprise. Or if nothing else works then try renaming the Hazelcast jar from hazelcast-enterprise.jar to hazelcast.jar.

            2. modify conf/hazelcast-local-config.xml to configure license key and security details SSL.

            3. Fire away.

            Here is a link to Openfire doc for Hazelcast plugin: https://www.igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/readme.html#config



            Please do update here if this works.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 7 at 4:16









            wildnezwildnez

            65148




            65148












            • In my understanding, hazelcast.jar file from a plugin is not the same as hazelcast.jar from Hazelcast IMDG - it contains specifically Openfire plugin code on the top of plain Hazelcast. So, replacing it with hazelcast-enterprise.jar wouldn't help, because there will be no plugin code.

              – vkelman
              Mar 7 at 15:09











            • There is no plugin code inside hazelcast jar, its all Hazelcast codd only. Openfire internally uses Hazelcast APIs.

              – wildnez
              Mar 7 at 21:56











            • Oh, really? Then what is the role of Hazelcast plugin developer?

              – vkelman
              Mar 7 at 22:23











            • I am not sure what you are referring to as 'Hazelcast plugin developer' but on a general note, anyone can develop a plugin for Hazelcast on open-source code. Those plugins are then bundled in a separate jar, not in Hazelcast jar. Hope that answers your question.

              – wildnez
              Mar 8 at 6:13











            • I'm talking about Openfire plugin built on the top of free version of Hazelcast, not a plugin for Hazelcast. igniterealtime.org/projects/openfire/plugins.jsp igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/…

              – vkelman
              Mar 8 at 14:31

















            • In my understanding, hazelcast.jar file from a plugin is not the same as hazelcast.jar from Hazelcast IMDG - it contains specifically Openfire plugin code on the top of plain Hazelcast. So, replacing it with hazelcast-enterprise.jar wouldn't help, because there will be no plugin code.

              – vkelman
              Mar 7 at 15:09











            • There is no plugin code inside hazelcast jar, its all Hazelcast codd only. Openfire internally uses Hazelcast APIs.

              – wildnez
              Mar 7 at 21:56











            • Oh, really? Then what is the role of Hazelcast plugin developer?

              – vkelman
              Mar 7 at 22:23











            • I am not sure what you are referring to as 'Hazelcast plugin developer' but on a general note, anyone can develop a plugin for Hazelcast on open-source code. Those plugins are then bundled in a separate jar, not in Hazelcast jar. Hope that answers your question.

              – wildnez
              Mar 8 at 6:13











            • I'm talking about Openfire plugin built on the top of free version of Hazelcast, not a plugin for Hazelcast. igniterealtime.org/projects/openfire/plugins.jsp igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/…

              – vkelman
              Mar 8 at 14:31
















            In my understanding, hazelcast.jar file from a plugin is not the same as hazelcast.jar from Hazelcast IMDG - it contains specifically Openfire plugin code on the top of plain Hazelcast. So, replacing it with hazelcast-enterprise.jar wouldn't help, because there will be no plugin code.

            – vkelman
            Mar 7 at 15:09





            In my understanding, hazelcast.jar file from a plugin is not the same as hazelcast.jar from Hazelcast IMDG - it contains specifically Openfire plugin code on the top of plain Hazelcast. So, replacing it with hazelcast-enterprise.jar wouldn't help, because there will be no plugin code.

            – vkelman
            Mar 7 at 15:09













            There is no plugin code inside hazelcast jar, its all Hazelcast codd only. Openfire internally uses Hazelcast APIs.

            – wildnez
            Mar 7 at 21:56





            There is no plugin code inside hazelcast jar, its all Hazelcast codd only. Openfire internally uses Hazelcast APIs.

            – wildnez
            Mar 7 at 21:56













            Oh, really? Then what is the role of Hazelcast plugin developer?

            – vkelman
            Mar 7 at 22:23





            Oh, really? Then what is the role of Hazelcast plugin developer?

            – vkelman
            Mar 7 at 22:23













            I am not sure what you are referring to as 'Hazelcast plugin developer' but on a general note, anyone can develop a plugin for Hazelcast on open-source code. Those plugins are then bundled in a separate jar, not in Hazelcast jar. Hope that answers your question.

            – wildnez
            Mar 8 at 6:13





            I am not sure what you are referring to as 'Hazelcast plugin developer' but on a general note, anyone can develop a plugin for Hazelcast on open-source code. Those plugins are then bundled in a separate jar, not in Hazelcast jar. Hope that answers your question.

            – wildnez
            Mar 8 at 6:13













            I'm talking about Openfire plugin built on the top of free version of Hazelcast, not a plugin for Hazelcast. igniterealtime.org/projects/openfire/plugins.jsp igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/…

            – vkelman
            Mar 8 at 14:31





            I'm talking about Openfire plugin built on the top of free version of Hazelcast, not a plugin for Hazelcast. igniterealtime.org/projects/openfire/plugins.jsp igniterealtime.org/projects/openfire/plugins/2.4.0/hazelcast/…

            – vkelman
            Mar 8 at 14:31











            0














            Support for TLS/SSL is not included in the open source version of Hazelcast, as the error message indicates it is part of the Enterprise Edition feature set.



            https://hazelcast.com/product-features/security-suite/






            share|improve this answer























            • Which means that there is no way to make Hazelcast Openfire plugin working with SSL. Even if we buy enterprise Hazelcast IMDG, it won't make plugin enterprize. Correct?

              – vkelman
              Mar 6 at 21:22















            0














            Support for TLS/SSL is not included in the open source version of Hazelcast, as the error message indicates it is part of the Enterprise Edition feature set.



            https://hazelcast.com/product-features/security-suite/






            share|improve this answer























            • Which means that there is no way to make Hazelcast Openfire plugin working with SSL. Even if we buy enterprise Hazelcast IMDG, it won't make plugin enterprize. Correct?

              – vkelman
              Mar 6 at 21:22













            0












            0








            0







            Support for TLS/SSL is not included in the open source version of Hazelcast, as the error message indicates it is part of the Enterprise Edition feature set.



            https://hazelcast.com/product-features/security-suite/






            share|improve this answer













            Support for TLS/SSL is not included in the open source version of Hazelcast, as the error message indicates it is part of the Enterprise Edition feature set.



            https://hazelcast.com/product-features/security-suite/







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 6 at 21:02









            Mike YawnMike Yawn

            1115




            1115












            • Which means that there is no way to make Hazelcast Openfire plugin working with SSL. Even if we buy enterprise Hazelcast IMDG, it won't make plugin enterprize. Correct?

              – vkelman
              Mar 6 at 21:22

















            • Which means that there is no way to make Hazelcast Openfire plugin working with SSL. Even if we buy enterprise Hazelcast IMDG, it won't make plugin enterprize. Correct?

              – vkelman
              Mar 6 at 21:22
















            Which means that there is no way to make Hazelcast Openfire plugin working with SSL. Even if we buy enterprise Hazelcast IMDG, it won't make plugin enterprize. Correct?

            – vkelman
            Mar 6 at 21:22





            Which means that there is no way to make Hazelcast Openfire plugin working with SSL. Even if we buy enterprise Hazelcast IMDG, it won't make plugin enterprize. Correct?

            – vkelman
            Mar 6 at 21:22











            0














            Correct, purchasing the enterprise edition wouldn't help as far as I can tell. The Hazelcast (open source) plugin for Openfire is maintained by the folks at Ignite Realtime. They only support specific versions of Hazelcast as well.






            share|improve this answer



























              0














              Correct, purchasing the enterprise edition wouldn't help as far as I can tell. The Hazelcast (open source) plugin for Openfire is maintained by the folks at Ignite Realtime. They only support specific versions of Hazelcast as well.






              share|improve this answer

























                0












                0








                0







                Correct, purchasing the enterprise edition wouldn't help as far as I can tell. The Hazelcast (open source) plugin for Openfire is maintained by the folks at Ignite Realtime. They only support specific versions of Hazelcast as well.






                share|improve this answer













                Correct, purchasing the enterprise edition wouldn't help as far as I can tell. The Hazelcast (open source) plugin for Openfire is maintained by the folks at Ignite Realtime. They only support specific versions of Hazelcast as well.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 7 at 4:18









                Manny DavidManny David

                562




                562



























                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55031901%2fdoes-hazelcast-openfire-plugin-allows-ssl%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







                    Popular posts from this blog

                    Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

                    Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

                    2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived