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
samonsamon 

Integrating C code into salesforce application?

Has anyone had experiences integrating C code into a salesforce application? How do we do about it? The C code does some complex calculations on salesforce data  I would like to have a VF page or something else to display the results generated by the C program. Thanks very much for any ideas or advices in advance on how to do it.

b-Forceb-Force

I dont think it is Possible to add C code into Salesforce.com application

 

you need to implement this C-Logic into Apex 

 

Hope this will help you

 

Thanks,

Bala

Imran MohammedImran Mohammed

I think you can achieve it if you expose your complex calculations as Webservices and use that in your salesforce app.

EnthEnth

Alternatively, you can access the Salesforce data via the Enterprise WSDL, process the data, and write the results back to a custom object/fields for display in Salesforce.

 

This would mean you wouldn't need to open up the security in your C application/host as you'd be making outbound call into Salesforce. The right answer will also depend on the amount of data you need to pass back & forward.