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
claudioclaudio 

Generic Java Call to Apex Web Service

Hi,

Using the Flex Toolkit we can call any Apex class/method exposed as a web service, using a single execute() method. Like the following example:

<salesforce:Connection id="apex" />

apex.execute("ClassName", "methodName", [param], asyncResponder);

Is it possible to do something similar in Java, without having to generate the WSDL and Java client code for each Apex Class?

Thanks,

Claudio
SuperfellSuperfell
Possible, yes, already exists?, not as far as i know.