• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 26, 2024, 09:38:52 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 - florinex

1
Thank you Julie for the feedback. I tested the standard facets for refining the search and it's ok, my problem is with multi-valued facets like in the docs example with Color (Yellow, Blue, Green, Red) when I have to create a tag group for every value of the Color, first field from the tag group with Color for all and the second with every value (like Yellow, Blue, Green or Red). I re-created for many times and it display the same value (the first value).
Could you help me, please, with this problem if there is a problem with multi-valued facets?
Thank you!
2
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!
3
After I reviewed my context I arrived at the conclusion that in the client side I need only 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" />

without postgresql-9.1-901.jdbc4.jar.
4
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