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
Neethu uNeethu u 

Generate WDSL button is disabled in my Apex class

I have the apex class exposed as webservice, but I am not able to generate the WSDL for my Apex class.
Please help me out.
Best Answer chosen by Neethu u
Steven NsubugaSteven Nsubuga
Click the Compile All Classes link on the Apex Classes page. 

All Answers

Steven NsubugaSteven Nsubuga
Click the Compile All Classes link on the Apex Classes page. 
This was selected as the best answer
GovindarajGovindaraj
Hi Neethu,

if you have marked your method as webservice , then you can use the Generate WSDL option to get the wsdl for the APEX webservice.

@RestResource(urlMapping='/Account/*')
global with sharing class MyRestResource {
    @HttpGet
    global static Account getRecord() {
        // Add your code
    }
}

If not, can you post the webservice class here.

Thanks,
Govindaraj.S
Raj VakatiRaj Vakati
Apex class containing webservice methods by generating a WSDL for the class and make sure your class is  contains webservice methods.
to Generate WSDL.


And make sure your profile is API Enabled permission 
Ketan Kulkarni 13Ketan Kulkarni 13
Click the Compile All Classes link on the Apex Classes page.