function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Randhir KawadeRandhir Kawade 

how can i insert recor into salesforce without using apex code

i am integrating  asp.net webapp with salesforce
i have to perform CRUD operations on account object
how can i do it without apex cpde
 
Charan Thumma 15Charan Thumma 15
Hi Randhir,

1. Generate Enterprice WSDL(Setup->API->Enterprise WSDL) from salesforce
2. Convert this WSDL to DLL(by converting this WSDL to C# you can find the procedure in google) 
2. Add this dll file as a reference in your Web app
Randhir KawadeRandhir Kawade
actually i cant use WSDL, i haveto create code that will be hosted centrally and will perform crud operations on multiple instances of salesforce.
even we dont have knowledge of customers Accunt structure how every customer is saving data in account.
we will be generating json dynamicaly and then will post to SF and perform CRUD.
i used .net toolkit but it based on object transfer. how can i sen json instead object.