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
cgosscgoss 

Unable to call global or webservice method in installed managed package

I'm developing some apex code that's dependant on an installed managed package (with namespace "cx"). I'm trying to call a global static method in the package, but am getting an odd error.

 

Here's a simple example:

 

Boolean retval = cx.ContactUtils.wsTest();

 

 

The managed code is this:

 

global with sharing class ContactUtils {
...
    webservice static Boolean wsTest(){
    	return true;
    }
...
}
	

Whenever this compiles, I get this exception:


Save error: Initial term of field expression must be a concrete SObject: String

Any ideas on this? I've tried several different methods from two separate packages, with different method signatures, and all return the same error. I am able to instanciate inner classes from that same class also, so it's not a permissions or access problem.

 

Best Answer chosen by Admin (Salesforce Developers) 
SuperfellSuperfell

sounds like you might have a variable called cx.

All Answers

SuperfellSuperfell

sounds like you might have a variable called cx.

This was selected as the best answer
cgosscgoss

That's exactly what it was. That's what you get when trying to help out in someone else's code...

 

Thanks!