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?
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
add a comment |
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
add a comment |
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
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
hazelcast openfire
edited Mar 8 at 17:27
vkelman
asked Mar 6 at 20:49
vkelmanvkelman
3841518
3841518
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
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.
Thank you, @Guus
– vkelman
Mar 19 at 19:27
add a comment |
I am not sure if this has been attempted before but you can try the following:
- 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 fromhazelcast-enterprise.jar
tohazelcast.jar
. - modify
conf/hazelcast-local-config.xml
to configure license key and security details SSL. - 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.
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
add a comment |
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/
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
add a comment |
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.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Thank you, @Guus
– vkelman
Mar 19 at 19:27
add a comment |
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.
Thank you, @Guus
– vkelman
Mar 19 at 19:27
add a comment |
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.
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.
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
add a comment |
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
add a comment |
I am not sure if this has been attempted before but you can try the following:
- 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 fromhazelcast-enterprise.jar
tohazelcast.jar
. - modify
conf/hazelcast-local-config.xml
to configure license key and security details SSL. - 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.
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
add a comment |
I am not sure if this has been attempted before but you can try the following:
- 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 fromhazelcast-enterprise.jar
tohazelcast.jar
. - modify
conf/hazelcast-local-config.xml
to configure license key and security details SSL. - 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.
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
add a comment |
I am not sure if this has been attempted before but you can try the following:
- 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 fromhazelcast-enterprise.jar
tohazelcast.jar
. - modify
conf/hazelcast-local-config.xml
to configure license key and security details SSL. - 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.
I am not sure if this has been attempted before but you can try the following:
- 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 fromhazelcast-enterprise.jar
tohazelcast.jar
. - modify
conf/hazelcast-local-config.xml
to configure license key and security details SSL. - 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.
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
add a comment |
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
add a comment |
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/
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
add a comment |
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/
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
add a comment |
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/
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/
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
add a comment |
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
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Mar 7 at 4:18
Manny DavidManny David
562
562
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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