• Welcome to KonaKart Community Forum. Please login or sign up.
 
July 13, 2025, 07:10:00 am

Recent posts

Pages 1 ... 4 5 6 7 8 ... 10
51
Programming of KonaKart / Re: Best way to hold/get Orde...
Last post by Brian - January 30, 2020, 03:07:48 pm
Hi,

It depends what status you use to determine a successful order.

You could look for that status id in the orders_status_history table (for the orders_id in question) and then look at the date_added column for that record.


52
Programming of KonaKart / Best way to hold/get Order's ...
Last post by sreejagaths - January 20, 2020, 02:50:17 pm
Hello,
Whats the best way to get order's success time with enterprise konakart8.3?

There's a column, named date_finished, in order table but its always null.
53
Feature Requests / Re: Crowd Funding and Recurrin...
Last post by Brian - October 22, 2019, 10:56:08 am
Thanks for your suggestion Jon.  We'll add it to our list for consideration for a future release.
54
Feature Requests / Crowd Funding and Recurring Do...
Last post by jon.w - October 22, 2019, 09:58:48 am
The donation option is helpful within Konakart. It would be beneficial to take this a few steps further with additional features such as:
- Individual donations - recurring subscription.
- Option for crowd-sourcing projects with a pledge or a payment. For example, having a donation optimum target, a donation minimum target, a time limit and geographical location for the fundraising exercise. 

Business rules for execution of payment based on minimum target, project start date etc..

Live information for product aggregates such as number of donors, pledges to date, % Financed.

The link below shows what a tile could look like:
https://en.goteo.org/?currency=USD  Goteo gives an example of a project in the form of a catalogue entry.

55
Mobile Access to KonaKart / Re: KonaKart Mobile eCommerce ...
Last post by Brian - February 14, 2019, 09:15:12 am
To see the responsive storefront in action you can view KonaKart Storefront Demo - if on a desktop machine watch what happens when the browser width is reduced.
56
Reporting / Re: Is there any documentation...
Last post by Brian - February 14, 2019, 09:12:36 am
For those starting out - this is a good place to start to get to know BIRT:  http://www.eclipse.org/birt/getting-started/
57
Programming of KonaKart / Re: Slow java api
Last post by Brian - January 28, 2019, 08:15:23 am
Simply replace KKWSEng with com.konakart.app.KKEng (for POJO), com.konakart.json.KKJSONEng (for JSON), com.konakart.jws.KKJAXWSEng (for JAXWS) or com.konakart.rmi.KKRMIEng (for RMI) .

EngineConfigIf engConfig = new EngineConfig();
engConfig.setMode(EngineConfig.MODE_SINGLE_STORE);
           
KKEngIf engine = new com.konakart.app.KKEng(engConfig);


You can also instantiate them by name if you wish:

/*
* Instantiate a java JSON Engine by name
* KKEngIf jsonEng = new KKJSONEng(engConfig);
*/
KKEngIf jsonEng = new KKEngineUtils().getKKEngByName("com.konakart.json.KKJSONEng", engConfig);
58
Programming of KonaKart / Re: Slow java api
Last post by giacomokk - January 25, 2019, 01:33:35 pm
Hi Brian,

and what is the code if i want to swap to pojos or json?

Thanks.
G
59
Programming of KonaKart / Re: Slow java api
Last post by Brian - January 25, 2019, 11:00:27 am
I don't know why you say the APIs are slow.  If used correctly the KonaKart APIs are efficient and fast.

SOAP, being a relatively heavy protocol, is always going to be a little slower than using POJOs or JSON, but still perfectly fast enough for most purposes.

You shouldn't instantiate your engines in the way you have described.

It's better to instantiate your engines like this:

EngineConfigIf engConfig = new EngineConfig();
engConfig.setMode(EngineConfig.MODE_SINGLE_STORE);
           
KKEngIf engine = new KKWSEng(engConfig);


If you do this you simply code against the KKEngIf which allows you to swap the engine at any time (including at runtime if required).  The implementation details are hidden from you by simply instantiating the engine for the required protocol (in the above case, SOAP).

(The equivalent is true for the KKAdminIf engines).


60
Programming of KonaKart / Slow java api
Last post by giacomokk - January 25, 2019, 10:41:10 am
Hi, konakart java api calls are really slow.
I instantiate kkAdminEng and kkEng in this way:

KKWSEngIf eng = new KKWSEngIfServiceLocator().getKKWebServiceEng();
KKWSAdminIf adminEng = new KKWSAdminIfServiceLocator().getKKWSAdmin();

Is that correct? If not, can it affect the response speed?
Thanks.
Giacomo
Pages 1 ... 4 5 6 7 8 ... 10