Hello
How do i change the default checkout action? The installation checkout action is /EditCartSubmit.do. I need to change this to point to the Google checkout URL. I changed the EditCartBody.jsp to include the following form action
<html:form method="POST" action="
https://sandbox.google.com/checkout/cws/v2/Merchant/xxxxxxxx/checkout">
but it seems to break the site and i notice the following error in the Tomcat logs
31-Oct 12:20:35 ERROR (InsertTag.java:doEndTag:922) ServletException in '/WEB-INF/jsp/EditCartBody.jsp': javax.servlet.jsp.JspException: Cannot retrieve mapping for action /https://sandbox.google.com/checkout/cws/v2/Merchant/643237515230848/checkout
org.apache.jasper.JasperException: An exception occurred processing JSP page /WEB-INF/jsp/EditCartBody.jsp at line 33
30:
31: <% boolean outOfStock=false; %>
32: <table border="0" width="100%" cellspacing="0" cellpadding="0">
33: <html:form method="POST" action="
https://sandbox.google.com/checkout/cws/v2/Merchant/xxxxxxxx/checkout">
34:
35:
36: <html:hidden name="EditCartForm" property="goToCheckout" value=""/>
I believe there are some changes required in the struts-config.xml file and/or updates to the forms code.
Please advise
Regards
Shiva