I want to be able to use all the various manager classes. Sorry I should have been a bit more clear, I slimmed down the code example a bit.
I already have a KKWSEng which I'm using because the konakart engine isn't on the same server as the web front end. So it's more like:
KKEngIf eng = new KKWSEng();
new MgrFactory(eng).getProductMgr(false);
I'm gussing it falls over inside the getProductMgr() method on the following line
String str1 = KKEng.getKonakartConfig().getString("manager." + paramString1);
Looking inside KKEng it appears the static method KKEng.getKonakartConfig() returns a value that is only set if you invoke the contructor of the KKEng class which I'm not doing since I'm using KKWSEng.
Are these manager class supported with a WS engine?
I already have a KKWSEng which I'm using because the konakart engine isn't on the same server as the web front end. So it's more like:
KKEngIf eng = new KKWSEng();
new MgrFactory(eng).getProductMgr(false);
I'm gussing it falls over inside the getProductMgr() method on the following line
String str1 = KKEng.getKonakartConfig().getString("manager." + paramString1);
Looking inside KKEng it appears the static method KKEng.getKonakartConfig() returns a value that is only set if you invoke the contructor of the KKEng class which I'm not doing since I'm using KKWSEng.
Are these manager class supported with a WS engine?