Hi there!
My organization has been using Bloomreach for 4 years now and the last upgrade we went through was 3 years ago (11 to 12)
Now, I’m working on reconciling the differences between our version 12 code base and what it takes to get 14 running.
I decided the best way to start this process would be to build a new project off the bloomreach 14.5 archetype and pull custom files and doc types over 1 by 1.
The plan is to hopefully use this topic to get help when I can’t seem to find the answer I need using Google or Bloomreach docs.
First Problem
I pulled over a single document type that has in for an array of supertypes:
hipposysedit:supertype: ['hippostd:taggable', 'hippotranslation:translated',
'hippotaxonomy:classifiable', 'contentplatform:basedocument', 'hippostd:relaxed']
The document is added to the equivalent .cnd
file, but when I attempt to run using cargo, I get the following error:
[INFO] [talledLocalContainer] at org.apache.jackrabbit.core.NamespaceRegistryImpl.getURI(NamespaceRegistryImpl.java:478) ~[jackrabbit-core-2.18.5-h3.jar:14.2.3]
[INFO] [talledLocalContainer] at org.apache.jackrabbit.core.session.SessionContext$PermissionAwareNamespaceRegistry.getURI(SessionContext.java:392) ~[jackrabbit-core-2.18.5-h3.jar:2.18.5-h3]
[INFO] [talledLocalContainer] at org.apache.jackrabbit.commons.AbstractSession.getNamespaceURI(AbstractSession.java:132) ~[jackrabbit-jcr-commons-2.18.5-h3.jar:?]
From what I can see from the code history it was not necessary to manually define this namespace. Do I need to do so now?