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
Sonali BhardwajSonali Bhardwaj 

Use DLL in Salesforce

There is one system, which has exposed their API through DLL. I want to use that DLL in Salesforce.

For example, DLL have one class and has one function under it called login. I want to use this function in Salesforce.

 

How can I achieve this? Is their any way I can convert DLL to WSDL and import into Salesforce, or any other way?



Best Answer chosen by Admin (Salesforce Developers) 
Ryan-GuestRyan-Guest

You could either call a web service from apex (if it's exposed), or create a web service from your server (that uses the DLL) and call your server from apex.

 

You can't access a DLL directly on salesforce.