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
tulasiram chtulasiram ch 

Unsupported schema type: {http://www.w3.org/2001/XMLSchema}anyType

Hi , i am getting this error when i am trying to generate class from partner.wsdl file. Please help me
Surendhar Anugu 5Surendhar Anugu 5
Replace anyType with string, it should resolve your problem.

Thanks
 
Amit Chaudhary 8Amit Chaudhary 8
 anyType is not supported by wsdl2apex.
<element name="NewValue" nillable="true" minOccurs="0" type="xsd:anyType"/>
<element name="OldValue" nillable="true" minOccurs="0" type="xsd:anyType"/>

Convert the anyType into string and you're good to go!

Hope this helps.