You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by as...@apache.org on 2009/05/21 10:41:18 UTC

svn commit: r777010 - /ofbiz/trunk/specialpurpose/googlecheckout/script/org/ofbiz/googleCheckout/PrepareXMLTemplate.xml

Author: ashish
Date: Thu May 21 08:41:18 2009
New Revision: 777010

URL: http://svn.apache.org/viewvc?rev=777010&view=rev
Log:
You should use the following two lines only in case of troubleshooting.

<property-to-field resource="googleCheckout" property="request" field="request"/>
or 
<property-to-field resource="googleCheckout" property="diagnose" field="diagnose"/>

While fetching the response from sandbox or production server (for redirecting cart) you should not suffix any of the above value. Only complete URL is required and that's all we need to navigate to Google Checkout area.

Modified:
    ofbiz/trunk/specialpurpose/googlecheckout/script/org/ofbiz/googleCheckout/PrepareXMLTemplate.xml

Modified: ofbiz/trunk/specialpurpose/googlecheckout/script/org/ofbiz/googleCheckout/PrepareXMLTemplate.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlecheckout/script/org/ofbiz/googleCheckout/PrepareXMLTemplate.xml?rev=777010&r1=777009&r2=777010&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/googlecheckout/script/org/ofbiz/googleCheckout/PrepareXMLTemplate.xml (original)
+++ ofbiz/trunk/specialpurpose/googlecheckout/script/org/ofbiz/googleCheckout/PrepareXMLTemplate.xml Thu May 21 08:41:18 2009
@@ -66,7 +66,7 @@
         <property-to-field resource="googleCheckout" property="basePostUrl" field="basePostUrl"/>
         <property-to-field resource="googleCheckout" property="merchantId" field="merchantId"/>
         <property-to-field resource="googleCheckout" property="request" field="request"/>
-        <set field="urlSpec" value="${basePostUrl}${merchantId}${request}"/>
+        <set field="urlSpec" value="${basePostUrl}${merchantId}"/>
         <create-object class-name="java.net.URL" field="url">
             <field field="urlSpec"/>
         </create-object>