Showing posts with label SOAP API. Show all posts
Showing posts with label SOAP API. Show all posts
Tuesday, October 31, 2017
Subscribe to:
Posts (Atom)
Lightning Inter-Component Communication Patterns
Lightning Inter-Component Communication Patterns If you’re comfortable with how a Lightning Component works and want to build producti...
-
Batch Apex Governor Limits Keep in mind the following governor limits for batch Apex. Up to 5 batch jobs can be queued or active con...
-
Salesforce gives you a 360 degree view of your customers and insight into your own business. If you’ve been running your business ...
-
Apex is an object-oriented programming language and this tutorial examines its support for these all important objects or class instances ...
REST has been preferred for services that are exposed as public APIs.
SOAP API on the other hand involves downloading a WSDL file, Converting the WSDL files to regular classes and then invoking methods on those objects.
1)Supports data in the form of XML only 2)Requires WSDL for the integration 3)Use SOAP API in any language that supports Web services.
REST API
1)Supports both XML and JSON format 2)Preferred for mobile and web apps since JSON being Lighter the app runs smoother and faster