• Welcome to KonaKart Community Forum. Please login or sign up.
 
November 03, 2025, 03:12:33 pm

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - theodor.gorunescu

1
Can I use an external ActiveMQ and if so what would be the settings that I need to do in web.xml?
3
after I change OrderIntegrationMgr and I compile it,   how can I integrate the new version of OrderIntegrationMgr in KonaKart?
4
Thank you for your prompt response.

5
Try starting Konakart with ActiveMQ .

I modified the file web.xml to :

<! - Apache ActiveMQ - >

<servlet>
<servlet-name> KonaKartMQServlet < / servlet -name >
<servlet-class>
com.konakart.mq.KKMQServer
< / servlet -class >
<init-param>
<param-name> sites < / param -name >
<param-value> tcp :/ / localhost : 8791 < / param - value>
< / init- param >
<init-param>
<param-name> mqEnabled < / param -name >
<param-value> true < / param - value>
< / init- param >
<init-param>
<param-name> mqName < / param -name >
<param-value> KonaKart.Broker.1 < / param - value>
< / init- param >
<init-param>
<param-name> mqAdminUserName < / param -name >
<param-value> kkadmin < / param - value>
< / init- param >
<init-param>
<param-name> mqAdminUserPassword < / param -name >
<param-value> princess < / param - value>
< / init- param >
<init-param>
<param-name> mqUserUserName < / param -name >
<param-value> kkuser < / param - value>
< / init- param >
<init-param>
<param-name> mqUserPassword < / param -name >
<param-value> prince < / param - value>
< / init- param >
<init-param>
<param-name> mqKonaKartQStub < / param -name >
<param-value> KonaKart . < / param - value>
< / init- param >
<load-on-startup> 20 < / load -on - startup >
< / servlet >
<! - End Of Apache ActiveMQ - >

.

Next I defined properties in the konakart.properties and konakartadmin.properties ( not  in konakartadmin.proprties)

I started Konakart.

Just started a java program that read KonaKart.Orders.Queue, but nothing happens, even I make orders, change staus, etc.