• Welcome to KonaKart Community Forum. Please login or sign up.
 
March 29, 2024, 06:27:23 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 - ryanlynch

1
Hi there --

I am experiencing some strange behavior with KonaKart -- I see the following log message every few seconds:

20-Nov 11:48:47 INFO (?:<init>:?) Engine used by application is com.konakart.app.KKEng
20-Nov 11:49:00 INFO (?:<init>:?) Engine used by application is com.konakart.app.KKEng
20-Nov 11:49:10 INFO (?:<init>:?) Engine used by application is com.konakart.app.KKEng

over and over --

Does this mean the Engine is restarting or something... ??

Any ideas as to what is causing this?? Any info would be really appreciated 
2
Programming of KonaKart / Forward to Admin Login
November 16, 2008, 12:47:52 am
Hi there -

I am using the custom panels in the Admin tool. I have created a separate struts application for my custom tools. My question is: Since I check for a valid session Id (the session id passed in from the KonaKart Admin tool), I'd like to setup a forward to the admin login if the session id is expired or not present -- I need to do this without hard coding the KonaKart admin URL. It would be nice if I could use Struts Action Forward mechanism... does anyone know if there is a build in way to do this?

Thanks
-Ryan
3
Feature Requests / header.jsp
October 18, 2008, 04:00:17 am
In header.jsp there is the following code for splitting nav parameters:

      <logic:iterate id="n" name="kkEng" property="nav" type="java.lang.String">
         <%if (n!=null && n.split(";").length==2){%>
            &raquo;&nbsp;<html:link page="<%=n.split(";")[1]%>"><%=n.split(";")[0]%></html:link>
         <%}else{%>
            &raquo;&nbsp;<bean:write name="n" filter="false"/>
         <%}%>                                              
      </logic:iterate>

