function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
rodrigorrodrigor 

Can WebService Callout be disabled for 1 SFDC org?

I am getting an error for this particular code in one org only, works on all others. The org that is throwing the problem has Enterprise Edition while the other ones have Unlimited.

 

Error is:

 

Error: tempuriOrg


Error: Method does not exist or incorrect signature: WebServiceCallout.invoke(tempuriOrg.SF_SynchronizationSoap, tempuriOrg.InsertUpdateContacts_element, MAP<String,tempuriOrg.InsertUpdateContactsResponse_element>, LIST<String>) at 159:13

 

Here is the code at line 159:

 

 WebServiceCallout.invoke(
              this,
              request_x,
              response_map_x,
              new String[]{endpoint_x,
              'http://tempuri.org/InsertUpdateContacts',
              'http://tempuri.org/',
              'InsertUpdateContacts',
              'http://tempuri.org/',
              'InsertUpdateContactsResponse',
              'GeniusWS.InsertUpdateContactsResponse_element'}
            );

 

So the exact same code compiles with no errors on the other orgs but I need to implement this code in this particular Enterprise Edition Org which is throwing the error. Would there be any settings that would not make the Webservice class compile if it is off? Do I need to ask SFDC to enable it?

 

Thanks,

Rodrigo