Number of Retries for JSRemote Call

By | January 16, 2014

In our previous blog post “Transaction aborted: timeout error in Salesforce“, we had written that changing the timeout parameter in JSRemote call from Visualforce page can help avoid the timeout error issue. But occasionally even after increasing the timeout parameter, the timeout error appears for a couple of times due to the fact that sometimes Salesforce takes too long to process the request.

In such a case we can set the parameter called maxretries which defines the number of times the JSremote method should be called; if in case the method fails.

As shown below we have set the maxretries value to 2 –

{buffer: true, escape: true, timeout: 120000 ,maxretries :2}

The other way to do this will be to set this value at the page level as shown below –

<script type=”text/javascript”>

Visualforce.remoting.maxretries = 2; // Set retries at page level

</script>

About Us
Greytrix as a Salesforce Product development partner offers a wide variety of integration products and services to the end users as well as to the Partners across the globe. We offers Consultation, Configuration, Training and support services in out-of-the-box functionality as well as customizations to incorporate custom business rules and functionalities that requires apex code incorporation into the Salesforce platform.

Greytrix has some unique solutions for Cloud CRM such as Salesforce integration with Sage Enterprise Management (Sage X3), Sage Intacct, Sage 100 and Sage 300 (Sage Accpac). We also offer best-in-class Cloud CRM Salesforce customization and development services along with services such as Salesforce Data Migration, Integrated App development, Custom App development and Technical Support to business partners and end users.

Greytrix GUMU™ integration for Sage ERP – Salesforce is a 5-star app listed on Salesforce AppExchange.

For more information, please contact us at salesforce@greytrix.com. We will be glad to assist you.

Related Posts