I have some code which parses wsdl . But how ever incase of some complex wsdl parsing is failing . If i make some changes to wsdl its able to parse .wanted to know the complex wsdl i am using is as per standards.
for example in schema section i have something defined like this
<xsd:complexType name="CallTermType" abstract="true"/> which is used in later sections as <xsd:complexType name="EndOfPage"> <xsd:complexContent> <xsd:extension base="CallTermType"> <xsd:attribute name="continueFrom" type="xsd:string"/> </xsd:extension> </xsd:complexContent>
But how ever with my current code i have make some changes in wsdl , add some attribute
Is the line <xsd:complexType name="CallTermType" abstract="true"/> adheres to standard if so I need to make some changes in my code as i need to parse wsdl adhering to standards <xsd:complexType name="CallTermType" abstract="true"/>