johnsontitusJun 15, 20202 min readExposing Apex Classes as REST Web ServicesSteps to expose your Apex class and methods to external applications: # Define the Apex class with the @RestResource(urlMapping='/yourUrl...
johnsontitusMay 24, 20201 min readApex REST CalloutsAuthorize the endpoint URL of the callout: From Setup, enter Remote Site Settings in the Quick Find box, then click Remote Site Settings....
johnsontitusMay 20, 20201 min readApex as a Web ServiceUse case: By using one interface, call center representatives can view and update case records in Salesforce and access internal...
johnsontitusMay 5, 20201 min readHow to be a Web Service Consumer(wsc) as a SOAP client in Java?Use Case: Business wants to use data in Salesforce to perform a business process outside Salesforce. Solution: Use SOAP API to create,...
johnsontitusApr 29, 20202 min readAPEX Web Services:SOAP VS REST API: SOAP will have a single endpoint or URI like https://<>/message Client request message is send via XML that has...