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
Samantha L. MillerSamantha L. Miller 

Apex SOAP Callouts - The Apex class 'ParkLocator' does not appear to be calling the SOAP endpoint.

Trailhead Apex Integration Services - Apex SOAP Callouts - The Apex class 'ParkLocator' does not appear to be calling the SOAP endpoint. Hi all, I'm stuck in the Apex Integration Services - Apex SOAP Callouts challenge with the following message "The Apex class 'ParkLocator' does not appear to be calling the SOAP endpoint.".
Could you please advise ? (https://bit.ly/33nCvHZ)
Best Answer chosen by Samantha L. Miller
AnudeepAnudeep (Salesforce Developers) 
Change your third line in ParkLocator class with

parkService.ParksImplPort park = new parkService.ParksImplPort();

ParksImplPort is case sensitive here.
parkService.ParksImplPort park = new parkService.ParksImplPort();
 Answered  here: https://salesforce.stackexchange.com/questions/103985/the-apex-class-parklocator-does-not-appear-to-be-calling-the-soap-endpoint

Let me know if this helps

All Answers

AnudeepAnudeep (Salesforce Developers) 
Change your third line in ParkLocator class with

parkService.ParksImplPort park = new parkService.ParksImplPort();

ParksImplPort is case sensitive here.
parkService.ParksImplPort park = new parkService.ParksImplPort();
 Answered  here: https://salesforce.stackexchange.com/questions/103985/the-apex-class-parklocator-does-not-appear-to-be-calling-the-soap-endpoint

Let me know if this helps
This was selected as the best answer
Samantha L. MillerSamantha L. Miller
Okey let me check
Samantha L. MillerSamantha L. Miller
Yeah it is very helpful Anudeep