• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 02, 2024, 01:27:16 am

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 - iahmed

1
Hey All,

I wanted to go over my Pointers for configuring same Konakart binary for different environments,

Currently it's required that everything be put into the classes folder and then you have a build or something for each environment.

Here is what we did?

For All, Environment Specific Properties Add the following to tomcat classpath startup on each environment

add a folder containing konakart.properties,konakartadmin.properties, etc.

add a folder containing environment non-specific items CustomValidation.properties,Message.properties etc

(not yet fully verfied)
For the BirtViewer
change web.xml for the viewer servlet
to
<param-value>konakartadmin.properties</param-value>

in the, konakart.rptlibrary use
Where  ENV_KONAKART is passed as a -D variable on tomcat startup
var dbPropsFile = "C:/Program Files/" +
java.lang.System.getProperty("ENV_KONAKART") +
"/webapps/konakartadmin/WEB-INF/classes/konakartadmin.properties"


2
Feature Requests / Re: upto date UI, via styling
June 25, 2012, 08:16:25 pm
Hey Julie,

Sorry for the late reply, I understand the lack of priority. 

The issue is when you are doing a POC for Konakart, versus something like hosted solutions like Magento/Shopify,

The decision makers generally, don't like something that doesn't appeal visually, it makes a big first impression.

I believe the API, is the core and is great, unfortunately, the UI is what leaves the first impression.

Also, because our project had such a tight deadline, there was no way we could update our styling to the extent I would like, since the current UI had good programming infrastructure for the basic functionality.

As far as widgets are concerned, it's not something my company would be interested in currently, as our products are not meant for a traditional (register here/pay here scenario)

We are more buy the service then we will sell you supported products for that service.
3
Feature Requests / upto date UI, via styling
June 01, 2012, 04:54:24 pm
To get my organization, to see the benefit, from a java api, was not a big problem.
I was able to convince, my tech organization easily to purchase the enterprise version.

I wish the default app, that came with konakart had a more uptodate UI, in terms of styling.

It still uses a lot of spacers, and the clip art icons, are not that appealing, not to mention the man on the board.

Anyhow, if in the next major release, a more up-to-date styling component
4
Feature Requests / packaging libraries better
April 13, 2012, 05:38:59 pm
Hey All,

If the packaging of the app could include ivy.xml and pom.xml for maven that would be awesome.

Some of the libraries used by Konakart can't really tell what version or who the exact provider.

5
In your logs you had

12:41:17.003 [main] DEBUG o.a.t.d.JndiDataSourceFactory - JNDI path: jdbc/konakart-demo


and the jndi you specified was jdbc/konakartdb

I believe in your properties you need to specify where store1 is database default

torque.dsfactory.store1.factory              = org.apache.torque.dsfactory.JndiDataSourceFactory
torque.dsfactory.store1.jndi.path            = jdbc/konakartdb
torque.dsfactory.store1.jndi.ttl             = 60000
torque.dsfactory.store1.jndi.java.naming.factory.initial = \
                                                     org.apache.naming.java.javaURLContextFactory

comment
out

#torque.dsfactory.store1.factory=org.apache.torque.dsfactory.SharedPoolDataSourceFactory
6
Hey All,

I wonder how people have solved the following problem.

How to keep the same war for all environments?

the issue is basically as bundled, konakart and konakartadmin, have all properties in the classes folder.  How do I get the right properties file loaded for different environment without having a different war across environments.

at our organization, the war needs to be the exact same across environments
7
Programming of KonaKart / Re: wsdl documentation?
April 10, 2012, 02:31:37 pm
Thanks, that makes sense to me
8
Programming of KonaKart / wsdl documentation?
April 09, 2012, 09:46:49 pm
Hi all,

Just started playing around with the web service api.

I am having trouble finding documentation about the wsdl, for example on javadoc and wsdl

addToBasket(java.lang.String in0, int in1, Basket in2)

we've got these type of methods, there is no description on what in0 and in1 need to be except string or int, I can't find the documentation if in0 is SessionId what in1 zero means.

I looked at the javadoc and it's not available? so I probably just don't know where to look.

can someone help me out.