开发者

How can we consume external wcf restfull service in salesforce trigger?

开发者 https://www.devze.com 2023-03-16 05:49 出处:网络
I want to know how to consumeexternal wcf restfull service in salesforce apex class ,so that i will call i class开发者_如何学运维 in the triggers for invoking service.Two issues:

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.


Two issues:

  1. Triggers don't allow http callouts
  2. If by "consume" you mean auto generate code, salesforce can't consume RESTfull services.

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号