• Welcome to KonaKart Community Forum. Please login or sign up.
 
December 06, 2025, 06:59:42 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.

Topics - eriksen

1
Programming of KonaKart / Webservice, TaxRates
August 02, 2008, 11:54:35 pm
I'm having a problem retrieving Tax rates from Konakart.
(The insert works fine)

This is my Code ( service = KKWSAdminIf ):

AdminTaxRateSearch ss = new AdminTaxRateSearch();
ss.setId(-1);
AdminTaxRateSearchResult rr = service.getTaxRates(ss, -1, 0);
System.err.println("result: " + rr.getTaxRates().length +  " : " + rr.getTotalSetSize());

The console:
> result: 0 : 10

There is 10 rates, but I can't get them, the AdminTaxRateSearchResult is empty.
I have tried service.getAllTaxRates() with the same result.

Is this a bug, or do I do somethig very wrong here?