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
SATZSATZ 

Error Parsing WSDL file

Hi All.,

I am trying generating apex class form WSDL But It shows Error

      

Apex Generation Failed

Unable to find soap 1.1 address

 

how to solve this issue.

 

Thanks in advance

sathish

JitendraJitendra

It looks like your SOAP WSDL have SOAP 1.2 address which is not supported by Salesforce.

Please update you service so that it can support SOAP 1.1 addess.

SATZSATZ

Hi

 How do I covert my ASP.net web service WSDL (SOAP 1.2 to SOAP 1.1)

  If any idea plz post.

 

Thanks

sathish

 

sfdcFanBoysfdcFanBoy

Use only SOAP. Comment the others

Prad47Prad47

I was facing same issue.

I removed all soapservice12 related elements from wsdl like wsdl:binding,wsdl:port etc and tried to create apex class.It woked for me.

Hope it will help ..!