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.

link|improve this question

64% accept rate
Probably better off asking salesforce or checking their knowledgebase/docs – ChrisBint Jun 30 '11 at 13:11
feedback

1 Answer

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.