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
r3rr3r 

web service

Hi All,

 

my organization want to use salesforcce data without any insert,update the salesforce data using webservice,I am totally new to web service,I hope enterprise wsdl is fine or i have to create custom web service.

AshishyadavAshishyadav

it totally depends upon the requirement of your  business how handshake is been done ..

it will send all the information in WSDL file i mean entire total organization but if you want to do it for paticular fields and specific objects with some functionalties then definitely go by creatingyour own wsdl

harshasfdcharshasfdc

Hi ,

 

use partner wsdl.it will help you out 

 

 

Thanks,

Harsha

Ramon PereiraRamon Pereira

Hello,

 

Your company will sell a product on the AppExchange? if so use a WSDL partner case do not use the Enterprise WSDL for your organization. 

 

These links may help you:

 

API SOAP , Introduction SOAP API

 

graciously, 

r3rr3r

thanks

 

can u help me how to make own wsdl for particular objects&fields 

harshasfdcharshasfdc

define a controller as global and define the method on saving u can see option generate wsdl clock on this u r wsdl is generated use this  file in another organization .here i am sharing the sample 

code for u r reference 

global class samplecls{
webservice static integer sum(){
integer a=20;
integer b= 30;
return a+b;
}
}

 

thanks,

Harsha