• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 27, 2024, 02:00:10 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.

Topics - florinex

1
Hi,

I'm using 7.3.0.1 version and I need to know if there is a problem with the Multi-Valued Facets in this version. I created it just like in http://www.konakart.com/docs/FacetedSearching.html and in the storefront application displayed only the first value. I have 16 values for my tag group and it dispayed 16 times the same value that is the first value. Could you help me, please, with this problem? I need it very urgent!
Thanks!
2
Hi,

I'm using KonaKart SOAP web services and I have the following problem:
    when I want to use the login service to get an sessionId for a Admin connection with the following code:

            KKWSAdminIfServiceLocator kkwsaisl = new KKWSAdminIfServiceLocator();
            kkwsaisl.setKKWSAdminEndpointAddress("http://XXXXXXXXX:8780/konakartadmin/services/KKWSAdmin");
            kkwsaisl.setEndpointAddress("KKWSAdmin", "http://XXXXXXXXX:8780/konakartadmin/services/KKWSAdmin");
           
            com.konakartadmin.ws.KKWSAdminIf engine = kkwsaisl.getKKWSAdmin();
            String sessionId = engine.login(DEFAULT_USERNAME, DEFAULT_PASSWORD);


    in the client side I need the following jars to get a sessionId:

             <pathelement location="../webapps/konakart/WEB-INF/lib/konakart_village-4.0.jar" />
             <pathelement location="../webapps/konakart/WEB-INF/lib/konakart_torque-4.0.jar" />
             <pathelement location="../webapps/konakart/WEB-INF/lib/konakart_custom_utils.jar" />
             <pathelement location="../webapps/konakart/WEB-INF/lib/commons-dbcp-1.4.jar" />
             <pathelement location="../webapps/konakart/WEB-INF/lib/commons-pool-1.3.jar" />
        <pathelement location="../webapps/konakart/WEB-INF/lib/commons-beanutils-1.8.0.jar" />
        <pathelement location="../webapps/konakart/WEB-INF/lib/postgresql-9.1-901.jdbc4.jar" />


   jars that are accessing the KonaKart database.

So, when I want to access the login service from client side I need to have all the jars needed for connection with KonaKart database or I don't have a correct code to get the engine (like below). I didn't find an example for Admin engine to access the login service from client side without all the jars for the KonaKart database (in client side).

What am I doing wrong?

Thanks!

Florin