Using a semi colon as the split identifier can cause problems if you have HTML code in the string --for example, I use the HTML code for an apostrophe (#39;) in my name field and since HTML codes end with a semi colon, a false split occurs.. I think its risky to assume the nav string will never contain an intentional semi-colon.
4
Installation of KonaKart / OrderStatus ids
October 03, 2008, 11:10:06 pm
Hi there -

Is there documentation anywhere that states what the different orderstatus id's represent??

For example.. I see this in my console:

The order with id = 123 has just changed state from stateId = 4 to stateId = 5

What I would like to know is what is the orderstatus id that represents a new payment received order

Thanks!
5
Hello,
I would like to use "temporary addresses" for my shipping and billing addresses during checkout. Basically, to better explain, instead of giving the customer the option of adding or using existing addresses in their address book, I want to present two separate address forms --one on the shipping checkout page and one on the billing address page. I am assuming I can create new Address objects from each form, however, my question is: how do I bind these addresses to the order and then ensure they are no stored in the customer's address book?

Thank you

-Ryan
6
Programming of KonaKart / AUTH_ONLY in Authorizenet.java
September 18, 2008, 01:00:31 am
Hi there -

If I change the authorize.net payment module to only authorize:

parmList.add(new NameValue("x_type", "AUTH_ONLY"));

Will Digital Downloads still appear in the customer's library after they make a purchase.

Thanks in advance!
7
Programming of KonaKart / java2wsdl
September 11, 2008, 12:30:21 am
Hi there -
can someone kindly tell me where the wsdl is generated? Is it in a build.xml file??? I am looking for java2wsdl
8
Hi there -- I have been experimenting with web services API and it seems to be working insomuch as I get a response, but the responses don't seem to be complete. For example, the call getCustomerForId(sess, custid) returns:

custom4: null
globalProdNotifier: 0
accountCreated: null
lastLogon: null
id: 2
orders: null
enabled: false
accountLastModified: null
password: null
faxNumber: null
gender: null
custom1: null
groupId: 0
promotionTimesUsed: 0
custom3: null
defaultAddr: [object Object]
lastName: null
firstName: null
promotionMaxUse: 0
defaultAddrId: 0
custom2: null
emailAddr: admin@konakart.com
addresses: null
productNotifications: null
birthDate: null
numberOfLogons: 0
type: 0
custom5: null
roles: null
newsletter: null
telephoneNumber: null


This is strange because first and last name appear in the database... any ideas??
9
Installation of KonaKart / modified WSDL
August 28, 2008, 03:44:20 pm
Hi

I modified the konakart.wsdl file to point to the correct box.. how do I override the default admin wsdl that's currently on tomcat??
10
Programming of KonaKart / LogInBody.jsp
August 22, 2008, 11:37:14 pm
HI there -

I found the following code at the beginning of LogInBody.jsp and I am hoping someone can tell me if it's important... not sure what info_shopping_cart.php is

<script type="text/javascript"><!--
function session_win() {
  window.open("http://localhost/catalog/info_shopping_cart.php?osCsid=5ed86efcd9ab9e0afa5f7e3810309edb","info_shopping_cart","height=460,width=430,toolbar=no,statusbar=no,scrollbars=yes";).focus();
}
//--></script>
11
Hi there -
I would like to make it so that the categories left nav is only expanded when the user is browsing through categories. Currently, it is expanded on product pages and checkout.. I am aware of the reset() method, but am hoping someone can kindly offer a suggestion as to where I might implement it so the categories bar is only expanded while browsing categories.
12
Hello,
Can someone kindly tell me if there is a way in the Admin App to reset the number of times a customer has downloaded a digital download product (on a per customer basis, that is)? If not, it looks like the DigitalDownloadIf interface would be the way to create this functionality. Is this correct?... any thoughts on how I'd go about doing this?
Thanks!
13
I just upgraded to 2.2.6.0 and for the life of me cannot find the section in the admin tool that configures the custom panels. The User Guide says they are in Configuration > Custom Panels, but I don't have a "Custom Panels" button.. I have attached an image that shows my current version. Any help would be really great.
14
Hi

I just installed the newest release of KonaKart -- I am getting the following exception at checkout when prompted to enter my email address... after I click submit:

23-Jul 03:16:24 ERROR (?:log:?) Exception while dispatching incoming RPC call
com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract boolean com.konakart.client.KKGWTServiceIf.isEmailValid(java.lang.String) throws com.konakart.client.util.KKGWTException' threw an unexpected exception: java.lang.NoClassDefFoundError: com.konakart.bl.Emailer
   at com.google.gwt.user.server.rpc.RPC.encodeResponseForFailure(RPC.java:361)
   at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:547)
   at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265)
   at com.google.gwt.user.server.rpc.RemoteServiceServlet.doPost(RemoteServiceServlet.java:187)
   at javax.servlet.http.HttpServlet.service(tomcat5-servlet-2.4-api-5.5.23.jar.so)
   at javax.servlet.http.HttpServlet.service(tomcat5-servlet-2.4-api-5.5.23.jar.so)
   at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(catalina-5.5.23.jar.sopo4rsg.so)
   at org.apache.catalina.core.ApplicationFilterChain.doFilter(catalina-5.5.23.jar.sopo4rsg.so)
   at org.apache.catalina.core.StandardWrapperValve.invoke(catalina-5.5.23.jar.sopo4rsg.so)
   at org.apache.catalina.core.StandardContextValve.invoke(catalina-5.5.23.jar.sopo4rsg.so)
   at org.apache.catalina.core.StandardHostValve.invoke(catalina-5.5.23.jar.sopo4rsg.so)
   at org.apache.catalina.valves.ErrorReportValve.invoke(catalina-5.5.23.jar.sopo4rsg.so)
   at org.apache.catalina.core.StandardEngineValve.invoke(catalina-5.5.23.jar.sopo4rsg.so)
   at org.apache.catalina.connector.CoyoteAdapter.service(catalina-5.5.23.jar.sopo4rsg.so)
   at org.apache.coyote.http11.Http11Processor.process(tomcat-http-5.5.23.jar.so)
   at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(tomcat-http-5.5.23.jar.so)
   at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(tomcat-util-5.5.23.jar.so)
   at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(tomcat-util-5.5.23.jar.so)
   at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(tomcat-util-5.5.23.jar.so)
   at java.lang.Thread.run(libgcj.so.7rh)
