I want to know how to consume external wcf restfull service in salesforce apex class ,so that i will call i class in the triggers for invoking service.
feedback
|
|
Two issues:
For (1), you can look at using asynchronous (@future annotation) methods or a scheduled batch processes (Database.Batchable and Schedulable interfaces) to callout to an external service based on a changes in the database. For (2), Salesforce can consume WSDL based SOAP web services (note that the Salesforce WSDL parser is fairly limited), or you can use their HTTP classes to manually connect to your RESTfull service. | |||
|
feedback
|