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
S S 11S S 11 

Using C++ DLLs in Apex code

Hi,
I want to know if it is possible to call C++ or C# DLL functions in Apex? I know that it could be done via SOAP protocol which needs a web service implementation. If this is the only way to integrate DLLs, does Salesforce.com host the web service or not?

Thanks
Best Answer chosen by S S 11
pbattissonpbattisson
There is no way to host and or use C++ or C# DLLs on Salesforce in Apex natively. You can write a separate server in C++ or C# that is managed and hosted elsewhere which Apex could communiate with using web services but the platform does not support any other way of doing this.