• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 22, 2025, 01:44:06 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 - sashwill

31
Sorry for a double reply...

I should add that I have not modified any of the jsp pages or the actions that are associated with the order history pages.
32
I haven't modified the admin app. It's still running as a stand alone tomcat app.  I'm refering to the customers order histoy page in the my account section.
33
I'm trying to use the webservice code below to get the complete order with item details, but the sessionId is null. What am I leaving out.

Quotewstest.KKWSAdminIfService kKWSAdminIfService = new wstest.KKWSAdminIfService_Impl();
System.out.println("Service ="+kKWSAdminIfService.toString());
            wstest.KKWSAdminIf kKWSAdmin = kKWSAdminIfService.getKKWSAdmin();
System.out.println("Service ="+kKWSAdmin.toString());           
            String sessionId = kKWSAdmin.login("username", "password");
System.out.println("session ="+sessionId);
            kKWSAdmin.getOrderForOrderId(sessionId,333);


output
QuoteService =wstest.KKWSAdminIfService_Impl@13f136e
Service =wstest.KKWSAdminIf_Stub@1551b0
session =null


On my third attempt i get a user blocked error so something must be working


34
Your test was running in a portal?
35
I have placed over 300 test orders and the count is correct on the Order history page:
QuoteDisplaying 1 to 10 (of 302 orders)

When I click next it goes to the set of orders:
QuoteDisplaying 11 to 20 (of 302 orders)

But then it continues to display this same set of orders over and over with each click
QuoteDisplaying 11 to 20 (of 302 orders)

Can someone check to see if this will display all the orders on their system?
In other words, is this a bug or something I created during modifications?
36
Programming of KonaKart / performance and catalogs
October 14, 2008, 02:10:30 pm
We are still considering the use of Konakart however these concerns were brought up at our review meeting. 

Would the Konakart experts be able to take a moment to address these questions?

How difficult is it to have multiple catalogs? We feel the single catalog limitation may be a problem. It could possibly limit our options in the future or add unwanted complexity in order to achieve the desired results. Or perhaps we are stuck in old ideas, how do you suggest we handle multiple vendors, each with thousands of items?

Is there a recommended maximum of inventory items? What is the maximum number of items that have successfully been tested in inventory while still achieving satisfactory results?

Is it possible to special order "non-catalog" items?  Konakart's main purpose for us would be to sell inventory from our warehouse, however we also buy parts on an as-needed basis. Is it possible to create a free-form order item?

Thank you in advance.
37
Feature Requests / SKU search
September 18, 2008, 04:09:22 pm
Any plans to implement an SKU search for the customer(if so, when?), or should I just plan to use the custom1 field.
38
KonaKart Gurus,

Is it possible to take a completed order, turn it into an xml document, and send it to another system.  If so, how(which api calls) and where would you recommend implementation?

Thanks for your help


39
Programming of KonaKart / Re: import problem
September 16, 2008, 02:40:24 pm
I had this happen to me if I was supplied a v_products_id  that didn't exist.  Even though the sku was there it would generate a new product with a new id.  When I removed the v_products_id from the import this problem went away.
40
Using KonaKart as a Portlet / Re: Konakartadmin
September 15, 2008, 09:08:05 pm
Thanks.
If i would have read my own post instead of cutting and pasting i might have noticed the error you pointed out.

The pages look horrible. Since they are suppose to be in a portal. 

41
Using KonaKart as a Portlet / Konakartadmin
September 15, 2008, 08:34:25 pm
I'm working with konakart running as a portal with the konakartadmin running as a web app and I have been unable to use the Customer-login in the admin app
I get a 404 error.


konakartAdmin is accessed by going to this URL: http://localhost/konakartadmin/#kk_panel_status  (I have to use localhost because I'm still in development and is not accessible from the public.  URL are given only as a troubleshooting aid)

From the configuration page - Admin App Configuration:

Base URL for logging into the App :  http://localhost/konakartadmin/AdminLoginSubmit.do


Error is get
URL it tries to reach : http://localhost/konakartadmin/AdminLoginSubmit.do?id=55&sess=8bf64c71fe677c2eb007318000978a47
HTTP Status 404 - /konakartadmin/AdminLoginSubmit.do
________________________________________
type Status report
message /konakartadmin/AdminLoginSubmit.do
description The requested resource (/konakartadmin/AdminLoginSubmit.do) is not available.

Should this work if the konakart is running as a portal while konakartadmin is running as a web app. If so can you see what i've done wrong?
42
I miss understood you earlier post

QuoteAfter further investigation, I think that all of the forwards that need fixing are the ones belonging to the action paths that you can find in struts-portlet-config.xml :

  <portlet-url-type>
    <action path="/SelectCat"/>
    <action path="/SelectProd"/>
    <action path="/SortProd"/>
     <action path="/ShowSearchByManufacturerResultsByLink"/>
  </portlet-url-type>


Thanks for the follow-up i've added the redirects where indicated in the file you posted and will keep my eye open for any other redirect messages in the log


43
Sorry the above post was a reply to another topic thread.
44
I've found two more that are giving me the log message:

12-Sep 10:31:01 WARN  (StrutsPortlet.java:processRequest:503) Warning: Using the
original action URL for render URL: /AddToCartSubmit.do.
A redirect should have been issued.
12-Sep 10:31:05 WARN  (StrutsPortlet.java:processRequest:503) Warning: Using the
original action URL for render URL: /EditCartSubmit.do.
A redirect should have been issued.

so i added the redirect to these as well
45
I've found two more that are giving me the log message:

12-Sep 10:31:01 WARN  (StrutsPortlet.java:processRequest:503) Warning: Using the
original action URL for render URL: /AddToCartSubmit.do.
A redirect should have been issued.
12-Sep 10:31:05 WARN  (StrutsPortlet.java:processRequest:503) Warning: Using the
original action URL for render URL: /EditCartSubmit.do.
A redirect should have been issued.

so i added the redirect to these as well