Hey everybody,
I'm new to Konakart. I want to add some content to the product details page, with i retrieved via a webservice.
I found out how to customize the frontend template (ProductDetailsBody.jsp) to add some static content.
Now I want to add dynamic content, form my webservice.
I tought I could add my logic to ShowProductDetailsAction, but I do not know how to access the content i got (product list) from the frontend template.
I think this is more a struts question than a konakart one. Hopefully someone can help me, anyway.
Regards
Today I had a new idea, how to fix my problem.
Is it possible to add some custom methods, to the Product Manager?
If it is possible, how do I implement a custom product Manager? I only know how to implement a custom AppEngine.
Looking forward to some help
Take a look at the Programming Guide section of the KonaKart User Guide.
It explains quite a few different techniques.
You may wish to specialise a manager and plug that in... see "Pluggable Managers"
Thank you for this hint!
That was indeed what I was searching for!
But it seems like only professional partners can customize these "Pluggable Managers". I do not have any source code for the manager classes, to extend from.
You don't need the source code to extend the managers. The javadoc contains the methods of each manager.
Hey ryan,
that sounds good. I didn't know that.
Then I hope this is my last question: Whats the difference between the com.konakart.al
and com.konakart.bl
packages? Which one contains, what? I didn't find an explantation for these in the documentation!
http://www.konakart.com/forum/index.php/topic,1582.msg6241.html#msg6241
thanks! forgot to search the forum! my fault!
As I'm extending the ProductMgr class I got an error, that the constructor
public ProductMgr(KKEngIf eng) throws java.lang.Exception
is undefined. So I added the constructor and delegated the call to the super class. But I get a error, that the super class does not have this constructor. The JavaDoc of ProductMgr (http://www.konakart.com/javadoc/server/com/konakart/bl/ProductMgr.html#ProductMgr(com.konakart.appif.KKEngIf)) tells me, that it should have this public constructor. Is the JavaDoc wrong?
Again my fault. There is a com.konakart.al.ProductMgr and a com.konakart.bl.ProductMgr.
By mistake I extended the al version instead of the bl version.
very confusing
so the bl version is the right one!
for everybody interested the post continues with this one:
http://www.konakart.com/forum/index.php/topic,1632.0.html (http://www.konakart.com/forum/index.php/topic,1632.0.html)