Caused by: java.lang.NoClassDefFoundError: com.konakart.bl.Emailer
   at java.lang.Class.initializeClass(libgcj.so.7rh)
   at com.konakart.bl.EmailMgr.isEmailValid(Unknown Source)
   at com.konakart.app.KKEng.isEmailValid(Unknown Source)
   at com.konakart.server.KKGWTServiceImpl.isEmailValid(Unknown Source)
   at java.lang.reflect.Method.invoke(libgcj.so.7rh)
   at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:528)

I haven't seen this before and cannot find com.konakart.bl.Emailer or any information on it.

Any ideas as to what may be causing this?
Thank you very much!
15
Hello,

We would like to change the authorize.net payment module from how it currently functions.  Allowing a "mixed good basket" of soft goods and hard goods is a great feature of KonaKart and is user friendly, but our business process and legal requirements state that we not settle payment for hard goods until time of shipment (unlike soft goods where it makes sense to process payment immediately).  Hence, ideally we would like to have the flexibility to configure the payment module for a MIXED GOOD BASKET (containing both hard goods and soft goods) to ONE of the following three options:

1.      Only authorize both hard goods and soft goods in Konakart (ie NO SETTLEMENT for any items)
2.      authorize and settle soft goods BUT ONLY authorize hard goods (ie no settlement for hard goods)
3.      authorize and settle soft goods but DO NOTHING for hard goods (we would 

Can you please speak to the possible implications of doing this?  Has this ever been done before?  Are there any plans to cater for this in future releases of KonaKart?

Thanks for your help
16
Programming of KonaKart / Adding to Admin Tool
May 06, 2008, 12:25:20 am
Hi There -
We have created some additional functionality to KonaKart that we would like to manage through the KonaKart Admin tool -- is there anyway to add to the Admin tool or is this not possible?
Best,
Ryan
17
Programming of KonaKart / Maven POM for Konakart
April 26, 2008, 12:09:06 am
Hi there -

We need to build Konakart with Maven 2. Does anyone have a POM file for the current release. We are concerned that if we create this file, it will be invalidated by future releases. We searched the Maven Repo, but were unable to find anything from Konakart.

Thank you very much
-Ryan
18
Hi there -- Hopefully someone can provide me with the correct way to do this.

I have created two additional tables in the konakart database. I have also generated the associated Torque files to access this data via Torque. I have tested this outside of konakart and it works. However, when I attempt to package the Torque files in a jar and load them into Konakart, I get a NullPointerException on the Torque files that I generated. This leads me to believe that they are unable to connect to the konakart database. Are there any parameters that I need to set to get this to work.. or perhaps a better way to do this... any help would be greatly appreciated.

Thank you very much
-Ryan
19
Configuration of KonaKart / Authorize.net Problems
April 09, 2008, 01:33:01 am
Hello
I am getting the following error when I try to test Authorize.net:
There has been a problem processing your card : This transaction cannot be accepted.

Here is the callback:
Response Code=3
Response Subcode=1
Response Reason Code=103
Response Reason Text=(TESTMODE) This transaction cannot be accepted.
Approval Code=000000
AVS Result Code=P
Transaction ID=0
...

I suspect this might be because in my Authorize.net Merchant Interface, I have my Transaction Version set to 3.0 (which I believe is SIM and not AIM) instead of 3.1 (AIM) -- my question is: will KonaKart override the transaction to AIM regardless of what I have the default set to in Merchant Interface? And if so, any other ideas as to why this might be happening?
20
Hi there -
I am hoping someone can kindly tell me the best way to do this. I need to have the ability to include multiple files and multiple content types in a single digital download. For example, I might have an audio download product, but I want the customer to be able to choose which format they want to download the file in (mp3, m4b,etc) --many of the digital downloads might also include a Table of Contents in PDF. My question is how difficult will it be to extent KonaKart to include this functionality and how should I go about doing it?
Any help would be really great.
Thanks,
Ryan