You need to sign in to do that
Don't have an account?
Sonali 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?
You can't access a DLL directly on salesforce.
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.