Salesforce Production org 1 -
Class AccountUtil
{
public String ValidateAccount(String AccountName)
{
//validation logic
return 'validation result';
}
}
Salesforce Production Org 2 - has all accounts and data.
I want to call AccountUtil.ValidateAccount('Test Company'); method from Salesforce org 2 in apex is it possible ?
I am interested in options other than SOAP web-service.