Which API Should I Use in Salesforce? following user permission need: User Permissions Needed – API Enabled under the profile level Application Programming Interface (API) API Name What It’s For When…
Web Service
-
- APEXAPIIntegrationSALESFORCESoapWeb Service
Listing the issues while generating the apex class from WSDL Document in salesforce
Listing the issues while generating the apex class from WSDL Document in salesforce It’s difficult to connect to external webservices without the following basic features. 1) Salesforce doesn’t support the…
-
Below is the some of the Important API Documentation URL’s Salesforce: http://www.salesforce.com/us/developer/docs/api/ Setster: http://www.setster.com/developers Pin.net.au: https://pin.net.au/docs/api Get Response: http://dev.getresponse.com Desk.com: http://dev.desk.com
-
Jive and Salesforce Integration The Jive tile should retrieve some JSON data from a Salesforce using custom web service. Please find below a couple of links with useful information. (1)…
- APEXForce.comSALESFORCETriggerVisual ForceWeb Service
Importing object data from CSV file through import wizard
Consider Account and CSVData__c object. Now we wanted to import the cvs data into CSVData__c object. Assume CSVData__c has accountname which is lookup field and csvname. So accountname can accept only…
-
What is WSDL2APEX and Use of WSDL2APEX in Salesforce WSDL2APEX: Apex Classes can be automatically generated from a WSDL document. Use of WSDL2APEX: Developers can be used to invoke the…
-
Part 1 – Update Salesforce Recod using .Net Application Step 1: Create a field TestAccount [Text] in Account. Step 2: Create a .Net application that extracts salesforce’s objects records (In…
-
Technical Requirement: We have enhancement request in our project and requirements are select number of records in View and change the owner of the selected record. Description: As above technical…
-
WebService Methods Apex class methods can be exposed as custom Force.comWeb services API calls. This allows an external application to invoke an Apex web service to perform an action in…
-
public class simpleHTTPCallOut {public simpleHTTPCallOut(ApexPages.StandardController controller) { } String ErrorMessage; public void Login() { ErrorMessage=”; final string baseUrl = ‘https://login.salesforce.com/‘; final string username = ‘[email protected]’; final string password = ‘test@123’;…