Igor Kromin |   Consultant. Coder. Blogger. Tinkerer. Gamer.

While working on a web service that used Oracle Coherence to cache some data I encountered the following error during deployment...
 Deployment Error
java.lang.IllegalStateException: Service "LocalCache" has been started with a non-compatible BackingMapManager: [email protected]f
at weblogic.Deployer.run(Deployer.java:76)
at weblogic.Deployer.mainWithExceptions(Deployer.java:63)
at weblogic.tools.maven.plugins.deploy.DeployMojo.execute(DeployMojo.java:300)
...


My web service's coherence-cache-config.xml file didn't specify any LocalCache configuration however, which means it was simply inheriting it from the system-wide configuration and that was causing a conflict.

To stop this conflict all I had to do was add a <scope-name> configuration element to the <cache-config> element like so...
 coherence-cache-config.xml
<cache-config ...>
<scope-name>UniqueScopeName</scope-name>
...
</cache-config>


The above is documented here.
Specifies the scope name for this configuration. The scope name is typically used (as a prefix) for all services generated by a cache factory to isolate services indicated in this cache configuration from services created by cache factories with other configurations, thus avoiding unintended joining of services with similar names from different configurations.





-i

A quick disclaimer...

Although I put in a great effort into researching all the topics I cover, mistakes can happen. Use of any information from my blog posts should be at own risk and I do not hold any liability towards any information misuse or damages caused by following any of my posts.

All content and opinions expressed on this Blog are my own and do not represent the opinions of my employer (Oracle). Use of any information contained in this blog post/article is subject to this disclaimer.
Hi! You can search my blog here ⤵
NOTE: (2022) This Blog is no longer maintained and I will not be answering any emails or comments.

I am now focusing on Atari Gamer.