Skip to main content
Nintex Community Menu Bar
Question

Remote Call increases the API Request Count Limit

  • July 10, 2024
  • 1 reply
  • 0 views
  • Translate

Forum|alt.badge.img+4

The ways in which one can invoke Apex from script( https://community.skuid.com/t/calling-apex-function) increase the API request count(except if you use skuid:page and include your skuid page in a visualforce page).

Why is the following way for apex remoting not supported?

namespace.ControllerName.MethodName([Parameters],
function(result, event){
//In this callback function the response is handled in asyn.
});

Because eventually what we see is a Visualforce page as the url(/apex/skuid_ui?params) has ‘/apex/’.

Did this topic help you find an answer to your question?
This topic has been closed for comments

1 reply

Forum|alt.badge.img+13

First of all, the title of your question is inaccurate — Visualforce Remoting requests do NOT consume Salesforce API calls.

As far as the second part of your question, the reason that you cannot call a generic Apex controller method from Skuid’s UI visualforce page (accessed through /apex/skuid__ui) is that Apex doesn’t support dynamic method invocation except through their “Invocable Method” annotation — but if invoke an invocable method, they charge you an API request.

The only way that additional JavaScript Remoting Apex methods can be exposed to Skuid in Visualforce in the format you’re asking about (namespace.ControllerName.MethodName() etc…) is to create a separate Visualforce Page and specify your own Apex controllers on it. Skuid’s UI Visualforce Page is in a managed package and so it’s impossible for us to add in additional customer controllers to it, that’s why we offer you the approach of creating a separate Visualforce Page and then using the skuid:page component — this way you can add in whatever controllers you want and be able to call them from that page.

Translate

Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings