Author: ashish
Date: Fri May 29 13:46:45 2009
New Revision: 779975
URL:
http://svn.apache.org/viewvc?rev=779975&view=revLog:
We should not navigate user to some other area for such requests.
Modified:
ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml
Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml?rev=779975&r1=779974&r2=779975&view=diff==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml Fri May 29 13:46:45 2009
@@ -1796,14 +1796,16 @@
<request-map uri="secureGoogleCheckoutNotification">
<security auth="false" https="true"/>
<event type="java" path="org.ofbiz.googlecheckout.GoogleCheckoutResponseEvents" invoke="checkNotification"/>
- <response type="view" name="success" value="cartToGoogleCheckout"/>
+ <response name="success" type="none"/>
+ <response name="error" type="none"/>
</request-map>
<!-- This request can be used for server that don't have SSL certificate installed or sandbox instance that handles google response on unsecure port-->
<request-map uri="unSecureGoogleCheckoutNotification">
<security auth="false" https="false"/>
<event type="java" path="org.ofbiz.googlecheckout.GoogleCheckoutResponseEvents" invoke="checkNotification"/>
- <response type="view" name="success" value="cartToGoogleCheckout"/>
+ <response name="success" type="none"/>
+ <response name="error" type="none"/>
</request-map>